@inkeep/agents-core 0.0.0-dev-20260120222159 → 0.0.0-dev-20260120230946
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/data-access/manage/dataComponents.d.ts +2 -2
- package/dist/data-access/manage/subAgentRelations.d.ts +6 -6
- package/dist/data-access/runtime/tasks.d.ts +1 -1
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas.d.ts +180 -180
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ import "../index.js";
|
|
|
4
4
|
import { MAX_ID_LENGTH, MIN_ID_LENGTH, URL_SAFE_ID_PATTERN, resourceIdSchema } from "./drizzle-schema-helpers.js";
|
|
5
5
|
import { z } from "@hono/zod-openapi";
|
|
6
6
|
import * as drizzle_orm_pg_core208 from "drizzle-orm/pg-core";
|
|
7
|
-
import * as
|
|
7
|
+
import * as drizzle_zod15 from "drizzle-zod";
|
|
8
8
|
|
|
9
9
|
//#region src/validation/schemas.d.ts
|
|
10
10
|
declare const StopWhenSchema: z.ZodObject<{
|
|
@@ -77,7 +77,7 @@ type FunctionToolConfig = Omit<z.infer<typeof FunctionToolConfigSchema>, 'execut
|
|
|
77
77
|
};
|
|
78
78
|
type OmitProjectScope<T> = Omit<T, 'tenantId' | 'projectId'>;
|
|
79
79
|
type OmitAgentScope<T> = Omit<T, 'tenantId' | 'projectId' | 'agentId'>;
|
|
80
|
-
declare const SubAgentSelectSchema:
|
|
80
|
+
declare const SubAgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
81
81
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
82
82
|
name: "created_at";
|
|
83
83
|
tableName: "sub_agents";
|
|
@@ -328,7 +328,7 @@ declare const SubAgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
328
328
|
}, {}, {
|
|
329
329
|
length: 256;
|
|
330
330
|
}>;
|
|
331
|
-
},
|
|
331
|
+
}, drizzle_zod15.BuildRefine<{
|
|
332
332
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
333
333
|
name: "created_at";
|
|
334
334
|
tableName: "sub_agents";
|
|
@@ -797,7 +797,7 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
797
797
|
}>>>>>>;
|
|
798
798
|
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
799
799
|
}, z.core.$strip>;
|
|
800
|
-
declare const SubAgentRelationSelectSchema:
|
|
800
|
+
declare const SubAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
801
801
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
802
802
|
name: "created_at";
|
|
803
803
|
tableName: "sub_agent_relations";
|
|
@@ -965,7 +965,7 @@ declare const SubAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
965
965
|
}, {}, {
|
|
966
966
|
length: 256;
|
|
967
967
|
}>;
|
|
968
|
-
},
|
|
968
|
+
}, drizzle_zod15.BuildRefine<{
|
|
969
969
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
970
970
|
name: "created_at";
|
|
971
971
|
tableName: "sub_agent_relations";
|
|
@@ -1236,7 +1236,7 @@ declare const ExternalSubAgentRelationApiInsertSchema: z.ZodObject<OmitProjectSc
|
|
|
1236
1236
|
sourceSubAgentId: z.ZodString;
|
|
1237
1237
|
externalSubAgentId: z.ZodString;
|
|
1238
1238
|
}>, z.core.$strip>;
|
|
1239
|
-
declare const AgentSelectSchema:
|
|
1239
|
+
declare const AgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
1240
1240
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
1241
1241
|
name: "created_at";
|
|
1242
1242
|
tableName: "agent";
|
|
@@ -1534,7 +1534,7 @@ declare const AgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
1534
1534
|
}, {}, {
|
|
1535
1535
|
length: 256;
|
|
1536
1536
|
}>;
|
|
1537
|
-
},
|
|
1537
|
+
}, drizzle_zod15.BuildRefine<{
|
|
1538
1538
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
1539
1539
|
name: "created_at";
|
|
1540
1540
|
tableName: "agent";
|
|
@@ -1833,7 +1833,7 @@ declare const AgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
1833
1833
|
length: 256;
|
|
1834
1834
|
}>;
|
|
1835
1835
|
}, undefined>, undefined>;
|
|
1836
|
-
declare const AgentInsertSchema:
|
|
1836
|
+
declare const AgentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
1837
1837
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
1838
1838
|
name: "created_at";
|
|
1839
1839
|
tableName: "agent";
|
|
@@ -2131,7 +2131,7 @@ declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
2131
2131
|
}, {}, {
|
|
2132
2132
|
length: 256;
|
|
2133
2133
|
}>;
|
|
2134
|
-
},
|
|
2134
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
2135
2135
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
2136
2136
|
name: "created_at";
|
|
2137
2137
|
tableName: "agent";
|
|
@@ -2985,7 +2985,7 @@ declare const TriggerInvocationStatusEnum: z.ZodEnum<{
|
|
|
2985
2985
|
pending: "pending";
|
|
2986
2986
|
failed: "failed";
|
|
2987
2987
|
}>;
|
|
2988
|
-
declare const TriggerSelectSchema:
|
|
2988
|
+
declare const TriggerSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
2989
2989
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
2990
2990
|
name: "created_at";
|
|
2991
2991
|
tableName: "triggers";
|
|
@@ -3246,7 +3246,7 @@ declare const TriggerSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
3246
3246
|
}, {}, {
|
|
3247
3247
|
length: 256;
|
|
3248
3248
|
}>;
|
|
3249
|
-
},
|
|
3249
|
+
}, drizzle_zod15.BuildRefine<{
|
|
3250
3250
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
3251
3251
|
name: "created_at";
|
|
3252
3252
|
tableName: "triggers";
|
|
@@ -3508,7 +3508,7 @@ declare const TriggerSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
3508
3508
|
length: 256;
|
|
3509
3509
|
}>;
|
|
3510
3510
|
}, undefined>, undefined>;
|
|
3511
|
-
declare const TriggerInsertSchema:
|
|
3511
|
+
declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
3512
3512
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
3513
3513
|
name: "created_at";
|
|
3514
3514
|
tableName: "triggers";
|
|
@@ -3769,7 +3769,7 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3769
3769
|
}, {}, {
|
|
3770
3770
|
length: 256;
|
|
3771
3771
|
}>;
|
|
3772
|
-
},
|
|
3772
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
3773
3773
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
3774
3774
|
name: "created_at";
|
|
3775
3775
|
tableName: "triggers";
|
|
@@ -4085,7 +4085,7 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4085
4085
|
objectTransformation?: Record<string, string>;
|
|
4086
4086
|
}>>>;
|
|
4087
4087
|
messageTemplate: z.ZodString;
|
|
4088
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
4088
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4089
4089
|
signingSecret: z.ZodNullable<z.ZodString>;
|
|
4090
4090
|
name: z.ZodString;
|
|
4091
4091
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -4115,7 +4115,7 @@ declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
|
4115
4115
|
objectTransformation?: Record<string, string>;
|
|
4116
4116
|
}>>>>;
|
|
4117
4117
|
messageTemplate: z.ZodString;
|
|
4118
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4118
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4119
4119
|
signingSecret: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4120
4120
|
id: z.ZodOptional<z.ZodString>;
|
|
4121
4121
|
}, z.core.$strip>;
|
|
@@ -4154,7 +4154,7 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4154
4154
|
}, z.core.$strip>], "type">>;
|
|
4155
4155
|
signingSecret: z.ZodOptional<z.ZodString>;
|
|
4156
4156
|
}, z.core.$strip>;
|
|
4157
|
-
declare const TriggerInvocationSelectSchema:
|
|
4157
|
+
declare const TriggerInvocationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
4158
4158
|
triggerId: drizzle_orm_pg_core208.PgColumn<{
|
|
4159
4159
|
name: "trigger_id";
|
|
4160
4160
|
tableName: "trigger_invocations";
|
|
@@ -4356,7 +4356,7 @@ declare const TriggerInvocationSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
4356
4356
|
}, {}, {
|
|
4357
4357
|
length: 256;
|
|
4358
4358
|
}>;
|
|
4359
|
-
},
|
|
4359
|
+
}, drizzle_zod15.BuildRefine<{
|
|
4360
4360
|
triggerId: drizzle_orm_pg_core208.PgColumn<{
|
|
4361
4361
|
name: "trigger_id";
|
|
4362
4362
|
tableName: "trigger_invocations";
|
|
@@ -4559,7 +4559,7 @@ declare const TriggerInvocationSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
4559
4559
|
length: 256;
|
|
4560
4560
|
}>;
|
|
4561
4561
|
}, undefined>, undefined>;
|
|
4562
|
-
declare const TriggerInvocationInsertSchema:
|
|
4562
|
+
declare const TriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
4563
4563
|
triggerId: drizzle_orm_pg_core208.PgColumn<{
|
|
4564
4564
|
name: "trigger_id";
|
|
4565
4565
|
tableName: "trigger_invocations";
|
|
@@ -4761,7 +4761,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
4761
4761
|
}, {}, {
|
|
4762
4762
|
length: 256;
|
|
4763
4763
|
}>;
|
|
4764
|
-
},
|
|
4764
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
4765
4765
|
triggerId: drizzle_orm_pg_core208.PgColumn<{
|
|
4766
4766
|
name: "trigger_id";
|
|
4767
4767
|
tableName: "trigger_invocations";
|
|
@@ -4963,13 +4963,13 @@ declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
4963
4963
|
}, {}, {
|
|
4964
4964
|
length: 256;
|
|
4965
4965
|
}>;
|
|
4966
|
-
}, "tenantId" | "projectId" | "id" | "agentId" | "createdAt" | "status" | "
|
|
4966
|
+
}, "tenantId" | "projectId" | "id" | "agentId" | "createdAt" | "status" | "triggerId" | "conversationId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
4967
4967
|
declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
4968
4968
|
triggerId: z.ZodOptional<z.ZodString>;
|
|
4969
4969
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4970
4970
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4971
|
-
requestPayload: z.ZodOptional<z.ZodType<
|
|
4972
|
-
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4971
|
+
requestPayload: z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4972
|
+
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
4973
4973
|
errorMessage: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4974
4974
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4975
4975
|
agentId: z.ZodOptional<z.ZodString>;
|
|
@@ -4984,8 +4984,8 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4984
4984
|
triggerId: z.ZodString;
|
|
4985
4985
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
4986
4986
|
status: z.ZodString;
|
|
4987
|
-
requestPayload: z.ZodType<
|
|
4988
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
4987
|
+
requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
4988
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4989
4989
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
4990
4990
|
createdAt: z.ZodString;
|
|
4991
4991
|
agentId: z.ZodString;
|
|
@@ -4996,10 +4996,10 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4996
4996
|
declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
4997
4997
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4998
4998
|
status: z.ZodOptional<z.ZodString>;
|
|
4999
|
-
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5000
4999
|
triggerId: z.ZodString;
|
|
5001
|
-
|
|
5002
|
-
|
|
5000
|
+
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5001
|
+
requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
5002
|
+
transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
5003
5003
|
errorMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5004
5004
|
id: z.ZodString;
|
|
5005
5005
|
}, z.core.$strip>;
|
|
@@ -5007,13 +5007,13 @@ declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
5007
5007
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5008
5008
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5009
5009
|
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5010
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5011
5010
|
triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5012
|
-
|
|
5013
|
-
|
|
5011
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5012
|
+
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
5013
|
+
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
5014
5014
|
errorMessage: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5015
5015
|
}, z.core.$strip>;
|
|
5016
|
-
declare const TaskSelectSchema:
|
|
5016
|
+
declare const TaskSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
5017
5017
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
5018
5018
|
name: "created_at";
|
|
5019
5019
|
tableName: "tasks";
|
|
@@ -5227,7 +5227,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
5227
5227
|
}, {}, {
|
|
5228
5228
|
length: 256;
|
|
5229
5229
|
}>;
|
|
5230
|
-
},
|
|
5230
|
+
}, drizzle_zod15.BuildRefine<{
|
|
5231
5231
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
5232
5232
|
name: "created_at";
|
|
5233
5233
|
tableName: "tasks";
|
|
@@ -5559,11 +5559,11 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
5559
5559
|
hash: z.ZodString;
|
|
5560
5560
|
}, z.core.$strip>>>;
|
|
5561
5561
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5562
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5563
|
-
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5564
5562
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5563
|
+
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5564
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5565
5565
|
}, z.core.$strip>;
|
|
5566
|
-
declare const TaskRelationSelectSchema:
|
|
5566
|
+
declare const TaskRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
5567
5567
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
5568
5568
|
name: "created_at";
|
|
5569
5569
|
tableName: "task_relations";
|
|
@@ -5712,7 +5712,7 @@ declare const TaskRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
5712
5712
|
}, {}, {
|
|
5713
5713
|
length: 256;
|
|
5714
5714
|
}>;
|
|
5715
|
-
},
|
|
5715
|
+
}, drizzle_zod15.BuildRefine<{
|
|
5716
5716
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
5717
5717
|
name: "created_at";
|
|
5718
5718
|
tableName: "task_relations";
|
|
@@ -5912,9 +5912,9 @@ declare const TaskRelationApiUpdateSchema: z.ZodObject<{
|
|
|
5912
5912
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5913
5913
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5914
5914
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5915
|
+
relationType: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5915
5916
|
parentTaskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5916
5917
|
childTaskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5917
|
-
relationType: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5918
5918
|
}, z.core.$strip>;
|
|
5919
5919
|
declare const McpTransportConfigSchema: z.ZodObject<{
|
|
5920
5920
|
type: z.ZodEnum<{
|
|
@@ -5937,7 +5937,7 @@ declare const McpToolDefinitionSchema: z.ZodObject<{
|
|
|
5937
5937
|
description: z.ZodOptional<z.ZodString>;
|
|
5938
5938
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5939
5939
|
}, z.core.$strip>;
|
|
5940
|
-
declare const ToolSelectSchema:
|
|
5940
|
+
declare const ToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
5941
5941
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
5942
5942
|
name: "created_at";
|
|
5943
5943
|
tableName: "tools";
|
|
@@ -6200,7 +6200,7 @@ declare const ToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
6200
6200
|
}, {}, {
|
|
6201
6201
|
length: 256;
|
|
6202
6202
|
}>;
|
|
6203
|
-
},
|
|
6203
|
+
}, drizzle_zod15.BuildRefine<{
|
|
6204
6204
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
6205
6205
|
name: "created_at";
|
|
6206
6206
|
tableName: "tools";
|
|
@@ -6508,7 +6508,7 @@ declare const ToolInsertSchema: z.ZodObject<{
|
|
|
6508
6508
|
out: {};
|
|
6509
6509
|
in: {};
|
|
6510
6510
|
}>;
|
|
6511
|
-
declare const ConversationSelectSchema:
|
|
6511
|
+
declare const ConversationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
6512
6512
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
6513
6513
|
name: "created_at";
|
|
6514
6514
|
tableName: "conversations";
|
|
@@ -6737,7 +6737,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
6737
6737
|
}, {}, {
|
|
6738
6738
|
length: 256;
|
|
6739
6739
|
}>;
|
|
6740
|
-
},
|
|
6740
|
+
}, drizzle_zod15.BuildRefine<{
|
|
6741
6741
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
6742
6742
|
name: "created_at";
|
|
6743
6743
|
tableName: "conversations";
|
|
@@ -7093,7 +7093,7 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
7093
7093
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7094
7094
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7095
7095
|
}, z.core.$strip>;
|
|
7096
|
-
declare const MessageSelectSchema:
|
|
7096
|
+
declare const MessageSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
7097
7097
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
7098
7098
|
name: "created_at";
|
|
7099
7099
|
tableName: "messages";
|
|
@@ -7489,7 +7489,7 @@ declare const MessageSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
7489
7489
|
}, {}, {
|
|
7490
7490
|
length: 256;
|
|
7491
7491
|
}>;
|
|
7492
|
-
},
|
|
7492
|
+
}, drizzle_zod15.BuildRefine<{
|
|
7493
7493
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
7494
7494
|
name: "created_at";
|
|
7495
7495
|
tableName: "messages";
|
|
@@ -8005,7 +8005,7 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
8005
8005
|
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8006
8006
|
a2aSessionId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8007
8007
|
}, z.core.$strip>;
|
|
8008
|
-
declare const ContextCacheSelectSchema:
|
|
8008
|
+
declare const ContextCacheSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
8009
8009
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
8010
8010
|
name: "created_at";
|
|
8011
8011
|
tableName: "context_cache";
|
|
@@ -8255,7 +8255,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8255
8255
|
}, {}, {
|
|
8256
8256
|
length: 256;
|
|
8257
8257
|
}>;
|
|
8258
|
-
},
|
|
8258
|
+
}, drizzle_zod15.BuildRefine<{
|
|
8259
8259
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
8260
8260
|
name: "created_at";
|
|
8261
8261
|
tableName: "context_cache";
|
|
@@ -8512,7 +8512,7 @@ declare const ContextCacheInsertSchema: z.ZodObject<{
|
|
|
8512
8512
|
conversationId: z.ZodString;
|
|
8513
8513
|
contextConfigId: z.ZodString;
|
|
8514
8514
|
contextVariableKey: z.ZodString;
|
|
8515
|
-
value: z.ZodType<
|
|
8515
|
+
value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
8516
8516
|
requestHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8517
8517
|
fetchedAt: z.ZodOptional<z.ZodString>;
|
|
8518
8518
|
fetchSource: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8538,7 +8538,7 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
8538
8538
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
8539
8539
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
8540
8540
|
contextVariableKey: z.ZodOptional<z.ZodString>;
|
|
8541
|
-
value: z.ZodOptional<z.ZodType<
|
|
8541
|
+
value: z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
8542
8542
|
requestHash: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
8543
8543
|
fetchedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8544
8544
|
fetchSource: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -8581,7 +8581,7 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8581
8581
|
name: string;
|
|
8582
8582
|
hash: string;
|
|
8583
8583
|
}>>>;
|
|
8584
|
-
value: z.ZodType<
|
|
8584
|
+
value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
8585
8585
|
requestHash: z.ZodNullable<z.ZodString>;
|
|
8586
8586
|
fetchedAt: z.ZodString;
|
|
8587
8587
|
fetchSource: z.ZodNullable<z.ZodString>;
|
|
@@ -8595,7 +8595,7 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8595
8595
|
conversationId: z.ZodString;
|
|
8596
8596
|
contextConfigId: z.ZodString;
|
|
8597
8597
|
contextVariableKey: z.ZodString;
|
|
8598
|
-
value: z.ZodType<
|
|
8598
|
+
value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
8599
8599
|
requestHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8600
8600
|
fetchedAt: z.ZodOptional<z.ZodString>;
|
|
8601
8601
|
fetchSource: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8614,7 +8614,7 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8614
8614
|
}>, z.core.$strip>;
|
|
8615
8615
|
declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
8616
8616
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8617
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<
|
|
8617
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
8618
8618
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8619
8619
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8620
8620
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -8633,7 +8633,7 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
8633
8633
|
fetchedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8634
8634
|
fetchSource: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8635
8635
|
}, z.core.$strip>;
|
|
8636
|
-
declare const DatasetRunSelectSchema:
|
|
8636
|
+
declare const DatasetRunSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
8637
8637
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
8638
8638
|
name: "created_at";
|
|
8639
8639
|
tableName: "dataset_run";
|
|
@@ -8776,7 +8776,7 @@ declare const DatasetRunSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8776
8776
|
}, {}, {
|
|
8777
8777
|
length: 256;
|
|
8778
8778
|
}>;
|
|
8779
|
-
},
|
|
8779
|
+
}, drizzle_zod15.BuildRefine<{
|
|
8780
8780
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
8781
8781
|
name: "created_at";
|
|
8782
8782
|
tableName: "dataset_run";
|
|
@@ -8970,7 +8970,7 @@ declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
|
8970
8970
|
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8971
8971
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8972
8972
|
}, z.core.$strip>;
|
|
8973
|
-
declare const DatasetRunConversationRelationSelectSchema:
|
|
8973
|
+
declare const DatasetRunConversationRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
8974
8974
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
8975
8975
|
name: "created_at";
|
|
8976
8976
|
tableName: "dataset_run_conversation_relations";
|
|
@@ -9113,7 +9113,7 @@ declare const DatasetRunConversationRelationSelectSchema: drizzle_zod19.BuildSch
|
|
|
9113
9113
|
}, {}, {
|
|
9114
9114
|
length: 256;
|
|
9115
9115
|
}>;
|
|
9116
|
-
},
|
|
9116
|
+
}, drizzle_zod15.BuildRefine<{
|
|
9117
9117
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
9118
9118
|
name: "created_at";
|
|
9119
9119
|
tableName: "dataset_run_conversation_relations";
|
|
@@ -9307,7 +9307,7 @@ declare const DatasetRunConversationRelationApiUpdateSchema: z.ZodObject<{
|
|
|
9307
9307
|
datasetRunId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9308
9308
|
datasetItemId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9309
9309
|
}, z.core.$strip>;
|
|
9310
|
-
declare const EvaluationResultSelectSchema:
|
|
9310
|
+
declare const EvaluationResultSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
9311
9311
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
9312
9312
|
name: "created_at";
|
|
9313
9313
|
tableName: "evaluation_result";
|
|
@@ -9469,7 +9469,7 @@ declare const EvaluationResultSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
9469
9469
|
}, {}, {
|
|
9470
9470
|
length: 256;
|
|
9471
9471
|
}>;
|
|
9472
|
-
},
|
|
9472
|
+
}, drizzle_zod15.BuildRefine<{
|
|
9473
9473
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
9474
9474
|
name: "created_at";
|
|
9475
9475
|
tableName: "evaluation_result";
|
|
@@ -9675,19 +9675,19 @@ declare const EvaluationResultApiInsertSchema: z.ZodObject<{
|
|
|
9675
9675
|
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
9676
9676
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9677
9677
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9678
|
-
conversationId: z.ZodString;
|
|
9679
9678
|
evaluatorId: z.ZodString;
|
|
9679
|
+
conversationId: z.ZodString;
|
|
9680
9680
|
evaluationRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9681
9681
|
}, z.core.$strip>;
|
|
9682
9682
|
declare const EvaluationResultApiUpdateSchema: z.ZodObject<{
|
|
9683
9683
|
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
9684
9684
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9685
9685
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9686
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9687
9686
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9687
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9688
9688
|
evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9689
9689
|
}, z.core.$strip>;
|
|
9690
|
-
declare const EvaluationRunSelectSchema:
|
|
9690
|
+
declare const EvaluationRunSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
9691
9691
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
9692
9692
|
name: "created_at";
|
|
9693
9693
|
tableName: "evaluation_run";
|
|
@@ -9813,7 +9813,7 @@ declare const EvaluationRunSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
9813
9813
|
}, {}, {
|
|
9814
9814
|
length: 256;
|
|
9815
9815
|
}>;
|
|
9816
|
-
},
|
|
9816
|
+
}, drizzle_zod15.BuildRefine<{
|
|
9817
9817
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
9818
9818
|
name: "created_at";
|
|
9819
9819
|
tableName: "evaluation_run";
|
|
@@ -9976,16 +9976,16 @@ declare const EvaluationRunApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
9976
9976
|
declare const EvaluationRunApiInsertSchema: z.ZodObject<{
|
|
9977
9977
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9978
9978
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9979
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9980
9979
|
evaluationRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9980
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9981
9981
|
}, z.core.$strip>;
|
|
9982
9982
|
declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
9983
9983
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9984
9984
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9985
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9986
9985
|
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9986
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9987
9987
|
}, z.core.$strip>;
|
|
9988
|
-
declare const EvaluationRunConfigSelectSchema:
|
|
9988
|
+
declare const EvaluationRunConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
9989
9989
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
9990
9990
|
name: "created_at";
|
|
9991
9991
|
tableName: "evaluation_run_config";
|
|
@@ -10130,7 +10130,7 @@ declare const EvaluationRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select
|
|
|
10130
10130
|
}, {}, {
|
|
10131
10131
|
length: 256;
|
|
10132
10132
|
}>;
|
|
10133
|
-
},
|
|
10133
|
+
}, drizzle_zod15.BuildRefine<{
|
|
10134
10134
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
10135
10135
|
name: "created_at";
|
|
10136
10136
|
tableName: "evaluation_run_config";
|
|
@@ -10337,7 +10337,7 @@ declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
|
10337
10337
|
isActive: z.ZodBoolean;
|
|
10338
10338
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
10339
10339
|
}, z.core.$strip>;
|
|
10340
|
-
declare const EvaluationJobConfigSelectSchema:
|
|
10340
|
+
declare const EvaluationJobConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
10341
10341
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
10342
10342
|
name: "created_at";
|
|
10343
10343
|
tableName: "evaluation_job_config";
|
|
@@ -10462,7 +10462,7 @@ declare const EvaluationJobConfigSelectSchema: drizzle_zod19.BuildSchema<"select
|
|
|
10462
10462
|
}, {}, {
|
|
10463
10463
|
length: 256;
|
|
10464
10464
|
}>;
|
|
10465
|
-
},
|
|
10465
|
+
}, drizzle_zod15.BuildRefine<{
|
|
10466
10466
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
10467
10467
|
name: "created_at";
|
|
10468
10468
|
tableName: "evaluation_job_config";
|
|
@@ -10769,7 +10769,7 @@ declare const EvaluationJobConfigApiUpdateSchema: z.ZodObject<{
|
|
|
10769
10769
|
} | undefined;
|
|
10770
10770
|
}>>>>>>>;
|
|
10771
10771
|
}, z.core.$strip>;
|
|
10772
|
-
declare const EvaluationSuiteConfigSelectSchema:
|
|
10772
|
+
declare const EvaluationSuiteConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
10773
10773
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
10774
10774
|
name: "created_at";
|
|
10775
10775
|
tableName: "evaluation_suite_config";
|
|
@@ -10897,7 +10897,7 @@ declare const EvaluationSuiteConfigSelectSchema: drizzle_zod19.BuildSchema<"sele
|
|
|
10897
10897
|
}, {}, {
|
|
10898
10898
|
length: 256;
|
|
10899
10899
|
}>;
|
|
10900
|
-
},
|
|
10900
|
+
}, drizzle_zod15.BuildRefine<{
|
|
10901
10901
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
10902
10902
|
name: "created_at";
|
|
10903
10903
|
tableName: "evaluation_suite_config";
|
|
@@ -11073,7 +11073,7 @@ declare const EvaluationSuiteConfigApiUpdateSchema: z.ZodObject<{
|
|
|
11073
11073
|
sampleRate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>>;
|
|
11074
11074
|
evaluatorIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11075
11075
|
}, z.core.$strip>;
|
|
11076
|
-
declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema:
|
|
11076
|
+
declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
11077
11077
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
11078
11078
|
name: "created_at";
|
|
11079
11079
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
@@ -11199,7 +11199,7 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: driz
|
|
|
11199
11199
|
}, {}, {
|
|
11200
11200
|
length: 256;
|
|
11201
11201
|
}>;
|
|
11202
|
-
},
|
|
11202
|
+
}, drizzle_zod15.BuildRefine<{
|
|
11203
11203
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
11204
11204
|
name: "created_at";
|
|
11205
11205
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
@@ -11362,16 +11362,16 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiSelectSchema: z
|
|
|
11362
11362
|
declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiInsertSchema: z.ZodObject<{
|
|
11363
11363
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11364
11364
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11365
|
-
evaluationRunConfigId: z.ZodString;
|
|
11366
11365
|
evaluationSuiteConfigId: z.ZodString;
|
|
11366
|
+
evaluationRunConfigId: z.ZodString;
|
|
11367
11367
|
}, z.core.$strip>;
|
|
11368
11368
|
declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiUpdateSchema: z.ZodObject<{
|
|
11369
11369
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11370
11370
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11371
|
-
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11372
11371
|
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11372
|
+
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11373
11373
|
}, z.core.$strip>;
|
|
11374
|
-
declare const EvaluationJobConfigEvaluatorRelationSelectSchema:
|
|
11374
|
+
declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
11375
11375
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
11376
11376
|
name: "created_at";
|
|
11377
11377
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
@@ -11497,7 +11497,7 @@ declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod19.Bu
|
|
|
11497
11497
|
}, {}, {
|
|
11498
11498
|
length: 256;
|
|
11499
11499
|
}>;
|
|
11500
|
-
},
|
|
11500
|
+
}, drizzle_zod15.BuildRefine<{
|
|
11501
11501
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
11502
11502
|
name: "created_at";
|
|
11503
11503
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
@@ -11660,16 +11660,16 @@ declare const EvaluationJobConfigEvaluatorRelationApiSelectSchema: z.ZodObject<O
|
|
|
11660
11660
|
declare const EvaluationJobConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
11661
11661
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11662
11662
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11663
|
-
evaluationJobConfigId: z.ZodString;
|
|
11664
11663
|
evaluatorId: z.ZodString;
|
|
11664
|
+
evaluationJobConfigId: z.ZodString;
|
|
11665
11665
|
}, z.core.$strip>;
|
|
11666
11666
|
declare const EvaluationJobConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
|
|
11667
11667
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11668
11668
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11669
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11670
11669
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11670
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11671
11671
|
}, z.core.$strip>;
|
|
11672
|
-
declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema:
|
|
11672
|
+
declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
11673
11673
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
11674
11674
|
name: "created_at";
|
|
11675
11675
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
@@ -11795,7 +11795,7 @@ declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod19.
|
|
|
11795
11795
|
}, {}, {
|
|
11796
11796
|
length: 256;
|
|
11797
11797
|
}>;
|
|
11798
|
-
},
|
|
11798
|
+
}, drizzle_zod15.BuildRefine<{
|
|
11799
11799
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
11800
11800
|
name: "created_at";
|
|
11801
11801
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
@@ -11958,16 +11958,16 @@ declare const EvaluationSuiteConfigEvaluatorRelationApiSelectSchema: z.ZodObject
|
|
|
11958
11958
|
declare const EvaluationSuiteConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
11959
11959
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11960
11960
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11961
|
-
evaluatorId: z.ZodString;
|
|
11962
11961
|
evaluationSuiteConfigId: z.ZodString;
|
|
11962
|
+
evaluatorId: z.ZodString;
|
|
11963
11963
|
}, z.core.$strip>;
|
|
11964
11964
|
declare const EvaluationSuiteConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
|
|
11965
11965
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11966
11966
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11967
|
-
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11968
11967
|
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11968
|
+
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11969
11969
|
}, z.core.$strip>;
|
|
11970
|
-
declare const EvaluatorSelectSchema:
|
|
11970
|
+
declare const EvaluatorSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
11971
11971
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
11972
11972
|
name: "created_at";
|
|
11973
11973
|
tableName: "evaluator";
|
|
@@ -12175,7 +12175,7 @@ declare const EvaluatorSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
12175
12175
|
}, {}, {
|
|
12176
12176
|
length: 256;
|
|
12177
12177
|
}>;
|
|
12178
|
-
},
|
|
12178
|
+
}, drizzle_zod15.BuildRefine<{
|
|
12179
12179
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
12180
12180
|
name: "created_at";
|
|
12181
12181
|
tableName: "evaluator";
|
|
@@ -12509,7 +12509,7 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
12509
12509
|
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
12510
12510
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
|
|
12511
12511
|
}, z.core.$strip>;
|
|
12512
|
-
declare const DatasetSelectSchema:
|
|
12512
|
+
declare const DatasetSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
12513
12513
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
12514
12514
|
name: "created_at";
|
|
12515
12515
|
tableName: "dataset";
|
|
@@ -12620,7 +12620,7 @@ declare const DatasetSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
12620
12620
|
}, {}, {
|
|
12621
12621
|
length: 256;
|
|
12622
12622
|
}>;
|
|
12623
|
-
},
|
|
12623
|
+
}, drizzle_zod15.BuildRefine<{
|
|
12624
12624
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
12625
12625
|
name: "created_at";
|
|
12626
12626
|
tableName: "dataset";
|
|
@@ -12772,7 +12772,7 @@ declare const DatasetApiUpdateSchema: z.ZodObject<{
|
|
|
12772
12772
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12773
12773
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12774
12774
|
}, z.core.$strip>;
|
|
12775
|
-
declare const DatasetItemSelectSchema:
|
|
12775
|
+
declare const DatasetItemSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
12776
12776
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
12777
12777
|
name: "created_at";
|
|
12778
12778
|
tableName: "dataset_item";
|
|
@@ -12958,7 +12958,7 @@ declare const DatasetItemSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
12958
12958
|
}, {}, {
|
|
12959
12959
|
length: 256;
|
|
12960
12960
|
}>;
|
|
12961
|
-
},
|
|
12961
|
+
}, drizzle_zod15.BuildRefine<{
|
|
12962
12962
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
12963
12963
|
name: "created_at";
|
|
12964
12964
|
tableName: "dataset_item";
|
|
@@ -13527,7 +13527,7 @@ declare const TriggerEvaluationJobSchema: z.ZodObject<{
|
|
|
13527
13527
|
}, z.core.$strip>>;
|
|
13528
13528
|
}, z.core.$strip>>>;
|
|
13529
13529
|
}, z.core.$strip>;
|
|
13530
|
-
declare const DatasetRunConfigSelectSchema:
|
|
13530
|
+
declare const DatasetRunConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
13531
13531
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
13532
13532
|
name: "created_at";
|
|
13533
13533
|
tableName: "dataset_run_config";
|
|
@@ -13672,7 +13672,7 @@ declare const DatasetRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
13672
13672
|
}, {}, {
|
|
13673
13673
|
length: 256;
|
|
13674
13674
|
}>;
|
|
13675
|
-
},
|
|
13675
|
+
}, drizzle_zod15.BuildRefine<{
|
|
13676
13676
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
13677
13677
|
name: "created_at";
|
|
13678
13678
|
tableName: "dataset_run_config";
|
|
@@ -13868,7 +13868,7 @@ declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
|
13868
13868
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13869
13869
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13870
13870
|
}, z.core.$strip>;
|
|
13871
|
-
declare const DatasetRunConfigAgentRelationSelectSchema:
|
|
13871
|
+
declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
13872
13872
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
13873
13873
|
name: "created_at";
|
|
13874
13874
|
tableName: "dataset_run_config_agent_relations";
|
|
@@ -13994,7 +13994,7 @@ declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSche
|
|
|
13994
13994
|
}, {}, {
|
|
13995
13995
|
length: 256;
|
|
13996
13996
|
}>;
|
|
13997
|
-
},
|
|
13997
|
+
}, drizzle_zod15.BuildRefine<{
|
|
13998
13998
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
13999
13999
|
name: "created_at";
|
|
14000
14000
|
tableName: "dataset_run_config_agent_relations";
|
|
@@ -14166,7 +14166,7 @@ declare const DatasetRunConfigAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
14166
14166
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14167
14167
|
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14168
14168
|
}, z.core.$strip>;
|
|
14169
|
-
declare const DataComponentSelectSchema:
|
|
14169
|
+
declare const DataComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
14170
14170
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
14171
14171
|
name: "created_at";
|
|
14172
14172
|
tableName: "data_components";
|
|
@@ -14338,7 +14338,7 @@ declare const DataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
14338
14338
|
}, {}, {
|
|
14339
14339
|
length: 256;
|
|
14340
14340
|
}>;
|
|
14341
|
-
},
|
|
14341
|
+
}, drizzle_zod15.BuildRefine<{
|
|
14342
14342
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
14343
14343
|
name: "created_at";
|
|
14344
14344
|
tableName: "data_components";
|
|
@@ -14654,7 +14654,7 @@ declare const DataComponentApiUpdateSchema: z.ZodObject<{
|
|
|
14654
14654
|
mockData: Record<string, unknown>;
|
|
14655
14655
|
}>>>>>>;
|
|
14656
14656
|
}, z.core.$strip>;
|
|
14657
|
-
declare const SubAgentDataComponentSelectSchema:
|
|
14657
|
+
declare const SubAgentDataComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
14658
14658
|
dataComponentId: drizzle_orm_pg_core208.PgColumn<{
|
|
14659
14659
|
name: "data_component_id";
|
|
14660
14660
|
tableName: "sub_agent_data_components";
|
|
@@ -14786,7 +14786,7 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod19.BuildSchema<"sele
|
|
|
14786
14786
|
}, {}, {
|
|
14787
14787
|
length: 256;
|
|
14788
14788
|
}>;
|
|
14789
|
-
},
|
|
14789
|
+
}, drizzle_zod15.BuildRefine<{
|
|
14790
14790
|
dataComponentId: drizzle_orm_pg_core208.PgColumn<{
|
|
14791
14791
|
name: "data_component_id";
|
|
14792
14792
|
tableName: "sub_agent_data_components";
|
|
@@ -14919,7 +14919,7 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod19.BuildSchema<"sele
|
|
|
14919
14919
|
length: 256;
|
|
14920
14920
|
}>;
|
|
14921
14921
|
}, undefined>, undefined>;
|
|
14922
|
-
declare const SubAgentDataComponentInsertSchema:
|
|
14922
|
+
declare const SubAgentDataComponentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
14923
14923
|
dataComponentId: drizzle_orm_pg_core208.PgColumn<{
|
|
14924
14924
|
name: "data_component_id";
|
|
14925
14925
|
tableName: "sub_agent_data_components";
|
|
@@ -15051,7 +15051,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"inse
|
|
|
15051
15051
|
}, {}, {
|
|
15052
15052
|
length: 256;
|
|
15053
15053
|
}>;
|
|
15054
|
-
},
|
|
15054
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
15055
15055
|
dataComponentId: drizzle_orm_pg_core208.PgColumn<{
|
|
15056
15056
|
name: "data_component_id";
|
|
15057
15057
|
tableName: "sub_agent_data_components";
|
|
@@ -15183,7 +15183,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"inse
|
|
|
15183
15183
|
}, {}, {
|
|
15184
15184
|
length: 256;
|
|
15185
15185
|
}>;
|
|
15186
|
-
}, "tenantId" | "projectId" | "id" | "agentId" | "createdAt" | "
|
|
15186
|
+
}, "tenantId" | "projectId" | "id" | "agentId" | "createdAt" | "dataComponentId" | "subAgentId">, undefined>, undefined>;
|
|
15187
15187
|
declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
15188
15188
|
dataComponentId: z.ZodOptional<z.ZodString>;
|
|
15189
15189
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -15207,8 +15207,8 @@ declare const SubAgentDataComponentApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
15207
15207
|
}>, z.core.$strip>;
|
|
15208
15208
|
declare const SubAgentDataComponentApiInsertSchema: z.ZodObject<{
|
|
15209
15209
|
agentId: z.ZodString;
|
|
15210
|
-
subAgentId: z.ZodString;
|
|
15211
15210
|
dataComponentId: z.ZodString;
|
|
15211
|
+
subAgentId: z.ZodString;
|
|
15212
15212
|
}, {
|
|
15213
15213
|
out: {};
|
|
15214
15214
|
in: {};
|
|
@@ -15216,10 +15216,10 @@ declare const SubAgentDataComponentApiInsertSchema: z.ZodObject<{
|
|
|
15216
15216
|
declare const SubAgentDataComponentApiUpdateSchema: z.ZodObject<{
|
|
15217
15217
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15218
15218
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15219
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15220
15219
|
dataComponentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15220
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15221
15221
|
}, z.core.$strip>;
|
|
15222
|
-
declare const ArtifactComponentSelectSchema:
|
|
15222
|
+
declare const ArtifactComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
15223
15223
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
15224
15224
|
name: "created_at";
|
|
15225
15225
|
tableName: "artifact_components";
|
|
@@ -15391,7 +15391,7 @@ declare const ArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
15391
15391
|
}, {}, {
|
|
15392
15392
|
length: 256;
|
|
15393
15393
|
}>;
|
|
15394
|
-
},
|
|
15394
|
+
}, drizzle_zod15.BuildRefine<{
|
|
15395
15395
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
15396
15396
|
name: "created_at";
|
|
15397
15397
|
tableName: "artifact_components";
|
|
@@ -15682,7 +15682,7 @@ declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
|
15682
15682
|
mockData: Record<string, unknown>;
|
|
15683
15683
|
}>>>>>>;
|
|
15684
15684
|
}, z.core.$strip>;
|
|
15685
|
-
declare const SubAgentArtifactComponentSelectSchema:
|
|
15685
|
+
declare const SubAgentArtifactComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
15686
15686
|
artifactComponentId: drizzle_orm_pg_core208.PgColumn<{
|
|
15687
15687
|
name: "artifact_component_id";
|
|
15688
15688
|
tableName: "sub_agent_artifact_components";
|
|
@@ -15814,7 +15814,7 @@ declare const SubAgentArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
15814
15814
|
}, {}, {
|
|
15815
15815
|
length: 256;
|
|
15816
15816
|
}>;
|
|
15817
|
-
},
|
|
15817
|
+
}, drizzle_zod15.BuildRefine<{
|
|
15818
15818
|
artifactComponentId: drizzle_orm_pg_core208.PgColumn<{
|
|
15819
15819
|
name: "artifact_component_id";
|
|
15820
15820
|
tableName: "sub_agent_artifact_components";
|
|
@@ -16148,7 +16148,7 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16148
16148
|
baseUrl: z.ZodString;
|
|
16149
16149
|
type: z.ZodLiteral<"external">;
|
|
16150
16150
|
}, z.core.$strip>], "type">;
|
|
16151
|
-
declare const ApiKeySelectSchema:
|
|
16151
|
+
declare const ApiKeySelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
16152
16152
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
16153
16153
|
name: "created_at";
|
|
16154
16154
|
tableName: "api_keys";
|
|
@@ -16369,7 +16369,7 @@ declare const ApiKeySelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
16369
16369
|
}, {}, {
|
|
16370
16370
|
length: 256;
|
|
16371
16371
|
}>;
|
|
16372
|
-
},
|
|
16372
|
+
}, drizzle_zod15.BuildRefine<{
|
|
16373
16373
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
16374
16374
|
name: "created_at";
|
|
16375
16375
|
tableName: "api_keys";
|
|
@@ -16671,7 +16671,7 @@ declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
|
16671
16671
|
out: {};
|
|
16672
16672
|
in: {};
|
|
16673
16673
|
}>;
|
|
16674
|
-
declare const CredentialReferenceSelectSchema:
|
|
16674
|
+
declare const CredentialReferenceSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
16675
16675
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
16676
16676
|
name: "created_at";
|
|
16677
16677
|
tableName: "credential_references";
|
|
@@ -16896,7 +16896,7 @@ declare const CredentialReferenceSelectSchema: drizzle_zod19.BuildSchema<"select
|
|
|
16896
16896
|
}, {}, {
|
|
16897
16897
|
length: 256;
|
|
16898
16898
|
}>;
|
|
16899
|
-
},
|
|
16899
|
+
}, drizzle_zod15.BuildRefine<{
|
|
16900
16900
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
16901
16901
|
name: "created_at";
|
|
16902
16902
|
tableName: "credential_references";
|
|
@@ -17171,7 +17171,7 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
17171
17171
|
readonly keychain: "keychain";
|
|
17172
17172
|
readonly nango: "nango";
|
|
17173
17173
|
}>;
|
|
17174
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
17174
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
17175
17175
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
17176
17176
|
name: "created_at";
|
|
17177
17177
|
tableName: "tools";
|
|
@@ -17434,7 +17434,7 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
17434
17434
|
}, {}, {
|
|
17435
17435
|
length: 256;
|
|
17436
17436
|
}>;
|
|
17437
|
-
},
|
|
17437
|
+
}, drizzle_zod15.BuildRefine<{
|
|
17438
17438
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
17439
17439
|
name: "created_at";
|
|
17440
17440
|
tableName: "tools";
|
|
@@ -18072,7 +18072,7 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
18072
18072
|
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
18073
18073
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18074
18074
|
}, z.core.$strip>;
|
|
18075
|
-
declare const FunctionToolSelectSchema:
|
|
18075
|
+
declare const FunctionToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
18076
18076
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
18077
18077
|
name: "created_at";
|
|
18078
18078
|
tableName: "function_tools";
|
|
@@ -18238,7 +18238,7 @@ declare const FunctionToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
18238
18238
|
}, {}, {
|
|
18239
18239
|
length: 256;
|
|
18240
18240
|
}>;
|
|
18241
|
-
},
|
|
18241
|
+
}, drizzle_zod15.BuildRefine<{
|
|
18242
18242
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
18243
18243
|
name: "created_at";
|
|
18244
18244
|
tableName: "function_tools";
|
|
@@ -18464,7 +18464,7 @@ declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
|
18464
18464
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18465
18465
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18466
18466
|
}, z.core.$strip>;
|
|
18467
|
-
declare const SubAgentFunctionToolRelationSelectSchema:
|
|
18467
|
+
declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
18468
18468
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
18469
18469
|
name: "created_at";
|
|
18470
18470
|
tableName: "sub_agent_function_tool_relations";
|
|
@@ -18613,7 +18613,7 @@ declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod19.BuildSchem
|
|
|
18613
18613
|
}, {}, {
|
|
18614
18614
|
length: 256;
|
|
18615
18615
|
}>;
|
|
18616
|
-
},
|
|
18616
|
+
}, drizzle_zod15.BuildRefine<{
|
|
18617
18617
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
18618
18618
|
name: "created_at";
|
|
18619
18619
|
tableName: "sub_agent_function_tool_relations";
|
|
@@ -18793,7 +18793,7 @@ declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
|
|
|
18793
18793
|
out: {};
|
|
18794
18794
|
in: {};
|
|
18795
18795
|
}>;
|
|
18796
|
-
declare const FunctionSelectSchema:
|
|
18796
|
+
declare const FunctionSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
18797
18797
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
18798
18798
|
name: "created_at";
|
|
18799
18799
|
tableName: "functions";
|
|
@@ -18940,7 +18940,7 @@ declare const FunctionSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
18940
18940
|
}, {}, {
|
|
18941
18941
|
length: 256;
|
|
18942
18942
|
}>;
|
|
18943
|
-
},
|
|
18943
|
+
}, drizzle_zod15.BuildRefine<{
|
|
18944
18944
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
18945
18945
|
name: "created_at";
|
|
18946
18946
|
tableName: "functions";
|
|
@@ -19250,7 +19250,7 @@ declare const ContextConfigApiUpdateSchema: z.ZodObject<{
|
|
|
19250
19250
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>>;
|
|
19251
19251
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>>;
|
|
19252
19252
|
}, z.core.$strip>;
|
|
19253
|
-
declare const SubAgentToolRelationSelectSchema:
|
|
19253
|
+
declare const SubAgentToolRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
19254
19254
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
19255
19255
|
name: "created_at";
|
|
19256
19256
|
tableName: "sub_agent_tool_relations";
|
|
@@ -19460,7 +19460,7 @@ declare const SubAgentToolRelationSelectSchema: drizzle_zod19.BuildSchema<"selec
|
|
|
19460
19460
|
}, {}, {
|
|
19461
19461
|
length: 256;
|
|
19462
19462
|
}>;
|
|
19463
|
-
},
|
|
19463
|
+
}, drizzle_zod15.BuildRefine<{
|
|
19464
19464
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
19465
19465
|
name: "created_at";
|
|
19466
19466
|
tableName: "sub_agent_tool_relations";
|
|
@@ -19711,9 +19711,9 @@ declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
19711
19711
|
createdAt: z.ZodString;
|
|
19712
19712
|
updatedAt: z.ZodString;
|
|
19713
19713
|
toolId: z.ZodString;
|
|
19714
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
19715
|
-
headers: z.ZodNullable<z.ZodType<
|
|
19716
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
19714
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
19715
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
19716
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
19717
19717
|
subAgentId: z.ZodString;
|
|
19718
19718
|
agentId: z.ZodString;
|
|
19719
19719
|
projectId: z.ZodString;
|
|
@@ -19747,7 +19747,7 @@ declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
|
19747
19747
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19748
19748
|
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
19749
19749
|
}, z.core.$strip>;
|
|
19750
|
-
declare const SubAgentExternalAgentRelationSelectSchema:
|
|
19750
|
+
declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
19751
19751
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
19752
19752
|
name: "created_at";
|
|
19753
19753
|
tableName: "sub_agent_external_agent_relations";
|
|
@@ -19915,7 +19915,7 @@ declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod19.BuildSche
|
|
|
19915
19915
|
}, {}, {
|
|
19916
19916
|
length: 256;
|
|
19917
19917
|
}>;
|
|
19918
|
-
},
|
|
19918
|
+
}, drizzle_zod15.BuildRefine<{
|
|
19919
19919
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
19920
19920
|
name: "created_at";
|
|
19921
19921
|
tableName: "sub_agent_external_agent_relations";
|
|
@@ -20116,7 +20116,7 @@ declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<OmitAgen
|
|
|
20116
20116
|
createdAt: z.ZodString;
|
|
20117
20117
|
updatedAt: z.ZodString;
|
|
20118
20118
|
externalAgentId: z.ZodString;
|
|
20119
|
-
headers: z.ZodNullable<z.ZodType<
|
|
20119
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
20120
20120
|
subAgentId: z.ZodString;
|
|
20121
20121
|
agentId: z.ZodString;
|
|
20122
20122
|
projectId: z.ZodString;
|
|
@@ -20137,7 +20137,7 @@ declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
20137
20137
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20138
20138
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20139
20139
|
}, z.core.$strip>;
|
|
20140
|
-
declare const SubAgentTeamAgentRelationSelectSchema:
|
|
20140
|
+
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
20141
20141
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
20142
20142
|
name: "created_at";
|
|
20143
20143
|
tableName: "sub_agent_team_agent_relations";
|
|
@@ -20305,7 +20305,7 @@ declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
20305
20305
|
}, {}, {
|
|
20306
20306
|
length: 256;
|
|
20307
20307
|
}>;
|
|
20308
|
-
},
|
|
20308
|
+
}, drizzle_zod15.BuildRefine<{
|
|
20309
20309
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
20310
20310
|
name: "created_at";
|
|
20311
20311
|
tableName: "sub_agent_team_agent_relations";
|
|
@@ -20506,7 +20506,7 @@ declare const SubAgentTeamAgentRelationApiSelectSchema: z.ZodObject<OmitAgentSco
|
|
|
20506
20506
|
createdAt: z.ZodString;
|
|
20507
20507
|
updatedAt: z.ZodString;
|
|
20508
20508
|
targetAgentId: z.ZodString;
|
|
20509
|
-
headers: z.ZodNullable<z.ZodType<
|
|
20509
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
20510
20510
|
subAgentId: z.ZodString;
|
|
20511
20511
|
agentId: z.ZodString;
|
|
20512
20512
|
projectId: z.ZodString;
|
|
@@ -20527,7 +20527,7 @@ declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
20527
20527
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20528
20528
|
targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20529
20529
|
}, z.core.$strip>;
|
|
20530
|
-
declare const LedgerArtifactSelectSchema:
|
|
20530
|
+
declare const LedgerArtifactSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
20531
20531
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
20532
20532
|
name: "created_at";
|
|
20533
20533
|
tableName: "ledger_artifacts";
|
|
@@ -20862,7 +20862,7 @@ declare const LedgerArtifactSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
20862
20862
|
}, {}, {
|
|
20863
20863
|
length: 256;
|
|
20864
20864
|
}>;
|
|
20865
|
-
},
|
|
20865
|
+
}, drizzle_zod15.BuildRefine<{
|
|
20866
20866
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
20867
20867
|
name: "created_at";
|
|
20868
20868
|
tableName: "ledger_artifacts";
|
|
@@ -21198,7 +21198,7 @@ declare const LedgerArtifactSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
21198
21198
|
length: 256;
|
|
21199
21199
|
}>;
|
|
21200
21200
|
}, undefined>, undefined>;
|
|
21201
|
-
declare const LedgerArtifactInsertSchema:
|
|
21201
|
+
declare const LedgerArtifactInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
21202
21202
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
21203
21203
|
name: "created_at";
|
|
21204
21204
|
tableName: "ledger_artifacts";
|
|
@@ -21533,7 +21533,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
21533
21533
|
}, {}, {
|
|
21534
21534
|
length: 256;
|
|
21535
21535
|
}>;
|
|
21536
|
-
},
|
|
21536
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
21537
21537
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
21538
21538
|
name: "created_at";
|
|
21539
21539
|
tableName: "ledger_artifacts";
|
|
@@ -21878,12 +21878,12 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
21878
21878
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21879
21879
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21880
21880
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21881
|
-
parts: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
21882
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
21881
|
+
parts: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
21882
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
21883
21883
|
summary: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21884
|
-
mime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
21884
|
+
mime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
21885
21885
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21886
|
-
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
21886
|
+
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
21887
21887
|
derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21888
21888
|
projectId: z.ZodOptional<z.ZodString>;
|
|
21889
21889
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
@@ -21901,12 +21901,12 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
21901
21901
|
type: z.ZodString;
|
|
21902
21902
|
name: z.ZodNullable<z.ZodString>;
|
|
21903
21903
|
description: z.ZodNullable<z.ZodString>;
|
|
21904
|
-
parts: z.ZodNullable<z.ZodType<
|
|
21905
|
-
metadata: z.ZodNullable<z.ZodType<
|
|
21904
|
+
parts: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
21905
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
21906
21906
|
summary: z.ZodNullable<z.ZodString>;
|
|
21907
|
-
mime: z.ZodNullable<z.ZodType<
|
|
21907
|
+
mime: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
21908
21908
|
visibility: z.ZodNullable<z.ZodString>;
|
|
21909
|
-
allowedAgents: z.ZodNullable<z.ZodType<
|
|
21909
|
+
allowedAgents: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
21910
21910
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
21911
21911
|
projectId: z.ZodString;
|
|
21912
21912
|
tenantId: z.ZodString;
|
|
@@ -21921,12 +21921,12 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
21921
21921
|
type: z.ZodOptional<z.ZodString>;
|
|
21922
21922
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21923
21923
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21924
|
-
parts: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
21925
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
21924
|
+
parts: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
21925
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
21926
21926
|
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21927
|
-
mime: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
21927
|
+
mime: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
21928
21928
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21929
|
-
allowedAgents: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
21929
|
+
allowedAgents: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
21930
21930
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21931
21931
|
projectId: z.ZodString;
|
|
21932
21932
|
tenantId: z.ZodString;
|
|
@@ -21939,15 +21939,15 @@ declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
|
21939
21939
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21940
21940
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21941
21941
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21942
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
21942
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
21943
21943
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21944
21944
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21945
21945
|
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21946
21946
|
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21947
|
-
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
21947
|
+
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
21948
21948
|
summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21949
|
-
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
21950
|
-
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
21949
|
+
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
21950
|
+
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
21951
21951
|
derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21952
21952
|
}, z.core.$strip>;
|
|
21953
21953
|
declare const StatusComponentSchema: z.ZodObject<{
|
|
@@ -22227,7 +22227,7 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
22227
22227
|
objectTransformation?: Record<string, string>;
|
|
22228
22228
|
}>>>>;
|
|
22229
22229
|
messageTemplate: z.ZodString;
|
|
22230
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22230
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22231
22231
|
signingSecret: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22232
22232
|
id: z.ZodOptional<z.ZodString>;
|
|
22233
22233
|
}, z.core.$strip>>>;
|
|
@@ -22643,7 +22643,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22643
22643
|
objectTransformation?: Record<string, string>;
|
|
22644
22644
|
}>>>>;
|
|
22645
22645
|
messageTemplate: z.ZodString;
|
|
22646
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22646
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22647
22647
|
signingSecret: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22648
22648
|
id: z.ZodOptional<z.ZodString>;
|
|
22649
22649
|
}, z.core.$strip>>>;
|
|
@@ -23820,7 +23820,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23820
23820
|
readonly keychain: "keychain";
|
|
23821
23821
|
readonly nango: "nango";
|
|
23822
23822
|
}>;
|
|
23823
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
23823
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
23824
23824
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
23825
23825
|
name: "created_at";
|
|
23826
23826
|
tableName: "tools";
|
|
@@ -24083,7 +24083,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
24083
24083
|
}, {}, {
|
|
24084
24084
|
length: 256;
|
|
24085
24085
|
}>;
|
|
24086
|
-
},
|
|
24086
|
+
}, drizzle_zod15.BuildRefine<{
|
|
24087
24087
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
24088
24088
|
name: "created_at";
|
|
24089
24089
|
tableName: "tools";
|
|
@@ -24526,7 +24526,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
24526
24526
|
readonly keychain: "keychain";
|
|
24527
24527
|
readonly nango: "nango";
|
|
24528
24528
|
}>;
|
|
24529
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
24529
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
24530
24530
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
24531
24531
|
name: "created_at";
|
|
24532
24532
|
tableName: "tools";
|
|
@@ -24789,7 +24789,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
24789
24789
|
}, {}, {
|
|
24790
24790
|
length: 256;
|
|
24791
24791
|
}>;
|
|
24792
|
-
},
|
|
24792
|
+
}, drizzle_zod15.BuildRefine<{
|
|
24793
24793
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
24794
24794
|
name: "created_at";
|
|
24795
24795
|
tableName: "tools";
|
|
@@ -25608,7 +25608,7 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
25608
25608
|
readonly keychain: "keychain";
|
|
25609
25609
|
readonly nango: "nango";
|
|
25610
25610
|
}>;
|
|
25611
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
25611
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
25612
25612
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
25613
25613
|
name: "created_at";
|
|
25614
25614
|
tableName: "tools";
|
|
@@ -25871,7 +25871,7 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
25871
25871
|
}, {}, {
|
|
25872
25872
|
length: 256;
|
|
25873
25873
|
}>;
|
|
25874
|
-
},
|
|
25874
|
+
}, drizzle_zod15.BuildRefine<{
|
|
25875
25875
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
25876
25876
|
name: "created_at";
|
|
25877
25877
|
tableName: "tools";
|
|
@@ -26256,9 +26256,9 @@ declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
|
26256
26256
|
createdAt: z.ZodString;
|
|
26257
26257
|
updatedAt: z.ZodString;
|
|
26258
26258
|
toolId: z.ZodString;
|
|
26259
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
26260
|
-
headers: z.ZodNullable<z.ZodType<
|
|
26261
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
26259
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
26260
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
26261
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
26262
26262
|
subAgentId: z.ZodString;
|
|
26263
26263
|
agentId: z.ZodString;
|
|
26264
26264
|
projectId: z.ZodString;
|
|
@@ -26343,7 +26343,7 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
26343
26343
|
objectTransformation?: Record<string, string>;
|
|
26344
26344
|
}>>>;
|
|
26345
26345
|
messageTemplate: z.ZodString;
|
|
26346
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
26346
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
26347
26347
|
signingSecret: z.ZodNullable<z.ZodString>;
|
|
26348
26348
|
name: z.ZodString;
|
|
26349
26349
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -26358,8 +26358,8 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
26358
26358
|
triggerId: z.ZodString;
|
|
26359
26359
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
26360
26360
|
status: z.ZodString;
|
|
26361
|
-
requestPayload: z.ZodType<
|
|
26362
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
26361
|
+
requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
26362
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
26363
26363
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
26364
26364
|
createdAt: z.ZodString;
|
|
26365
26365
|
agentId: z.ZodString;
|
|
@@ -26733,7 +26733,7 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
26733
26733
|
readonly keychain: "keychain";
|
|
26734
26734
|
readonly nango: "nango";
|
|
26735
26735
|
}>;
|
|
26736
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
26736
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
26737
26737
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
26738
26738
|
name: "created_at";
|
|
26739
26739
|
tableName: "tools";
|
|
@@ -26996,7 +26996,7 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
26996
26996
|
}, {}, {
|
|
26997
26997
|
length: 256;
|
|
26998
26998
|
}>;
|
|
26999
|
-
},
|
|
26999
|
+
}, drizzle_zod15.BuildRefine<{
|
|
27000
27000
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
27001
27001
|
name: "created_at";
|
|
27002
27002
|
tableName: "tools";
|
|
@@ -27423,9 +27423,9 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
|
27423
27423
|
createdAt: z.ZodString;
|
|
27424
27424
|
updatedAt: z.ZodString;
|
|
27425
27425
|
toolId: z.ZodString;
|
|
27426
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
27427
|
-
headers: z.ZodNullable<z.ZodType<
|
|
27428
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
27426
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27427
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27428
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27429
27429
|
subAgentId: z.ZodString;
|
|
27430
27430
|
agentId: z.ZodString;
|
|
27431
27431
|
projectId: z.ZodString;
|
|
@@ -27528,7 +27528,7 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
27528
27528
|
objectTransformation?: Record<string, string>;
|
|
27529
27529
|
}>>>;
|
|
27530
27530
|
messageTemplate: z.ZodString;
|
|
27531
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
27531
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27532
27532
|
signingSecret: z.ZodNullable<z.ZodString>;
|
|
27533
27533
|
name: z.ZodString;
|
|
27534
27534
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -27549,8 +27549,8 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
27549
27549
|
triggerId: z.ZodString;
|
|
27550
27550
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
27551
27551
|
status: z.ZodString;
|
|
27552
|
-
requestPayload: z.ZodType<
|
|
27553
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
27552
|
+
requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
27553
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27554
27554
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
27555
27555
|
createdAt: z.ZodString;
|
|
27556
27556
|
agentId: z.ZodString;
|
|
@@ -27805,7 +27805,7 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
27805
27805
|
objectTransformation?: Record<string, string>;
|
|
27806
27806
|
}>>>>;
|
|
27807
27807
|
messageTemplate: z.ZodString;
|
|
27808
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
27808
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
27809
27809
|
signingSecret: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27810
27810
|
id: z.ZodOptional<z.ZodString>;
|
|
27811
27811
|
}, z.core.$strip>>>;
|
|
@@ -28372,7 +28372,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28372
28372
|
readonly keychain: "keychain";
|
|
28373
28373
|
readonly nango: "nango";
|
|
28374
28374
|
}>;
|
|
28375
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
28375
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
28376
28376
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
28377
28377
|
name: "created_at";
|
|
28378
28378
|
tableName: "tools";
|
|
@@ -28635,7 +28635,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28635
28635
|
}, {}, {
|
|
28636
28636
|
length: 256;
|
|
28637
28637
|
}>;
|
|
28638
|
-
},
|
|
28638
|
+
}, drizzle_zod15.BuildRefine<{
|
|
28639
28639
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
28640
28640
|
name: "created_at";
|
|
28641
28641
|
tableName: "tools";
|
|
@@ -29080,7 +29080,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29080
29080
|
readonly keychain: "keychain";
|
|
29081
29081
|
readonly nango: "nango";
|
|
29082
29082
|
}>;
|
|
29083
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
29083
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
29084
29084
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
29085
29085
|
name: "created_at";
|
|
29086
29086
|
tableName: "tools";
|
|
@@ -29343,7 +29343,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29343
29343
|
}, {}, {
|
|
29344
29344
|
length: 256;
|
|
29345
29345
|
}>;
|
|
29346
|
-
},
|
|
29346
|
+
}, drizzle_zod15.BuildRefine<{
|
|
29347
29347
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
29348
29348
|
name: "created_at";
|
|
29349
29349
|
tableName: "tools";
|
|
@@ -30002,7 +30002,7 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
30002
30002
|
objectTransformation?: Record<string, string>;
|
|
30003
30003
|
}>>>>;
|
|
30004
30004
|
messageTemplate: z.ZodString;
|
|
30005
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
30005
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
30006
30006
|
signingSecret: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30007
30007
|
id: z.ZodOptional<z.ZodString>;
|
|
30008
30008
|
}, z.core.$strip>>>;
|
|
@@ -30407,7 +30407,7 @@ declare const SubAgentTeamAgentRelationResponse: z.ZodObject<{
|
|
|
30407
30407
|
createdAt: z.ZodString;
|
|
30408
30408
|
updatedAt: z.ZodString;
|
|
30409
30409
|
targetAgentId: z.ZodString;
|
|
30410
|
-
headers: z.ZodNullable<z.ZodType<
|
|
30410
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30411
30411
|
subAgentId: z.ZodString;
|
|
30412
30412
|
agentId: z.ZodString;
|
|
30413
30413
|
projectId: z.ZodString;
|
|
@@ -30420,7 +30420,7 @@ declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
|
|
|
30420
30420
|
createdAt: z.ZodString;
|
|
30421
30421
|
updatedAt: z.ZodString;
|
|
30422
30422
|
targetAgentId: z.ZodString;
|
|
30423
|
-
headers: z.ZodNullable<z.ZodType<
|
|
30423
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30424
30424
|
subAgentId: z.ZodString;
|
|
30425
30425
|
agentId: z.ZodString;
|
|
30426
30426
|
projectId: z.ZodString;
|
|
@@ -30439,7 +30439,7 @@ declare const SubAgentExternalAgentRelationResponse: z.ZodObject<{
|
|
|
30439
30439
|
createdAt: z.ZodString;
|
|
30440
30440
|
updatedAt: z.ZodString;
|
|
30441
30441
|
externalAgentId: z.ZodString;
|
|
30442
|
-
headers: z.ZodNullable<z.ZodType<
|
|
30442
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30443
30443
|
subAgentId: z.ZodString;
|
|
30444
30444
|
agentId: z.ZodString;
|
|
30445
30445
|
projectId: z.ZodString;
|
|
@@ -30452,7 +30452,7 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
|
30452
30452
|
createdAt: z.ZodString;
|
|
30453
30453
|
updatedAt: z.ZodString;
|
|
30454
30454
|
externalAgentId: z.ZodString;
|
|
30455
|
-
headers: z.ZodNullable<z.ZodType<
|
|
30455
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30456
30456
|
subAgentId: z.ZodString;
|
|
30457
30457
|
agentId: z.ZodString;
|
|
30458
30458
|
projectId: z.ZodString;
|
|
@@ -30619,7 +30619,7 @@ declare const PaginationWithRefQueryParamsSchema: z.ZodObject<{
|
|
|
30619
30619
|
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
30620
30620
|
ref: z.ZodOptional<z.ZodString>;
|
|
30621
30621
|
}, z.core.$strip>;
|
|
30622
|
-
declare const ProjectMetadataSelectSchema:
|
|
30622
|
+
declare const ProjectMetadataSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
30623
30623
|
id: drizzle_orm_pg_core208.PgColumn<{
|
|
30624
30624
|
name: "id";
|
|
30625
30625
|
tableName: "project_metadata";
|
|
@@ -30713,7 +30713,7 @@ declare const ProjectMetadataSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
30713
30713
|
}, {}, {
|
|
30714
30714
|
length: 512;
|
|
30715
30715
|
}>;
|
|
30716
|
-
},
|
|
30716
|
+
}, drizzle_zod15.BuildRefine<{
|
|
30717
30717
|
id: drizzle_orm_pg_core208.PgColumn<{
|
|
30718
30718
|
name: "id";
|
|
30719
30719
|
tableName: "project_metadata";
|