@inkeep/agents-core 0.0.0-dev-20260120221941 → 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/auth/auth-validation-schemas.d.ts +17 -17
- package/dist/data-access/manage/agents.d.ts +16 -16
- package/dist/data-access/manage/artifactComponents.d.ts +6 -6
- package/dist/data-access/manage/contextConfigs.d.ts +4 -4
- package/dist/data-access/manage/dataComponents.d.ts +4 -4
- package/dist/data-access/manage/functionTools.d.ts +6 -6
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgentRelations.d.ts +14 -14
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgents.d.ts +12 -12
- package/dist/data-access/manage/tools.d.ts +21 -21
- package/dist/data-access/runtime/apiKeys.d.ts +12 -12
- package/dist/data-access/runtime/conversations.d.ts +19 -19
- package/dist/data-access/runtime/messages.d.ts +12 -12
- package/dist/data-access/runtime/tasks.d.ts +4 -4
- package/dist/db/runtime/runtime-schema.d.ts +6 -6
- package/dist/validation/dolt-schemas.d.ts +1 -1
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas.d.ts +420 -420
- 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";
|
|
@@ -767,10 +767,11 @@ declare const SubAgentApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
|
767
767
|
}>, z.core.$strip>;
|
|
768
768
|
declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
769
769
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
770
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
771
770
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
772
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
773
771
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
772
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
773
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
774
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
774
775
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
775
776
|
base: z.ZodOptional<z.ZodObject<{
|
|
776
777
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -794,10 +795,9 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
794
795
|
}, {
|
|
795
796
|
stepCountIs?: number | undefined;
|
|
796
797
|
}>>>>>>;
|
|
797
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
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";
|
|
@@ -2429,7 +2429,7 @@ declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
2429
2429
|
}, {}, {
|
|
2430
2430
|
length: 256;
|
|
2431
2431
|
}>;
|
|
2432
|
-
}, "tenantId" | "projectId" | "id" | "
|
|
2432
|
+
}, "tenantId" | "projectId" | "id" | "name" | "description" | "prompt" | "createdAt" | "updatedAt" | "models" | "stopWhen" | "defaultSubAgentId" | "contextConfigId" | "statusUpdates">, undefined>, undefined>;
|
|
2433
2433
|
declare const AgentUpdateSchema: z.ZodObject<{
|
|
2434
2434
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2435
2435
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2696,10 +2696,11 @@ declare const AgentApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
2696
2696
|
id: z.ZodString;
|
|
2697
2697
|
}>, z.core.$strip>;
|
|
2698
2698
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
2699
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
2700
2699
|
name: z.ZodString;
|
|
2701
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2702
2700
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2701
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2702
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2703
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2703
2704
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2704
2705
|
base?: {
|
|
2705
2706
|
model?: string | undefined;
|
|
@@ -2764,7 +2765,6 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2764
2765
|
}>>>>;
|
|
2765
2766
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2766
2767
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2767
|
-
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2768
2768
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2769
2769
|
enabled?: boolean | undefined;
|
|
2770
2770
|
numEvents?: number | undefined;
|
|
@@ -2826,10 +2826,11 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2826
2826
|
}, z.core.$strip>;
|
|
2827
2827
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
2828
2828
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2829
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2830
2829
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2831
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2832
2830
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2831
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2832
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2833
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2833
2834
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2834
2835
|
base?: {
|
|
2835
2836
|
model?: string | undefined;
|
|
@@ -2894,7 +2895,6 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
2894
2895
|
}>>>>>>;
|
|
2895
2896
|
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2896
2897
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2897
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2898
2898
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2899
2899
|
enabled?: boolean | undefined;
|
|
2900
2900
|
numEvents?: number | undefined;
|
|
@@ -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";
|
|
@@ -4030,7 +4030,7 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
4030
4030
|
}, {}, {
|
|
4031
4031
|
length: 256;
|
|
4032
4032
|
}>;
|
|
4033
|
-
}, "tenantId" | "projectId" | "id" | "
|
|
4033
|
+
}, "tenantId" | "projectId" | "id" | "name" | "description" | "agentId" | "createdAt" | "updatedAt" | "enabled" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecret">, undefined>, undefined>;
|
|
4034
4034
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
4035
4035
|
name: z.ZodOptional<z.ZodString>;
|
|
4036
4036
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -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>;
|
|
@@ -4095,12 +4095,12 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4095
4095
|
id: z.ZodString;
|
|
4096
4096
|
}>, z.core.$strip>;
|
|
4097
4097
|
declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
4098
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4099
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
4100
4098
|
name: z.ZodString;
|
|
4101
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4102
4099
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4100
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
4101
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4103
4102
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4103
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4104
4104
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
4105
4105
|
jmespath?: string;
|
|
4106
4106
|
objectTransformation?: Record<string, string>;
|
|
@@ -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" | "
|
|
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;
|
|
@@ -4998,8 +4998,8 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
4998
4998
|
status: z.ZodOptional<z.ZodString>;
|
|
4999
4999
|
triggerId: z.ZodString;
|
|
5000
5000
|
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5001
|
-
requestPayload: z.ZodType<
|
|
5002
|
-
transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
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>;
|
|
@@ -5009,11 +5009,11 @@ declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
5009
5009
|
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5010
5010
|
triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5011
5011
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5012
|
-
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<
|
|
5013
|
-
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
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";
|
|
@@ -5073,7 +5073,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
5073
5073
|
dataType: "json";
|
|
5074
5074
|
columnType: "PgJsonb";
|
|
5075
5075
|
data: {
|
|
5076
|
-
type: "
|
|
5076
|
+
type: "tag" | "commit" | "branch";
|
|
5077
5077
|
name: string;
|
|
5078
5078
|
hash: string;
|
|
5079
5079
|
};
|
|
@@ -5089,7 +5089,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
5089
5089
|
generated: undefined;
|
|
5090
5090
|
}, {}, {
|
|
5091
5091
|
$type: {
|
|
5092
|
-
type: "
|
|
5092
|
+
type: "tag" | "commit" | "branch";
|
|
5093
5093
|
name: string;
|
|
5094
5094
|
hash: string;
|
|
5095
5095
|
};
|
|
@@ -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";
|
|
@@ -5287,7 +5287,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
5287
5287
|
dataType: "json";
|
|
5288
5288
|
columnType: "PgJsonb";
|
|
5289
5289
|
data: {
|
|
5290
|
-
type: "
|
|
5290
|
+
type: "tag" | "commit" | "branch";
|
|
5291
5291
|
name: string;
|
|
5292
5292
|
hash: string;
|
|
5293
5293
|
};
|
|
@@ -5303,7 +5303,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
5303
5303
|
generated: undefined;
|
|
5304
5304
|
}, {}, {
|
|
5305
5305
|
$type: {
|
|
5306
|
-
type: "
|
|
5306
|
+
type: "tag" | "commit" | "branch";
|
|
5307
5307
|
name: string;
|
|
5308
5308
|
hash: string;
|
|
5309
5309
|
};
|
|
@@ -5456,8 +5456,8 @@ declare const TaskInsertSchema: z.ZodObject<{
|
|
|
5456
5456
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
5457
5457
|
ref: z.ZodObject<{
|
|
5458
5458
|
type: z.ZodEnum<{
|
|
5459
|
-
commit: "commit";
|
|
5460
5459
|
tag: "tag";
|
|
5460
|
+
commit: "commit";
|
|
5461
5461
|
branch: "branch";
|
|
5462
5462
|
}>;
|
|
5463
5463
|
name: z.ZodString;
|
|
@@ -5481,8 +5481,8 @@ declare const TaskUpdateSchema: z.ZodObject<{
|
|
|
5481
5481
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5482
5482
|
ref: z.ZodOptional<z.ZodObject<{
|
|
5483
5483
|
type: z.ZodEnum<{
|
|
5484
|
-
commit: "commit";
|
|
5485
5484
|
tag: "tag";
|
|
5485
|
+
commit: "commit";
|
|
5486
5486
|
branch: "branch";
|
|
5487
5487
|
}>;
|
|
5488
5488
|
name: z.ZodString;
|
|
@@ -5497,19 +5497,19 @@ declare const TaskApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
5497
5497
|
updatedAt: z.ZodString;
|
|
5498
5498
|
contextId: z.ZodString;
|
|
5499
5499
|
ref: z.ZodNullable<z.ZodType<{
|
|
5500
|
-
type: "
|
|
5500
|
+
type: "tag" | "commit" | "branch";
|
|
5501
5501
|
name: string;
|
|
5502
5502
|
hash: string;
|
|
5503
5503
|
}, {
|
|
5504
|
-
type: "
|
|
5504
|
+
type: "tag" | "commit" | "branch";
|
|
5505
5505
|
name: string;
|
|
5506
5506
|
hash: string;
|
|
5507
5507
|
}, z.core.$ZodTypeInternals<{
|
|
5508
|
-
type: "
|
|
5508
|
+
type: "tag" | "commit" | "branch";
|
|
5509
5509
|
name: string;
|
|
5510
5510
|
hash: string;
|
|
5511
5511
|
}, {
|
|
5512
|
-
type: "
|
|
5512
|
+
type: "tag" | "commit" | "branch";
|
|
5513
5513
|
name: string;
|
|
5514
5514
|
hash: string;
|
|
5515
5515
|
}>>>;
|
|
@@ -5535,8 +5535,8 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
5535
5535
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
5536
5536
|
ref: z.ZodObject<{
|
|
5537
5537
|
type: z.ZodEnum<{
|
|
5538
|
-
commit: "commit";
|
|
5539
5538
|
tag: "tag";
|
|
5539
|
+
commit: "commit";
|
|
5540
5540
|
branch: "branch";
|
|
5541
5541
|
}>;
|
|
5542
5542
|
name: z.ZodString;
|
|
@@ -5545,25 +5545,25 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
5545
5545
|
}>, z.core.$strip>;
|
|
5546
5546
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
5547
5547
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5548
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5548
5549
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5549
5550
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5550
5551
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
5551
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5552
5552
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
5553
5553
|
type: z.ZodEnum<{
|
|
5554
|
-
commit: "commit";
|
|
5555
5554
|
tag: "tag";
|
|
5555
|
+
commit: "commit";
|
|
5556
5556
|
branch: "branch";
|
|
5557
5557
|
}>;
|
|
5558
5558
|
name: z.ZodString;
|
|
5559
5559
|
hash: z.ZodString;
|
|
5560
5560
|
}, z.core.$strip>>>;
|
|
5561
5561
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5562
|
-
|
|
5563
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5562
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5564
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";
|
|
@@ -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";
|
|
@@ -6606,7 +6606,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
6606
6606
|
dataType: "json";
|
|
6607
6607
|
columnType: "PgJsonb";
|
|
6608
6608
|
data: {
|
|
6609
|
-
type: "
|
|
6609
|
+
type: "tag" | "commit" | "branch";
|
|
6610
6610
|
name: string;
|
|
6611
6611
|
hash: string;
|
|
6612
6612
|
};
|
|
@@ -6622,7 +6622,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
6622
6622
|
generated: undefined;
|
|
6623
6623
|
}, {}, {
|
|
6624
6624
|
$type: {
|
|
6625
|
-
type: "
|
|
6625
|
+
type: "tag" | "commit" | "branch";
|
|
6626
6626
|
name: string;
|
|
6627
6627
|
hash: string;
|
|
6628
6628
|
};
|
|
@@ -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";
|
|
@@ -6835,7 +6835,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
6835
6835
|
dataType: "json";
|
|
6836
6836
|
columnType: "PgJsonb";
|
|
6837
6837
|
data: {
|
|
6838
|
-
type: "
|
|
6838
|
+
type: "tag" | "commit" | "branch";
|
|
6839
6839
|
name: string;
|
|
6840
6840
|
hash: string;
|
|
6841
6841
|
};
|
|
@@ -6851,7 +6851,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
6851
6851
|
generated: undefined;
|
|
6852
6852
|
}, {}, {
|
|
6853
6853
|
$type: {
|
|
6854
|
-
type: "
|
|
6854
|
+
type: "tag" | "commit" | "branch";
|
|
6855
6855
|
name: string;
|
|
6856
6856
|
hash: string;
|
|
6857
6857
|
};
|
|
@@ -6982,8 +6982,8 @@ declare const ConversationInsertSchema: z.ZodObject<{
|
|
|
6982
6982
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
6983
6983
|
ref: z.ZodObject<{
|
|
6984
6984
|
type: z.ZodEnum<{
|
|
6985
|
-
commit: "commit";
|
|
6986
6985
|
tag: "tag";
|
|
6986
|
+
commit: "commit";
|
|
6987
6987
|
branch: "branch";
|
|
6988
6988
|
}>;
|
|
6989
6989
|
name: z.ZodString;
|
|
@@ -7008,8 +7008,8 @@ declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
7008
7008
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7009
7009
|
ref: z.ZodOptional<z.ZodObject<{
|
|
7010
7010
|
type: z.ZodEnum<{
|
|
7011
|
-
commit: "commit";
|
|
7012
7011
|
tag: "tag";
|
|
7012
|
+
commit: "commit";
|
|
7013
7013
|
branch: "branch";
|
|
7014
7014
|
}>;
|
|
7015
7015
|
name: z.ZodString;
|
|
@@ -7026,19 +7026,19 @@ declare const ConversationApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
7026
7026
|
agentId: z.ZodNullable<z.ZodString>;
|
|
7027
7027
|
activeSubAgentId: z.ZodString;
|
|
7028
7028
|
ref: z.ZodNullable<z.ZodType<{
|
|
7029
|
-
type: "
|
|
7029
|
+
type: "tag" | "commit" | "branch";
|
|
7030
7030
|
name: string;
|
|
7031
7031
|
hash: string;
|
|
7032
7032
|
}, {
|
|
7033
|
-
type: "
|
|
7033
|
+
type: "tag" | "commit" | "branch";
|
|
7034
7034
|
name: string;
|
|
7035
7035
|
hash: string;
|
|
7036
7036
|
}, z.core.$ZodTypeInternals<{
|
|
7037
|
-
type: "
|
|
7037
|
+
type: "tag" | "commit" | "branch";
|
|
7038
7038
|
name: string;
|
|
7039
7039
|
hash: string;
|
|
7040
7040
|
}, {
|
|
7041
|
-
type: "
|
|
7041
|
+
type: "tag" | "commit" | "branch";
|
|
7042
7042
|
name: string;
|
|
7043
7043
|
hash: string;
|
|
7044
7044
|
}>>>;
|
|
@@ -7064,8 +7064,8 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
7064
7064
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
7065
7065
|
ref: z.ZodObject<{
|
|
7066
7066
|
type: z.ZodEnum<{
|
|
7067
|
-
commit: "commit";
|
|
7068
7067
|
tag: "tag";
|
|
7068
|
+
commit: "commit";
|
|
7069
7069
|
branch: "branch";
|
|
7070
7070
|
}>;
|
|
7071
7071
|
name: z.ZodString;
|
|
@@ -7074,26 +7074,26 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
7074
7074
|
}>, z.core.$strip>;
|
|
7075
7075
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
7076
7076
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7077
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7078
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7077
7079
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7078
7080
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7079
|
-
|
|
7081
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7080
7082
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
7083
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7081
7084
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7082
7085
|
type: z.ZodEnum<{
|
|
7083
|
-
commit: "commit";
|
|
7084
7086
|
tag: "tag";
|
|
7087
|
+
commit: "commit";
|
|
7085
7088
|
branch: "branch";
|
|
7086
7089
|
}>;
|
|
7087
7090
|
name: z.ZodString;
|
|
7088
7091
|
hash: z.ZodString;
|
|
7089
7092
|
}, z.core.$strip>>>;
|
|
7090
|
-
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7091
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7092
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
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";
|
|
@@ -7990,22 +7990,22 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
7990
7990
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7991
7991
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
7992
7992
|
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
7993
|
+
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7994
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7993
7995
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7994
7996
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7995
7997
|
fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7996
7998
|
toExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7997
|
-
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7998
|
-
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7999
|
-
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8000
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8001
7999
|
fromTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8002
8000
|
toTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8003
8001
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8004
8002
|
messageType: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8003
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8005
8004
|
parentMessageId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
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";
|
|
@@ -8103,7 +8103,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8103
8103
|
dataType: "json";
|
|
8104
8104
|
columnType: "PgJsonb";
|
|
8105
8105
|
data: {
|
|
8106
|
-
type: "
|
|
8106
|
+
type: "tag" | "commit" | "branch";
|
|
8107
8107
|
name: string;
|
|
8108
8108
|
hash: string;
|
|
8109
8109
|
};
|
|
@@ -8119,7 +8119,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8119
8119
|
generated: undefined;
|
|
8120
8120
|
}, {}, {
|
|
8121
8121
|
$type: {
|
|
8122
|
-
type: "
|
|
8122
|
+
type: "tag" | "commit" | "branch";
|
|
8123
8123
|
name: string;
|
|
8124
8124
|
hash: string;
|
|
8125
8125
|
};
|
|
@@ -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";
|
|
@@ -8353,7 +8353,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8353
8353
|
dataType: "json";
|
|
8354
8354
|
columnType: "PgJsonb";
|
|
8355
8355
|
data: {
|
|
8356
|
-
type: "
|
|
8356
|
+
type: "tag" | "commit" | "branch";
|
|
8357
8357
|
name: string;
|
|
8358
8358
|
hash: string;
|
|
8359
8359
|
};
|
|
@@ -8369,7 +8369,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8369
8369
|
generated: undefined;
|
|
8370
8370
|
}, {}, {
|
|
8371
8371
|
$type: {
|
|
8372
|
-
type: "
|
|
8372
|
+
type: "tag" | "commit" | "branch";
|
|
8373
8373
|
name: string;
|
|
8374
8374
|
hash: string;
|
|
8375
8375
|
};
|
|
@@ -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>>;
|
|
@@ -8521,8 +8521,8 @@ declare const ContextCacheInsertSchema: z.ZodObject<{
|
|
|
8521
8521
|
id: z.ZodString;
|
|
8522
8522
|
ref: z.ZodObject<{
|
|
8523
8523
|
type: z.ZodEnum<{
|
|
8524
|
-
commit: "commit";
|
|
8525
8524
|
tag: "tag";
|
|
8525
|
+
commit: "commit";
|
|
8526
8526
|
branch: "branch";
|
|
8527
8527
|
}>;
|
|
8528
8528
|
name: 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>>>;
|
|
@@ -8547,8 +8547,8 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
8547
8547
|
id: z.ZodOptional<z.ZodString>;
|
|
8548
8548
|
ref: z.ZodOptional<z.ZodObject<{
|
|
8549
8549
|
type: z.ZodEnum<{
|
|
8550
|
-
commit: "commit";
|
|
8551
8550
|
tag: "tag";
|
|
8551
|
+
commit: "commit";
|
|
8552
8552
|
branch: "branch";
|
|
8553
8553
|
}>;
|
|
8554
8554
|
name: z.ZodString;
|
|
@@ -8565,23 +8565,23 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8565
8565
|
contextConfigId: z.ZodString;
|
|
8566
8566
|
contextVariableKey: z.ZodString;
|
|
8567
8567
|
ref: z.ZodNullable<z.ZodType<{
|
|
8568
|
-
type: "
|
|
8568
|
+
type: "tag" | "commit" | "branch";
|
|
8569
8569
|
name: string;
|
|
8570
8570
|
hash: string;
|
|
8571
8571
|
}, {
|
|
8572
|
-
type: "
|
|
8572
|
+
type: "tag" | "commit" | "branch";
|
|
8573
8573
|
name: string;
|
|
8574
8574
|
hash: string;
|
|
8575
8575
|
}, z.core.$ZodTypeInternals<{
|
|
8576
|
-
type: "
|
|
8576
|
+
type: "tag" | "commit" | "branch";
|
|
8577
8577
|
name: string;
|
|
8578
8578
|
hash: string;
|
|
8579
8579
|
}, {
|
|
8580
|
-
type: "
|
|
8580
|
+
type: "tag" | "commit" | "branch";
|
|
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>>;
|
|
@@ -8604,8 +8604,8 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8604
8604
|
id: z.ZodString;
|
|
8605
8605
|
ref: z.ZodObject<{
|
|
8606
8606
|
type: z.ZodEnum<{
|
|
8607
|
-
commit: "commit";
|
|
8608
8607
|
tag: "tag";
|
|
8608
|
+
commit: "commit";
|
|
8609
8609
|
branch: "branch";
|
|
8610
8610
|
}>;
|
|
8611
8611
|
name: z.ZodString;
|
|
@@ -8614,26 +8614,26 @@ 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<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
8617
8618
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8618
8619
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8619
|
-
|
|
8620
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8620
8621
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
8621
8622
|
type: z.ZodEnum<{
|
|
8622
|
-
commit: "commit";
|
|
8623
8623
|
tag: "tag";
|
|
8624
|
+
commit: "commit";
|
|
8624
8625
|
branch: "branch";
|
|
8625
8626
|
}>;
|
|
8626
8627
|
name: z.ZodString;
|
|
8627
8628
|
hash: z.ZodString;
|
|
8628
8629
|
}, z.core.$strip>>>;
|
|
8629
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8630
8630
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8631
8631
|
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8632
8632
|
requestHash: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
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";
|
|
@@ -10313,31 +10313,31 @@ declare const EvaluationRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
10313
10313
|
id: z.ZodString;
|
|
10314
10314
|
}>, z.core.$strip>;
|
|
10315
10315
|
declare const EvaluationRunConfigApiInsertSchema: z.ZodObject<{
|
|
10316
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
10317
10316
|
name: z.ZodString;
|
|
10318
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10319
10317
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10318
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
10319
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10320
10320
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
10321
10321
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
10322
10322
|
}, z.core.$strip>;
|
|
10323
10323
|
declare const EvaluationRunConfigApiUpdateSchema: z.ZodObject<{
|
|
10324
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10325
10324
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10326
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10327
10325
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10326
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10327
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10328
10328
|
isActive: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
10329
10329
|
suiteConfigIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10330
10330
|
}, z.core.$strip>;
|
|
10331
10331
|
declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
10332
10332
|
id: z.ZodString;
|
|
10333
|
-
createdAt: z.ZodString;
|
|
10334
10333
|
name: z.ZodString;
|
|
10335
|
-
updatedAt: z.ZodString;
|
|
10336
10334
|
description: z.ZodNullable<z.ZodString>;
|
|
10335
|
+
createdAt: z.ZodString;
|
|
10336
|
+
updatedAt: z.ZodString;
|
|
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";
|
|
@@ -12466,10 +12466,9 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
12466
12466
|
id: z.ZodString;
|
|
12467
12467
|
}>, z.core.$strip>;
|
|
12468
12468
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
12469
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
12470
12469
|
name: z.ZodString;
|
|
12471
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12472
12470
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12471
|
+
prompt: z.ZodString;
|
|
12473
12472
|
model: z.ZodType<{
|
|
12474
12473
|
model?: string | undefined;
|
|
12475
12474
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -12483,15 +12482,15 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
12483
12482
|
model?: string | undefined;
|
|
12484
12483
|
providerOptions?: Record<string, any> | undefined;
|
|
12485
12484
|
}>>;
|
|
12485
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
12486
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12486
12487
|
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
12487
|
-
prompt: z.ZodString;
|
|
12488
12488
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
|
|
12489
12489
|
}, z.core.$strip>;
|
|
12490
12490
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
12491
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12492
12491
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12493
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12494
12492
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12493
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12495
12494
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
12496
12495
|
model?: string | undefined;
|
|
12497
12496
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -12505,11 +12504,12 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
12505
12504
|
model?: string | undefined;
|
|
12506
12505
|
providerOptions?: Record<string, any> | undefined;
|
|
12507
12506
|
}>>>>;
|
|
12507
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12508
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12508
12509
|
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
12509
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
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";
|
|
@@ -12763,16 +12763,16 @@ declare const DatasetApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
12763
12763
|
id: z.ZodString;
|
|
12764
12764
|
}>, z.core.$strip>;
|
|
12765
12765
|
declare const DatasetApiInsertSchema: z.ZodObject<{
|
|
12766
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
12767
12766
|
name: z.ZodString;
|
|
12767
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
12768
12768
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12769
12769
|
}, z.core.$strip>;
|
|
12770
12770
|
declare const DatasetApiUpdateSchema: z.ZodObject<{
|
|
12771
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12772
12771
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
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";
|
|
@@ -13399,8 +13399,8 @@ declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
|
13399
13399
|
}>>>>>>;
|
|
13400
13400
|
}, z.core.$strip>;
|
|
13401
13401
|
declare const DatasetRunItemSchema: z.ZodObject<{
|
|
13402
|
-
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13403
13402
|
id: z.ZodOptional<z.ZodString>;
|
|
13403
|
+
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13404
13404
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13405
13405
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
13406
13406
|
prompt: string;
|
|
@@ -13448,8 +13448,8 @@ declare const DatasetRunItemSchema: z.ZodObject<{
|
|
|
13448
13448
|
declare const TriggerDatasetRunSchema: z.ZodObject<{
|
|
13449
13449
|
datasetRunId: z.ZodString;
|
|
13450
13450
|
items: z.ZodArray<z.ZodObject<{
|
|
13451
|
-
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13452
13451
|
id: z.ZodOptional<z.ZodString>;
|
|
13452
|
+
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13453
13453
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13454
13454
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
13455
13455
|
prompt: string;
|
|
@@ -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";
|
|
@@ -13855,20 +13855,20 @@ declare const DatasetRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
13855
13855
|
id: z.ZodString;
|
|
13856
13856
|
}>, z.core.$strip>;
|
|
13857
13857
|
declare const DatasetRunConfigApiInsertSchema: z.ZodObject<{
|
|
13858
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
13859
13858
|
name: z.ZodString;
|
|
13860
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13861
13859
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13860
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
13861
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13862
13862
|
datasetId: z.ZodString;
|
|
13863
13863
|
}, z.core.$strip>;
|
|
13864
13864
|
declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
13865
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13866
13865
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13867
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13868
13866
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13867
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
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";
|
|
@@ -14155,18 +14155,18 @@ declare const DatasetRunConfigAgentRelationApiSelectSchema: z.ZodObject<OmitProj
|
|
|
14155
14155
|
id: z.ZodString;
|
|
14156
14156
|
}>, z.core.$strip>;
|
|
14157
14157
|
declare const DatasetRunConfigAgentRelationApiInsertSchema: z.ZodObject<{
|
|
14158
|
+
agentId: z.ZodString;
|
|
14158
14159
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14159
14160
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14160
|
-
agentId: z.ZodString;
|
|
14161
14161
|
datasetRunConfigId: z.ZodString;
|
|
14162
14162
|
}, z.core.$strip>;
|
|
14163
14163
|
declare const DatasetRunConfigAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
14164
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14164
14165
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14165
14166
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14166
|
-
agentId: 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";
|
|
@@ -14635,10 +14635,10 @@ declare const DataComponentApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
14635
14635
|
}>, z.core.$strip>;
|
|
14636
14636
|
declare const DataComponentApiUpdateSchema: z.ZodObject<{
|
|
14637
14637
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14638
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14639
14638
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14640
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14641
14639
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14640
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14641
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14642
14642
|
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>>;
|
|
14643
14643
|
render: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
14644
14644
|
component: string;
|
|
@@ -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" | "
|
|
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>>;
|
|
@@ -15206,9 +15206,9 @@ declare const SubAgentDataComponentApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
15206
15206
|
id: z.ZodString;
|
|
15207
15207
|
}>, z.core.$strip>;
|
|
15208
15208
|
declare const SubAgentDataComponentApiInsertSchema: z.ZodObject<{
|
|
15209
|
-
subAgentId: z.ZodString;
|
|
15210
15209
|
agentId: 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";
|
|
@@ -15663,10 +15663,10 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
15663
15663
|
}>;
|
|
15664
15664
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
15665
15665
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15666
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15667
15666
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15668
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15669
15667
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
15668
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15669
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15670
15670
|
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>>;
|
|
15671
15671
|
render: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
15672
15672
|
component: string;
|
|
@@ -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";
|
|
@@ -15981,8 +15981,8 @@ declare const SubAgentArtifactComponentApiSelectSchema: z.ZodObject<OmitAgentSco
|
|
|
15981
15981
|
id: z.ZodString;
|
|
15982
15982
|
}>, z.core.$strip>;
|
|
15983
15983
|
declare const SubAgentArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
15984
|
-
subAgentId: z.ZodString;
|
|
15985
15984
|
agentId: z.ZodString;
|
|
15985
|
+
subAgentId: z.ZodString;
|
|
15986
15986
|
artifactComponentId: z.ZodString;
|
|
15987
15987
|
}, {
|
|
15988
15988
|
out: {};
|
|
@@ -16060,19 +16060,20 @@ declare const ExternalAgentApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
16060
16060
|
}>, z.core.$strip>;
|
|
16061
16061
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
16062
16062
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16063
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16064
16063
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16065
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16066
16064
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16067
16065
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16066
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16067
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16068
16068
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16069
16069
|
}, z.core.$strip>;
|
|
16070
16070
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
16071
16071
|
id: z.ZodString;
|
|
16072
|
-
createdAt: z.ZodString;
|
|
16073
16072
|
name: z.ZodString;
|
|
16074
|
-
updatedAt: z.ZodString;
|
|
16075
16073
|
description: z.ZodNullable<z.ZodString>;
|
|
16074
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
16075
|
+
createdAt: z.ZodString;
|
|
16076
|
+
updatedAt: z.ZodString;
|
|
16076
16077
|
models: z.ZodNullable<z.ZodType<{
|
|
16077
16078
|
base?: {
|
|
16078
16079
|
model?: string | undefined;
|
|
@@ -16135,20 +16136,19 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16135
16136
|
}, {
|
|
16136
16137
|
stepCountIs?: number | undefined;
|
|
16137
16138
|
}>>>;
|
|
16138
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
16139
16139
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
16140
16140
|
type: z.ZodLiteral<"internal">;
|
|
16141
16141
|
}, z.core.$strip>, z.ZodObject<{
|
|
16142
16142
|
id: z.ZodString;
|
|
16143
|
-
createdAt: z.ZodString;
|
|
16144
16143
|
name: z.ZodString;
|
|
16145
|
-
updatedAt: z.ZodString;
|
|
16146
16144
|
description: z.ZodNullable<z.ZodString>;
|
|
16147
16145
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16146
|
+
createdAt: z.ZodString;
|
|
16147
|
+
updatedAt: z.ZodString;
|
|
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";
|
|
@@ -16610,24 +16610,24 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
16610
16610
|
}>;
|
|
16611
16611
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
16612
16612
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16613
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16614
|
-
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16615
16613
|
agentId: z.ZodOptional<z.ZodString>;
|
|
16616
16614
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16615
|
+
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16616
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16617
16617
|
}, {
|
|
16618
16618
|
out: {};
|
|
16619
16619
|
in: {};
|
|
16620
16620
|
}>;
|
|
16621
16621
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
16622
16622
|
id: z.ZodString;
|
|
16623
|
-
createdAt: z.ZodString;
|
|
16624
16623
|
name: z.ZodNullable<z.ZodString>;
|
|
16625
|
-
updatedAt: z.ZodString;
|
|
16626
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
16627
16624
|
agentId: z.ZodString;
|
|
16628
16625
|
publicId: z.ZodString;
|
|
16629
16626
|
keyPrefix: z.ZodString;
|
|
16630
16627
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
16628
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
16629
|
+
createdAt: z.ZodString;
|
|
16630
|
+
updatedAt: z.ZodString;
|
|
16631
16631
|
}, {
|
|
16632
16632
|
out: {};
|
|
16633
16633
|
in: {};
|
|
@@ -16636,14 +16636,14 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
16636
16636
|
data: z.ZodObject<{
|
|
16637
16637
|
apiKey: z.ZodObject<{
|
|
16638
16638
|
id: z.ZodString;
|
|
16639
|
-
createdAt: z.ZodString;
|
|
16640
16639
|
name: z.ZodNullable<z.ZodString>;
|
|
16641
|
-
updatedAt: z.ZodString;
|
|
16642
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
16643
16640
|
agentId: z.ZodString;
|
|
16644
16641
|
publicId: z.ZodString;
|
|
16645
16642
|
keyPrefix: z.ZodString;
|
|
16646
16643
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
16644
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
16645
|
+
createdAt: z.ZodString;
|
|
16646
|
+
updatedAt: z.ZodString;
|
|
16647
16647
|
}, {
|
|
16648
16648
|
out: {};
|
|
16649
16649
|
in: {};
|
|
@@ -16652,26 +16652,26 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
16652
16652
|
}, z.core.$strip>;
|
|
16653
16653
|
}, z.core.$strip>;
|
|
16654
16654
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
16655
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
16656
16655
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16657
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16658
|
-
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16659
16656
|
agentId: z.ZodString;
|
|
16657
|
+
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16658
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
16659
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16660
16660
|
}, {
|
|
16661
16661
|
out: {};
|
|
16662
16662
|
in: {};
|
|
16663
16663
|
}>;
|
|
16664
16664
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
16665
16665
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16666
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16667
|
-
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16668
16666
|
agentId: z.ZodOptional<z.ZodString>;
|
|
16669
16667
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16668
|
+
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16669
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16670
16670
|
}, {
|
|
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";
|
|
@@ -17158,12 +17158,12 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
|
17158
17158
|
}>;
|
|
17159
17159
|
declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
17160
17160
|
id: z.ZodString;
|
|
17161
|
-
createdAt: z.ZodString;
|
|
17162
17161
|
name: z.ZodString;
|
|
17162
|
+
createdAt: z.ZodString;
|
|
17163
17163
|
updatedAt: z.ZodString;
|
|
17164
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
17165
17164
|
credentialStoreId: z.ZodString;
|
|
17166
17165
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
17166
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
17167
17167
|
toolId: z.ZodNullable<z.ZodString>;
|
|
17168
17168
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
17169
17169
|
type: z.ZodEnum<{
|
|
@@ -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";
|
|
@@ -17715,12 +17715,12 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
17715
17715
|
}, z.core.$strip>;
|
|
17716
17716
|
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
17717
17717
|
id: z.ZodString;
|
|
17718
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
17719
17718
|
name: z.ZodString;
|
|
17719
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
17720
17720
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17721
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17722
17721
|
credentialStoreId: z.ZodString;
|
|
17723
17722
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
17723
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17724
17724
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17725
17725
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17726
17726
|
type: z.ZodEnum<{
|
|
@@ -17731,12 +17731,12 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
17731
17731
|
}, z.core.$strip>;
|
|
17732
17732
|
declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
17733
17733
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17734
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
17735
17734
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17735
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
17736
17736
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
17737
|
-
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17738
17737
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17739
17738
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
17739
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17740
17740
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17741
17741
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17742
17742
|
type: z.ZodOptional<z.ZodEnum<{
|
|
@@ -17862,12 +17862,12 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
17862
17862
|
id: z.ZodString;
|
|
17863
17863
|
name: z.ZodString;
|
|
17864
17864
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
17865
|
+
createdBy: z.ZodOptional<z.ZodString>;
|
|
17865
17866
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
17866
17867
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
17867
17868
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
17868
17869
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
17869
17870
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17870
|
-
createdBy: z.ZodOptional<z.ZodString>;
|
|
17871
17871
|
availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17872
17872
|
name: z.ZodString;
|
|
17873
17873
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -17895,12 +17895,12 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
17895
17895
|
}, z.core.$strip>>;
|
|
17896
17896
|
credential: z.ZodOptional<z.ZodObject<{
|
|
17897
17897
|
id: z.ZodString;
|
|
17898
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
17899
17898
|
name: z.ZodString;
|
|
17899
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
17900
17900
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17901
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17902
17901
|
credentialStoreId: z.ZodString;
|
|
17903
17902
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
17903
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17904
17904
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17905
17905
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17906
17906
|
type: z.ZodEnum<{
|
|
@@ -18035,11 +18035,8 @@ declare const ToolApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
18035
18035
|
}>, z.core.$strip>;
|
|
18036
18036
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
18037
18037
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18038
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18039
18038
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18040
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18041
18039
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18042
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
|
|
18043
18040
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
18044
18041
|
type: z.ZodLiteral<"mcp">;
|
|
18045
18042
|
mcp: z.ZodObject<{
|
|
@@ -18067,12 +18064,15 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
18067
18064
|
}, z.core.$strip>;
|
|
18068
18065
|
}, z.core.$strip>>>;
|
|
18069
18066
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18067
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18068
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18069
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
|
|
18070
18070
|
credentialScope: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18071
18071
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
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";
|
|
@@ -18457,14 +18457,14 @@ declare const FunctionToolApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
|
18457
18457
|
}>, z.core.$strip>;
|
|
18458
18458
|
declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
18459
18459
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18460
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18461
18460
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18462
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18463
18461
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18464
18462
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18463
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
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";
|
|
@@ -19136,11 +19136,11 @@ declare const FunctionApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
19136
19136
|
}>, z.core.$strip>;
|
|
19137
19137
|
declare const FunctionApiUpdateSchema: z.ZodObject<{
|
|
19138
19138
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19139
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19140
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19139
19141
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>>;
|
|
19140
19142
|
executeCode: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19141
19143
|
dependencies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
|
|
19142
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19143
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19144
19144
|
}, z.core.$strip>;
|
|
19145
19145
|
declare const FetchConfigSchema: z.ZodObject<{
|
|
19146
19146
|
url: z.ZodString;
|
|
@@ -19183,12 +19183,12 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
19183
19183
|
defaultValue: z.ZodOptional<z.ZodAny>;
|
|
19184
19184
|
credential: z.ZodOptional<z.ZodObject<{
|
|
19185
19185
|
id: z.ZodString;
|
|
19186
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
19187
19186
|
name: z.ZodString;
|
|
19187
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
19188
19188
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19189
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19190
19189
|
credentialStoreId: z.ZodString;
|
|
19191
19190
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19191
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19192
19192
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19193
19193
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19194
19194
|
type: z.ZodEnum<{
|
|
@@ -19215,9 +19215,9 @@ declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
|
19215
19215
|
tenantId: z.ZodString;
|
|
19216
19216
|
projectId: z.ZodString;
|
|
19217
19217
|
id: z.ZodOptional<z.ZodString>;
|
|
19218
|
+
agentId: z.ZodString;
|
|
19218
19219
|
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
19219
19220
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
19220
|
-
agentId: z.ZodString;
|
|
19221
19221
|
}, {
|
|
19222
19222
|
out: {};
|
|
19223
19223
|
in: {};
|
|
@@ -19226,9 +19226,9 @@ declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
|
19226
19226
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19227
19227
|
projectId: z.ZodOptional<z.ZodString>;
|
|
19228
19228
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19229
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
19229
19230
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
19230
19231
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
19231
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
19232
19232
|
}, {
|
|
19233
19233
|
out: {};
|
|
19234
19234
|
in: {};
|
|
@@ -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;
|
|
@@ -19739,15 +19739,15 @@ declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
|
19739
19739
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19740
19740
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19741
19741
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19742
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19743
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
19744
19742
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19745
|
-
|
|
19743
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
19746
19744
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
19747
19745
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
19748
19746
|
}, z.core.$strip>>>>>>;
|
|
19747
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
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;
|
|
@@ -20133,11 +20133,11 @@ declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
20133
20133
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20134
20134
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20135
20135
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20136
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20137
20136
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
20138
20137
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
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;
|
|
@@ -20523,11 +20523,11 @@ declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
20523
20523
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20524
20524
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20525
20525
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20526
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20527
20526
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
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";
|
|
@@ -21868,7 +21868,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
21868
21868
|
}, {}, {
|
|
21869
21869
|
length: 256;
|
|
21870
21870
|
}>;
|
|
21871
|
-
}, "
|
|
21871
|
+
}, "tenantId" | "projectId" | "id" | "type" | "name" | "description" | "createdAt" | "updatedAt" | "metadata" | "contextId" | "visibility" | "taskId" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
21872
21872
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
21873
21873
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21874
21874
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -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,33 +21921,33 @@ 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;
|
|
21933
21933
|
id: z.ZodString;
|
|
21934
21934
|
}>, z.core.$strip>;
|
|
21935
21935
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
21936
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21937
21936
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21938
|
-
|
|
21937
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21939
21938
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21940
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21941
21939
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21942
|
-
|
|
21943
|
-
|
|
21940
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21941
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21942
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
21944
21943
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21945
21944
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
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<{
|
|
@@ -22014,10 +22014,10 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
22014
22014
|
}, z.core.$strip>;
|
|
22015
22015
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
22016
22016
|
id: z.ZodString;
|
|
22017
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
22018
22017
|
name: z.ZodString;
|
|
22019
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22020
22018
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22019
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22020
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22021
22021
|
models: z.ZodOptional<z.ZodObject<{
|
|
22022
22022
|
base: z.ZodOptional<z.ZodObject<{
|
|
22023
22023
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -22067,19 +22067,19 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
22067
22067
|
}, z.core.$strip>]>>>;
|
|
22068
22068
|
}, z.core.$strip>;
|
|
22069
22069
|
declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
22070
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
22071
22070
|
name: z.ZodString;
|
|
22072
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22073
22071
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22072
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22073
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22074
22074
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22075
22075
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22076
22076
|
id: z.ZodString;
|
|
22077
22077
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22078
22078
|
id: z.ZodString;
|
|
22079
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
22080
22079
|
name: z.ZodString;
|
|
22081
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22082
22080
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22081
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22082
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22083
22083
|
models: z.ZodOptional<z.ZodObject<{
|
|
22084
22084
|
base: z.ZodOptional<z.ZodObject<{
|
|
22085
22085
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -22207,12 +22207,12 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
22207
22207
|
id: z.ZodString;
|
|
22208
22208
|
}>, z.core.$strip>>>;
|
|
22209
22209
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22210
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
22211
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
22212
22210
|
name: z.ZodString;
|
|
22213
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22214
22211
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22212
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22213
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22215
22214
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
22215
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
22216
22216
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
22217
22217
|
jmespath?: string;
|
|
22218
22218
|
objectTransformation?: Record<string, string>;
|
|
@@ -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>>>;
|
|
@@ -22383,10 +22383,10 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
22383
22383
|
}>;
|
|
22384
22384
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
22385
22385
|
id: z.ZodString;
|
|
22386
|
-
createdAt: z.ZodString;
|
|
22387
22386
|
name: z.ZodString;
|
|
22388
|
-
updatedAt: z.ZodString;
|
|
22389
22387
|
description: z.ZodNullable<z.ZodString>;
|
|
22388
|
+
createdAt: z.ZodString;
|
|
22389
|
+
updatedAt: z.ZodString;
|
|
22390
22390
|
models: z.ZodNullable<z.ZodObject<{
|
|
22391
22391
|
base: z.ZodObject<{
|
|
22392
22392
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -22483,19 +22483,19 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22483
22483
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
22484
22484
|
}, z.core.$strip>>;
|
|
22485
22485
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22486
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
22487
22486
|
name: z.ZodString;
|
|
22488
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22489
22487
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22488
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22489
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22490
22490
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22491
22491
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22492
22492
|
id: z.ZodString;
|
|
22493
22493
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22494
22494
|
id: z.ZodString;
|
|
22495
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
22496
22495
|
name: z.ZodString;
|
|
22497
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22498
22496
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22497
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22498
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22499
22499
|
models: z.ZodOptional<z.ZodObject<{
|
|
22500
22500
|
base: z.ZodOptional<z.ZodObject<{
|
|
22501
22501
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -22623,12 +22623,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22623
22623
|
id: z.ZodString;
|
|
22624
22624
|
}>, z.core.$strip>>>;
|
|
22625
22625
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22626
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
22627
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
22628
22626
|
name: z.ZodString;
|
|
22629
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22630
22627
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22628
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22629
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22631
22630
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
22631
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
22632
22632
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
22633
22633
|
jmespath?: string;
|
|
22634
22634
|
objectTransformation?: Record<string, string>;
|
|
@@ -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>>>;
|
|
@@ -22821,12 +22821,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22821
22821
|
}, z.core.$strip>>;
|
|
22822
22822
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22823
22823
|
id: z.ZodString;
|
|
22824
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
22825
22824
|
name: z.ZodString;
|
|
22825
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22826
22826
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22827
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22828
22827
|
credentialStoreId: z.ZodString;
|
|
22829
22828
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22829
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22830
22830
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22831
22831
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22832
22832
|
type: z.ZodEnum<{
|
|
@@ -22843,10 +22843,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22843
22843
|
}>;
|
|
22844
22844
|
declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
22845
22845
|
id: z.ZodString;
|
|
22846
|
-
createdAt: z.ZodString;
|
|
22847
22846
|
name: z.ZodString;
|
|
22848
|
-
updatedAt: z.ZodString;
|
|
22849
22847
|
description: z.ZodNullable<z.ZodString>;
|
|
22848
|
+
createdAt: z.ZodString;
|
|
22849
|
+
updatedAt: z.ZodString;
|
|
22850
22850
|
models: z.ZodNullable<z.ZodType<{
|
|
22851
22851
|
base?: {
|
|
22852
22852
|
model?: string | undefined;
|
|
@@ -22936,10 +22936,10 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
22936
22936
|
}, z.core.$strip>;
|
|
22937
22937
|
declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
22938
22938
|
id: z.ZodString;
|
|
22939
|
-
createdAt: z.ZodString;
|
|
22940
22939
|
name: z.ZodString;
|
|
22941
|
-
updatedAt: z.ZodString;
|
|
22942
22940
|
description: z.ZodNullable<z.ZodString>;
|
|
22941
|
+
createdAt: z.ZodString;
|
|
22942
|
+
updatedAt: z.ZodString;
|
|
22943
22943
|
models: z.ZodNullable<z.ZodType<{
|
|
22944
22944
|
base?: {
|
|
22945
22945
|
model?: string | undefined;
|
|
@@ -23035,18 +23035,18 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
23035
23035
|
}, z.core.$strip>;
|
|
23036
23036
|
declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
23037
23037
|
id: z.ZodString;
|
|
23038
|
-
createdAt: z.ZodString;
|
|
23039
23038
|
name: z.ZodString;
|
|
23040
|
-
updatedAt: z.ZodString;
|
|
23041
23039
|
description: z.ZodNullable<z.ZodString>;
|
|
23040
|
+
createdAt: z.ZodString;
|
|
23041
|
+
updatedAt: z.ZodString;
|
|
23042
23042
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
23043
23043
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
23044
23044
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23045
23045
|
id: z.ZodString;
|
|
23046
|
-
createdAt: z.ZodString;
|
|
23047
23046
|
name: z.ZodString;
|
|
23048
|
-
updatedAt: z.ZodString;
|
|
23049
23047
|
description: z.ZodNullable<z.ZodString>;
|
|
23048
|
+
createdAt: z.ZodString;
|
|
23049
|
+
updatedAt: z.ZodString;
|
|
23050
23050
|
models: z.ZodNullable<z.ZodType<{
|
|
23051
23051
|
base?: {
|
|
23052
23052
|
model?: string | undefined;
|
|
@@ -23242,10 +23242,10 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
23242
23242
|
}, z.core.$strip>;
|
|
23243
23243
|
declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
23244
23244
|
id: z.ZodString;
|
|
23245
|
-
createdAt: z.ZodString;
|
|
23246
23245
|
name: z.ZodString;
|
|
23247
|
-
updatedAt: z.ZodString;
|
|
23248
23246
|
description: z.ZodNullable<z.ZodString>;
|
|
23247
|
+
createdAt: z.ZodString;
|
|
23248
|
+
updatedAt: z.ZodString;
|
|
23249
23249
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
23250
23250
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
23251
23251
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
@@ -23355,10 +23355,10 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
23355
23355
|
prompt: z.ZodNullable<z.ZodString>;
|
|
23356
23356
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23357
23357
|
id: z.ZodString;
|
|
23358
|
-
createdAt: z.ZodString;
|
|
23359
23358
|
name: z.ZodString;
|
|
23360
|
-
updatedAt: z.ZodString;
|
|
23361
23359
|
description: z.ZodNullable<z.ZodString>;
|
|
23360
|
+
createdAt: z.ZodString;
|
|
23361
|
+
updatedAt: z.ZodString;
|
|
23362
23362
|
models: z.ZodNullable<z.ZodType<{
|
|
23363
23363
|
base?: {
|
|
23364
23364
|
model?: string | undefined;
|
|
@@ -23455,10 +23455,10 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
23455
23455
|
}, z.core.$strip>;
|
|
23456
23456
|
declare const FullProjectSelectSchema: z.ZodObject<{
|
|
23457
23457
|
id: z.ZodString;
|
|
23458
|
-
createdAt: z.ZodString;
|
|
23459
23458
|
name: z.ZodString;
|
|
23460
|
-
updatedAt: z.ZodString;
|
|
23461
23459
|
description: z.ZodNullable<z.ZodString>;
|
|
23460
|
+
createdAt: z.ZodString;
|
|
23461
|
+
updatedAt: z.ZodString;
|
|
23462
23462
|
models: z.ZodNullable<z.ZodObject<{
|
|
23463
23463
|
base: z.ZodObject<{
|
|
23464
23464
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -23479,18 +23479,18 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23479
23479
|
}, z.core.$strip>>;
|
|
23480
23480
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23481
23481
|
id: z.ZodString;
|
|
23482
|
-
createdAt: z.ZodString;
|
|
23483
23482
|
name: z.ZodString;
|
|
23484
|
-
updatedAt: z.ZodString;
|
|
23485
23483
|
description: z.ZodNullable<z.ZodString>;
|
|
23484
|
+
createdAt: z.ZodString;
|
|
23485
|
+
updatedAt: z.ZodString;
|
|
23486
23486
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
23487
23487
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
23488
23488
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23489
23489
|
id: z.ZodString;
|
|
23490
|
-
createdAt: z.ZodString;
|
|
23491
23490
|
name: z.ZodString;
|
|
23492
|
-
updatedAt: z.ZodString;
|
|
23493
23491
|
description: z.ZodNullable<z.ZodString>;
|
|
23492
|
+
createdAt: z.ZodString;
|
|
23493
|
+
updatedAt: z.ZodString;
|
|
23494
23494
|
models: z.ZodNullable<z.ZodType<{
|
|
23495
23495
|
base?: {
|
|
23496
23496
|
model?: string | undefined;
|
|
@@ -23807,12 +23807,12 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23807
23807
|
}, z.core.$strip>>;
|
|
23808
23808
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23809
23809
|
id: z.ZodString;
|
|
23810
|
-
createdAt: z.ZodString;
|
|
23811
23810
|
name: z.ZodString;
|
|
23811
|
+
createdAt: z.ZodString;
|
|
23812
23812
|
updatedAt: z.ZodString;
|
|
23813
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
23814
23813
|
credentialStoreId: z.ZodString;
|
|
23815
23814
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
23815
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
23816
23816
|
toolId: z.ZodNullable<z.ZodString>;
|
|
23817
23817
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
23818
23818
|
type: z.ZodEnum<{
|
|
@@ -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";
|
|
@@ -24368,10 +24368,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
24368
24368
|
}>;
|
|
24369
24369
|
declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
24370
24370
|
id: z.ZodString;
|
|
24371
|
-
createdAt: z.ZodString;
|
|
24372
24371
|
name: z.ZodString;
|
|
24373
|
-
updatedAt: z.ZodString;
|
|
24374
24372
|
description: z.ZodNullable<z.ZodString>;
|
|
24373
|
+
createdAt: z.ZodString;
|
|
24374
|
+
updatedAt: z.ZodString;
|
|
24375
24375
|
models: z.ZodNullable<z.ZodObject<{
|
|
24376
24376
|
base: z.ZodObject<{
|
|
24377
24377
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24513,12 +24513,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
24513
24513
|
}, z.core.$strip>>;
|
|
24514
24514
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24515
24515
|
id: z.ZodString;
|
|
24516
|
-
createdAt: z.ZodString;
|
|
24517
24516
|
name: z.ZodString;
|
|
24517
|
+
createdAt: z.ZodString;
|
|
24518
24518
|
updatedAt: z.ZodString;
|
|
24519
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
24520
24519
|
credentialStoreId: z.ZodString;
|
|
24521
24520
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
24521
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
24522
24522
|
toolId: z.ZodNullable<z.ZodString>;
|
|
24523
24523
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
24524
24524
|
type: z.ZodEnum<{
|
|
@@ -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";
|
|
@@ -25070,10 +25070,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25070
25070
|
}, z.core.$strip>>>;
|
|
25071
25071
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25072
25072
|
id: z.ZodString;
|
|
25073
|
-
createdAt: z.ZodString;
|
|
25074
25073
|
name: z.ZodString;
|
|
25075
|
-
updatedAt: z.ZodString;
|
|
25076
25074
|
description: z.ZodNullable<z.ZodString>;
|
|
25075
|
+
createdAt: z.ZodString;
|
|
25076
|
+
updatedAt: z.ZodString;
|
|
25077
25077
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25078
25078
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25079
25079
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
@@ -25183,10 +25183,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25183
25183
|
prompt: z.ZodNullable<z.ZodString>;
|
|
25184
25184
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25185
25185
|
id: z.ZodString;
|
|
25186
|
-
createdAt: z.ZodString;
|
|
25187
25186
|
name: z.ZodString;
|
|
25188
|
-
updatedAt: z.ZodString;
|
|
25189
25187
|
description: z.ZodNullable<z.ZodString>;
|
|
25188
|
+
createdAt: z.ZodString;
|
|
25189
|
+
updatedAt: z.ZodString;
|
|
25190
25190
|
models: z.ZodNullable<z.ZodType<{
|
|
25191
25191
|
base?: {
|
|
25192
25192
|
model?: string | undefined;
|
|
@@ -25288,10 +25288,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25288
25288
|
declare const ProjectResponse: z.ZodObject<{
|
|
25289
25289
|
data: z.ZodObject<{
|
|
25290
25290
|
id: z.ZodString;
|
|
25291
|
-
createdAt: z.ZodString;
|
|
25292
25291
|
name: z.ZodString;
|
|
25293
|
-
updatedAt: z.ZodString;
|
|
25294
25292
|
description: z.ZodNullable<z.ZodString>;
|
|
25293
|
+
createdAt: z.ZodString;
|
|
25294
|
+
updatedAt: z.ZodString;
|
|
25295
25295
|
models: z.ZodNullable<z.ZodObject<{
|
|
25296
25296
|
base: z.ZodObject<{
|
|
25297
25297
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25579,14 +25579,14 @@ declare const ContextConfigResponse: z.ZodObject<{
|
|
|
25579
25579
|
declare const ApiKeyResponse: z.ZodObject<{
|
|
25580
25580
|
data: z.ZodObject<{
|
|
25581
25581
|
id: z.ZodString;
|
|
25582
|
-
createdAt: z.ZodString;
|
|
25583
25582
|
name: z.ZodNullable<z.ZodString>;
|
|
25584
|
-
updatedAt: z.ZodString;
|
|
25585
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
25586
25583
|
agentId: z.ZodString;
|
|
25587
25584
|
publicId: z.ZodString;
|
|
25588
25585
|
keyPrefix: z.ZodString;
|
|
25589
25586
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
25587
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
25588
|
+
createdAt: z.ZodString;
|
|
25589
|
+
updatedAt: z.ZodString;
|
|
25590
25590
|
}, {
|
|
25591
25591
|
out: {};
|
|
25592
25592
|
in: {};
|
|
@@ -25595,12 +25595,12 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
25595
25595
|
declare const CredentialReferenceResponse: z.ZodObject<{
|
|
25596
25596
|
data: z.ZodObject<{
|
|
25597
25597
|
id: z.ZodString;
|
|
25598
|
-
createdAt: z.ZodString;
|
|
25599
25598
|
name: z.ZodString;
|
|
25599
|
+
createdAt: z.ZodString;
|
|
25600
25600
|
updatedAt: z.ZodString;
|
|
25601
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
25602
25601
|
credentialStoreId: z.ZodString;
|
|
25603
25602
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
25603
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
25604
25604
|
toolId: z.ZodNullable<z.ZodString>;
|
|
25605
25605
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
25606
25606
|
type: z.ZodEnum<{
|
|
@@ -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;
|
|
@@ -26274,19 +26274,19 @@ declare const ConversationResponse: z.ZodObject<{
|
|
|
26274
26274
|
agentId: z.ZodNullable<z.ZodString>;
|
|
26275
26275
|
activeSubAgentId: z.ZodString;
|
|
26276
26276
|
ref: z.ZodNullable<z.ZodType<{
|
|
26277
|
-
type: "
|
|
26277
|
+
type: "tag" | "commit" | "branch";
|
|
26278
26278
|
name: string;
|
|
26279
26279
|
hash: string;
|
|
26280
26280
|
}, {
|
|
26281
|
-
type: "
|
|
26281
|
+
type: "tag" | "commit" | "branch";
|
|
26282
26282
|
name: string;
|
|
26283
26283
|
hash: string;
|
|
26284
26284
|
}, z.core.$ZodTypeInternals<{
|
|
26285
|
-
type: "
|
|
26285
|
+
type: "tag" | "commit" | "branch";
|
|
26286
26286
|
name: string;
|
|
26287
26287
|
hash: string;
|
|
26288
26288
|
}, {
|
|
26289
|
-
type: "
|
|
26289
|
+
type: "tag" | "commit" | "branch";
|
|
26290
26290
|
name: string;
|
|
26291
26291
|
hash: string;
|
|
26292
26292
|
}>>>;
|
|
@@ -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;
|
|
@@ -26371,10 +26371,10 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
26371
26371
|
declare const ProjectListResponse: z.ZodObject<{
|
|
26372
26372
|
data: z.ZodArray<z.ZodObject<{
|
|
26373
26373
|
id: z.ZodString;
|
|
26374
|
-
createdAt: z.ZodString;
|
|
26375
26374
|
name: z.ZodString;
|
|
26376
|
-
updatedAt: z.ZodString;
|
|
26377
26375
|
description: z.ZodNullable<z.ZodString>;
|
|
26376
|
+
createdAt: z.ZodString;
|
|
26377
|
+
updatedAt: z.ZodString;
|
|
26378
26378
|
models: z.ZodNullable<z.ZodObject<{
|
|
26379
26379
|
base: z.ZodObject<{
|
|
26380
26380
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -26698,14 +26698,14 @@ declare const ContextConfigListResponse: z.ZodObject<{
|
|
|
26698
26698
|
declare const ApiKeyListResponse: z.ZodObject<{
|
|
26699
26699
|
data: z.ZodArray<z.ZodObject<{
|
|
26700
26700
|
id: z.ZodString;
|
|
26701
|
-
createdAt: z.ZodString;
|
|
26702
26701
|
name: z.ZodNullable<z.ZodString>;
|
|
26703
|
-
updatedAt: z.ZodString;
|
|
26704
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
26705
26702
|
agentId: z.ZodString;
|
|
26706
26703
|
publicId: z.ZodString;
|
|
26707
26704
|
keyPrefix: z.ZodString;
|
|
26708
26705
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
26706
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
26707
|
+
createdAt: z.ZodString;
|
|
26708
|
+
updatedAt: z.ZodString;
|
|
26709
26709
|
}, {
|
|
26710
26710
|
out: {};
|
|
26711
26711
|
in: {};
|
|
@@ -26720,12 +26720,12 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
26720
26720
|
declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
26721
26721
|
data: z.ZodArray<z.ZodObject<{
|
|
26722
26722
|
id: z.ZodString;
|
|
26723
|
-
createdAt: z.ZodString;
|
|
26724
26723
|
name: z.ZodString;
|
|
26724
|
+
createdAt: z.ZodString;
|
|
26725
26725
|
updatedAt: z.ZodString;
|
|
26726
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
26727
26726
|
credentialStoreId: z.ZodString;
|
|
26728
26727
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26728
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
26729
26729
|
toolId: z.ZodNullable<z.ZodString>;
|
|
26730
26730
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
26731
26731
|
type: z.ZodEnum<{
|
|
@@ -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;
|
|
@@ -27447,19 +27447,19 @@ declare const ConversationListResponse: z.ZodObject<{
|
|
|
27447
27447
|
agentId: z.ZodNullable<z.ZodString>;
|
|
27448
27448
|
activeSubAgentId: z.ZodString;
|
|
27449
27449
|
ref: z.ZodNullable<z.ZodType<{
|
|
27450
|
-
type: "
|
|
27450
|
+
type: "tag" | "commit" | "branch";
|
|
27451
27451
|
name: string;
|
|
27452
27452
|
hash: string;
|
|
27453
27453
|
}, {
|
|
27454
|
-
type: "
|
|
27454
|
+
type: "tag" | "commit" | "branch";
|
|
27455
27455
|
name: string;
|
|
27456
27456
|
hash: string;
|
|
27457
27457
|
}, z.core.$ZodTypeInternals<{
|
|
27458
|
-
type: "
|
|
27458
|
+
type: "tag" | "commit" | "branch";
|
|
27459
27459
|
name: string;
|
|
27460
27460
|
hash: string;
|
|
27461
27461
|
}, {
|
|
27462
|
-
type: "
|
|
27462
|
+
type: "tag" | "commit" | "branch";
|
|
27463
27463
|
name: string;
|
|
27464
27464
|
hash: string;
|
|
27465
27465
|
}>>>;
|
|
@@ -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;
|
|
@@ -27645,19 +27645,19 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
27645
27645
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
27646
27646
|
}, z.core.$strip>>;
|
|
27647
27647
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27648
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
27649
27648
|
name: z.ZodString;
|
|
27650
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
27651
27649
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27650
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
27651
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
27652
27652
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27653
27653
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27654
27654
|
id: z.ZodString;
|
|
27655
27655
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27656
27656
|
id: z.ZodString;
|
|
27657
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
27658
27657
|
name: z.ZodString;
|
|
27659
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
27660
27658
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27659
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
27660
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
27661
27661
|
models: z.ZodOptional<z.ZodObject<{
|
|
27662
27662
|
base: z.ZodOptional<z.ZodObject<{
|
|
27663
27663
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -27785,12 +27785,12 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
27785
27785
|
id: z.ZodString;
|
|
27786
27786
|
}>, z.core.$strip>>>;
|
|
27787
27787
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27788
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
27789
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
27790
27788
|
name: z.ZodString;
|
|
27791
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
27792
27789
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27790
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
27791
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
27793
27792
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
27793
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
27794
27794
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
27795
27795
|
jmespath?: string;
|
|
27796
27796
|
objectTransformation?: Record<string, string>;
|
|
@@ -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>>>;
|
|
@@ -27983,12 +27983,12 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
27983
27983
|
}, z.core.$strip>>;
|
|
27984
27984
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27985
27985
|
id: z.ZodString;
|
|
27986
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
27987
27986
|
name: z.ZodString;
|
|
27987
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
27988
27988
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
27989
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27990
27989
|
credentialStoreId: z.ZodString;
|
|
27991
27990
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
27991
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27992
27992
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27993
27993
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27994
27994
|
type: z.ZodEnum<{
|
|
@@ -28007,10 +28007,10 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
28007
28007
|
declare const FullProjectSelectResponse: z.ZodObject<{
|
|
28008
28008
|
data: z.ZodObject<{
|
|
28009
28009
|
id: z.ZodString;
|
|
28010
|
-
createdAt: z.ZodString;
|
|
28011
28010
|
name: z.ZodString;
|
|
28012
|
-
updatedAt: z.ZodString;
|
|
28013
28011
|
description: z.ZodNullable<z.ZodString>;
|
|
28012
|
+
createdAt: z.ZodString;
|
|
28013
|
+
updatedAt: z.ZodString;
|
|
28014
28014
|
models: z.ZodNullable<z.ZodObject<{
|
|
28015
28015
|
base: z.ZodObject<{
|
|
28016
28016
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -28031,18 +28031,18 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28031
28031
|
}, z.core.$strip>>;
|
|
28032
28032
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28033
28033
|
id: z.ZodString;
|
|
28034
|
-
createdAt: z.ZodString;
|
|
28035
28034
|
name: z.ZodString;
|
|
28036
|
-
updatedAt: z.ZodString;
|
|
28037
28035
|
description: z.ZodNullable<z.ZodString>;
|
|
28036
|
+
createdAt: z.ZodString;
|
|
28037
|
+
updatedAt: z.ZodString;
|
|
28038
28038
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28039
28039
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
28040
28040
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28041
28041
|
id: z.ZodString;
|
|
28042
|
-
createdAt: z.ZodString;
|
|
28043
28042
|
name: z.ZodString;
|
|
28044
|
-
updatedAt: z.ZodString;
|
|
28045
28043
|
description: z.ZodNullable<z.ZodString>;
|
|
28044
|
+
createdAt: z.ZodString;
|
|
28045
|
+
updatedAt: z.ZodString;
|
|
28046
28046
|
models: z.ZodNullable<z.ZodType<{
|
|
28047
28047
|
base?: {
|
|
28048
28048
|
model?: string | undefined;
|
|
@@ -28359,12 +28359,12 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28359
28359
|
}, z.core.$strip>>;
|
|
28360
28360
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28361
28361
|
id: z.ZodString;
|
|
28362
|
-
createdAt: z.ZodString;
|
|
28363
28362
|
name: z.ZodString;
|
|
28363
|
+
createdAt: z.ZodString;
|
|
28364
28364
|
updatedAt: z.ZodString;
|
|
28365
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
28366
28365
|
credentialStoreId: z.ZodString;
|
|
28367
28366
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28367
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
28368
28368
|
toolId: z.ZodNullable<z.ZodString>;
|
|
28369
28369
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
28370
28370
|
type: z.ZodEnum<{
|
|
@@ -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";
|
|
@@ -28922,10 +28922,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28922
28922
|
declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
28923
28923
|
data: z.ZodObject<{
|
|
28924
28924
|
id: z.ZodString;
|
|
28925
|
-
createdAt: z.ZodString;
|
|
28926
28925
|
name: z.ZodString;
|
|
28927
|
-
updatedAt: z.ZodString;
|
|
28928
28926
|
description: z.ZodNullable<z.ZodString>;
|
|
28927
|
+
createdAt: z.ZodString;
|
|
28928
|
+
updatedAt: z.ZodString;
|
|
28929
28929
|
models: z.ZodNullable<z.ZodObject<{
|
|
28930
28930
|
base: z.ZodObject<{
|
|
28931
28931
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -29067,12 +29067,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29067
29067
|
}, z.core.$strip>>;
|
|
29068
29068
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29069
29069
|
id: z.ZodString;
|
|
29070
|
-
createdAt: z.ZodString;
|
|
29071
29070
|
name: z.ZodString;
|
|
29071
|
+
createdAt: z.ZodString;
|
|
29072
29072
|
updatedAt: z.ZodString;
|
|
29073
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
29074
29073
|
credentialStoreId: z.ZodString;
|
|
29075
29074
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29075
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
29076
29076
|
toolId: z.ZodNullable<z.ZodString>;
|
|
29077
29077
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
29078
29078
|
type: z.ZodEnum<{
|
|
@@ -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";
|
|
@@ -29624,10 +29624,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29624
29624
|
}, z.core.$strip>>>;
|
|
29625
29625
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29626
29626
|
id: z.ZodString;
|
|
29627
|
-
createdAt: z.ZodString;
|
|
29628
29627
|
name: z.ZodString;
|
|
29629
|
-
updatedAt: z.ZodString;
|
|
29630
29628
|
description: z.ZodNullable<z.ZodString>;
|
|
29629
|
+
createdAt: z.ZodString;
|
|
29630
|
+
updatedAt: z.ZodString;
|
|
29631
29631
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
29632
29632
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
29633
29633
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
@@ -29737,10 +29737,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29737
29737
|
prompt: z.ZodNullable<z.ZodString>;
|
|
29738
29738
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29739
29739
|
id: z.ZodString;
|
|
29740
|
-
createdAt: z.ZodString;
|
|
29741
29740
|
name: z.ZodString;
|
|
29742
|
-
updatedAt: z.ZodString;
|
|
29743
29741
|
description: z.ZodNullable<z.ZodString>;
|
|
29742
|
+
createdAt: z.ZodString;
|
|
29743
|
+
updatedAt: z.ZodString;
|
|
29744
29744
|
models: z.ZodNullable<z.ZodType<{
|
|
29745
29745
|
base?: {
|
|
29746
29746
|
model?: string | undefined;
|
|
@@ -29842,19 +29842,19 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29842
29842
|
}, z.core.$strip>;
|
|
29843
29843
|
declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
29844
29844
|
data: z.ZodObject<{
|
|
29845
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
29846
29845
|
name: z.ZodString;
|
|
29847
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
29848
29846
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29847
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
29848
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
29849
29849
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29850
29850
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29851
29851
|
id: z.ZodString;
|
|
29852
29852
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29853
29853
|
id: z.ZodString;
|
|
29854
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
29855
29854
|
name: z.ZodString;
|
|
29856
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
29857
29855
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29856
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
29857
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
29858
29858
|
models: z.ZodOptional<z.ZodObject<{
|
|
29859
29859
|
base: z.ZodOptional<z.ZodObject<{
|
|
29860
29860
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -29982,12 +29982,12 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
29982
29982
|
id: z.ZodString;
|
|
29983
29983
|
}>, z.core.$strip>>>;
|
|
29984
29984
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29985
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
29986
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
29987
29985
|
name: z.ZodString;
|
|
29988
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
29989
29986
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29987
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
29988
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
29990
29989
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
29990
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
29991
29991
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
29992
29992
|
jmespath?: string;
|
|
29993
29993
|
objectTransformation?: Record<string, string>;
|
|
@@ -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>>>;
|
|
@@ -30049,18 +30049,18 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
30049
30049
|
declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
30050
30050
|
data: z.ZodObject<{
|
|
30051
30051
|
id: z.ZodString;
|
|
30052
|
-
createdAt: z.ZodString;
|
|
30053
30052
|
name: z.ZodString;
|
|
30054
|
-
updatedAt: z.ZodString;
|
|
30055
30053
|
description: z.ZodNullable<z.ZodString>;
|
|
30054
|
+
createdAt: z.ZodString;
|
|
30055
|
+
updatedAt: z.ZodString;
|
|
30056
30056
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
30057
30057
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
30058
30058
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30059
30059
|
id: z.ZodString;
|
|
30060
|
-
createdAt: z.ZodString;
|
|
30061
30060
|
name: z.ZodString;
|
|
30062
|
-
updatedAt: z.ZodString;
|
|
30063
30061
|
description: z.ZodNullable<z.ZodString>;
|
|
30062
|
+
createdAt: z.ZodString;
|
|
30063
|
+
updatedAt: z.ZodString;
|
|
30064
30064
|
models: z.ZodNullable<z.ZodType<{
|
|
30065
30065
|
base?: {
|
|
30066
30066
|
model?: string | undefined;
|
|
@@ -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";
|