@inkeep/agents-core 0.50.4 → 0.50.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/auth-schema.d.ts +83 -83
- package/dist/auth/auth-validation-schemas.d.ts +131 -131
- package/dist/auth/auth.d.ts +53 -53
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/data-access/manage/agents.d.ts +5 -5
- package/dist/data-access/manage/artifactComponents.d.ts +2 -2
- package/dist/data-access/manage/contextConfigs.d.ts +8 -8
- package/dist/data-access/manage/functionTools.d.ts +4 -4
- package/dist/data-access/manage/scope-helpers.d.ts +5 -5
- package/dist/data-access/manage/skills.d.ts +6 -6
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgents.d.ts +3 -3
- package/dist/data-access/manage/tools.d.ts +15 -15
- package/dist/data-access/runtime/apiKeys.d.ts +8 -8
- package/dist/data-access/runtime/conversations.d.ts +24 -24
- package/dist/data-access/runtime/messages.d.ts +15 -15
- package/dist/data-access/runtime/tasks.d.ts +6 -6
- package/dist/db/manage/manage-schema.d.ts +92 -92
- package/dist/db/runtime/runtime-schema.d.ts +28 -28
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas.d.ts +414 -414
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ import { JsonSchemaProperty } from "./json-schemas.js";
|
|
|
4
4
|
import "../index.js";
|
|
5
5
|
import { z } from "@hono/zod-openapi";
|
|
6
6
|
import * as drizzle_orm_pg_core211 from "drizzle-orm/pg-core";
|
|
7
|
-
import * as
|
|
7
|
+
import * as drizzle_zod19 from "drizzle-zod";
|
|
8
8
|
|
|
9
9
|
//#region src/validation/schemas.d.ts
|
|
10
10
|
declare const StringRecordSchema: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -130,7 +130,7 @@ type OmitAgentScope<T> = Omit<T, 'tenantId' | 'projectId' | 'agentId'>;
|
|
|
130
130
|
type OmitTenantScope<T> = Omit<T, 'tenantId'>;
|
|
131
131
|
type OmitTimestamps<T> = Omit<T, 'createdAt' | 'updatedAt'>;
|
|
132
132
|
type OmitGeneratedFields<T> = Omit<T, 'id' | 'createdAt' | 'updatedAt'>;
|
|
133
|
-
declare const SubAgentSelectSchema:
|
|
133
|
+
declare const SubAgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
134
134
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
135
135
|
name: "created_at";
|
|
136
136
|
tableName: "sub_agents";
|
|
@@ -381,7 +381,7 @@ declare const SubAgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
381
381
|
}, {}, {
|
|
382
382
|
length: 256;
|
|
383
383
|
}>;
|
|
384
|
-
},
|
|
384
|
+
}, drizzle_zod19.BuildRefine<{
|
|
385
385
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
386
386
|
name: "created_at";
|
|
387
387
|
tableName: "sub_agents";
|
|
@@ -819,8 +819,8 @@ declare const SubAgentApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
|
819
819
|
}, z.core.$strip>>;
|
|
820
820
|
}>, z.core.$strip>;
|
|
821
821
|
declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
822
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
823
822
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
823
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
824
824
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
825
825
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
826
826
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -850,7 +850,7 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
850
850
|
}>>>>>>;
|
|
851
851
|
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
852
852
|
}, z.core.$strip>;
|
|
853
|
-
declare const SubAgentRelationSelectSchema:
|
|
853
|
+
declare const SubAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
854
854
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
855
855
|
name: "created_at";
|
|
856
856
|
tableName: "sub_agent_relations";
|
|
@@ -1018,7 +1018,7 @@ declare const SubAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
1018
1018
|
}, {}, {
|
|
1019
1019
|
length: 256;
|
|
1020
1020
|
}>;
|
|
1021
|
-
},
|
|
1021
|
+
}, drizzle_zod19.BuildRefine<{
|
|
1022
1022
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
1023
1023
|
name: "created_at";
|
|
1024
1024
|
tableName: "sub_agent_relations";
|
|
@@ -1289,7 +1289,7 @@ declare const ExternalSubAgentRelationApiInsertSchema: z.ZodObject<OmitProjectSc
|
|
|
1289
1289
|
sourceSubAgentId: z.ZodString;
|
|
1290
1290
|
externalSubAgentId: z.ZodString;
|
|
1291
1291
|
}>, z.core.$strip>;
|
|
1292
|
-
declare const AgentSelectSchema:
|
|
1292
|
+
declare const AgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
1293
1293
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
1294
1294
|
name: "created_at";
|
|
1295
1295
|
tableName: "agent";
|
|
@@ -1587,7 +1587,7 @@ declare const AgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
1587
1587
|
}, {}, {
|
|
1588
1588
|
length: 256;
|
|
1589
1589
|
}>;
|
|
1590
|
-
},
|
|
1590
|
+
}, drizzle_zod19.BuildRefine<{
|
|
1591
1591
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
1592
1592
|
name: "created_at";
|
|
1593
1593
|
tableName: "agent";
|
|
@@ -1886,7 +1886,7 @@ declare const AgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
1886
1886
|
length: 256;
|
|
1887
1887
|
}>;
|
|
1888
1888
|
}, undefined>, undefined>;
|
|
1889
|
-
declare const AgentInsertSchema:
|
|
1889
|
+
declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
1890
1890
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
1891
1891
|
name: "created_at";
|
|
1892
1892
|
tableName: "agent";
|
|
@@ -2184,7 +2184,7 @@ declare const AgentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
2184
2184
|
}, {}, {
|
|
2185
2185
|
length: 256;
|
|
2186
2186
|
}>;
|
|
2187
|
-
},
|
|
2187
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
2188
2188
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
2189
2189
|
name: "created_at";
|
|
2190
2190
|
tableName: "agent";
|
|
@@ -2482,7 +2482,7 @@ declare const AgentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
2482
2482
|
}, {}, {
|
|
2483
2483
|
length: 256;
|
|
2484
2484
|
}>;
|
|
2485
|
-
}, "
|
|
2485
|
+
}, "name" | "id" | "createdAt" | "updatedAt" | "projectId" | "tenantId" | "description" | "defaultSubAgentId" | "contextConfigId" | "models" | "prompt" | "statusUpdates" | "stopWhen">, undefined>, undefined>;
|
|
2486
2486
|
declare const AgentUpdateSchema: z.ZodObject<{
|
|
2487
2487
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2488
2488
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2878,8 +2878,8 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2878
2878
|
id: z.ZodString;
|
|
2879
2879
|
}, z.core.$strip>;
|
|
2880
2880
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
2881
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2882
2881
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2882
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2883
2883
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2884
2884
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2885
2885
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -3273,18 +3273,18 @@ type ComponentJoin = z.infer<typeof ComponentJoinSchema>;
|
|
|
3273
3273
|
*/
|
|
3274
3274
|
type SignatureValidationOptions = z.infer<typeof SignatureValidationOptionsSchema>;
|
|
3275
3275
|
declare const TriggerInvocationStatusEnum: z.ZodEnum<{
|
|
3276
|
-
pending: "pending";
|
|
3277
3276
|
success: "success";
|
|
3277
|
+
pending: "pending";
|
|
3278
3278
|
failed: "failed";
|
|
3279
3279
|
}>;
|
|
3280
3280
|
declare const TriggerSelectSchema: z.ZodObject<{
|
|
3281
3281
|
createdAt: z.ZodString;
|
|
3282
3282
|
updatedAt: z.ZodString;
|
|
3283
3283
|
enabled: z.ZodBoolean;
|
|
3284
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
3285
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
3284
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
3285
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
3286
3286
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
3287
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
3287
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
3288
3288
|
name: z.ZodString;
|
|
3289
3289
|
description: z.ZodNullable<z.ZodString>;
|
|
3290
3290
|
agentId: z.ZodString;
|
|
@@ -3341,7 +3341,7 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3341
3341
|
out: {};
|
|
3342
3342
|
in: {};
|
|
3343
3343
|
}>;
|
|
3344
|
-
declare const TriggerInsertSchema:
|
|
3344
|
+
declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
3345
3345
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
3346
3346
|
name: "created_at";
|
|
3347
3347
|
tableName: "triggers";
|
|
@@ -3673,7 +3673,7 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
3673
3673
|
}, {}, {
|
|
3674
3674
|
length: 256;
|
|
3675
3675
|
}>;
|
|
3676
|
-
},
|
|
3676
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
3677
3677
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
3678
3678
|
name: "created_at";
|
|
3679
3679
|
tableName: "triggers";
|
|
@@ -4005,16 +4005,16 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
4005
4005
|
}, {}, {
|
|
4006
4006
|
length: 256;
|
|
4007
4007
|
}>;
|
|
4008
|
-
}, "
|
|
4008
|
+
}, "name" | "id" | "createdAt" | "updatedAt" | "agentId" | "projectId" | "tenantId" | "description" | "enabled" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification">, undefined>, undefined>;
|
|
4009
4009
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
4010
4010
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4011
4011
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4012
|
-
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4013
|
-
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4012
|
+
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4013
|
+
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4014
4014
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4015
|
-
authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4015
|
+
authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4016
4016
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4017
|
-
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4017
|
+
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4018
4018
|
name: z.ZodOptional<z.ZodString>;
|
|
4019
4019
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4020
4020
|
agentId: z.ZodOptional<z.ZodString>;
|
|
@@ -4030,10 +4030,10 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4030
4030
|
createdAt: z.ZodString;
|
|
4031
4031
|
updatedAt: z.ZodString;
|
|
4032
4032
|
enabled: z.ZodBoolean;
|
|
4033
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
4034
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
4033
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4034
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4035
4035
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4036
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
4036
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4037
4037
|
name: z.ZodString;
|
|
4038
4038
|
description: z.ZodNullable<z.ZodString>;
|
|
4039
4039
|
agentId: z.ZodString;
|
|
@@ -4091,25 +4091,25 @@ declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
|
4091
4091
|
name: z.ZodString;
|
|
4092
4092
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4093
4093
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4094
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4095
4094
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4096
|
-
|
|
4097
|
-
|
|
4095
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4096
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4097
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4098
4098
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4099
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4099
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4100
4100
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4101
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4101
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4102
4102
|
id: z.ZodOptional<z.ZodString>;
|
|
4103
4103
|
}, z.core.$strip>;
|
|
4104
4104
|
declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
4105
4105
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4106
4106
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4107
|
-
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4108
|
-
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4107
|
+
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4108
|
+
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4109
4109
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4110
|
-
authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4110
|
+
authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4111
4111
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4112
|
-
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4112
|
+
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4113
4113
|
name: z.ZodOptional<z.ZodString>;
|
|
4114
4114
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4115
4115
|
agentId: z.ZodOptional<z.ZodString>;
|
|
@@ -4122,16 +4122,16 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4122
4122
|
in: {};
|
|
4123
4123
|
}>;
|
|
4124
4124
|
declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
4125
|
-
id: z.ZodString;
|
|
4126
4125
|
name: z.ZodString;
|
|
4126
|
+
id: z.ZodString;
|
|
4127
4127
|
createdAt: z.ZodString;
|
|
4128
4128
|
updatedAt: z.ZodString;
|
|
4129
|
-
enabled: z.ZodBoolean;
|
|
4130
4129
|
description: z.ZodNullable<z.ZodString>;
|
|
4131
|
-
|
|
4132
|
-
|
|
4130
|
+
enabled: z.ZodBoolean;
|
|
4131
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4132
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4133
4133
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4134
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
4134
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4135
4135
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4136
4136
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4137
4137
|
algorithm: z.ZodEnum<{
|
|
@@ -4180,7 +4180,7 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4180
4180
|
}, z.core.$strip>>>;
|
|
4181
4181
|
webhookUrl: z.ZodString;
|
|
4182
4182
|
}, z.core.$strip>;
|
|
4183
|
-
declare const TriggerInvocationSelectSchema:
|
|
4183
|
+
declare const TriggerInvocationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
4184
4184
|
triggerId: drizzle_orm_pg_core211.PgColumn<{
|
|
4185
4185
|
name: "trigger_id";
|
|
4186
4186
|
tableName: "trigger_invocations";
|
|
@@ -4382,7 +4382,7 @@ declare const TriggerInvocationSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
4382
4382
|
}, {}, {
|
|
4383
4383
|
length: 256;
|
|
4384
4384
|
}>;
|
|
4385
|
-
},
|
|
4385
|
+
}, drizzle_zod19.BuildRefine<{
|
|
4386
4386
|
triggerId: drizzle_orm_pg_core211.PgColumn<{
|
|
4387
4387
|
name: "trigger_id";
|
|
4388
4388
|
tableName: "trigger_invocations";
|
|
@@ -4585,7 +4585,7 @@ declare const TriggerInvocationSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
4585
4585
|
length: 256;
|
|
4586
4586
|
}>;
|
|
4587
4587
|
}, undefined>, undefined>;
|
|
4588
|
-
declare const TriggerInvocationInsertSchema:
|
|
4588
|
+
declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
4589
4589
|
triggerId: drizzle_orm_pg_core211.PgColumn<{
|
|
4590
4590
|
name: "trigger_id";
|
|
4591
4591
|
tableName: "trigger_invocations";
|
|
@@ -4787,7 +4787,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<"insert",
|
|
|
4787
4787
|
}, {}, {
|
|
4788
4788
|
length: 256;
|
|
4789
4789
|
}>;
|
|
4790
|
-
},
|
|
4790
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
4791
4791
|
triggerId: drizzle_orm_pg_core211.PgColumn<{
|
|
4792
4792
|
name: "trigger_id";
|
|
4793
4793
|
tableName: "trigger_invocations";
|
|
@@ -4989,13 +4989,13 @@ declare const TriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<"insert",
|
|
|
4989
4989
|
}, {}, {
|
|
4990
4990
|
length: 256;
|
|
4991
4991
|
}>;
|
|
4992
|
-
}, "id" | "createdAt" | "
|
|
4992
|
+
}, "id" | "createdAt" | "agentId" | "projectId" | "tenantId" | "status" | "triggerId" | "conversationId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
4993
4993
|
declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
4994
4994
|
triggerId: z.ZodOptional<z.ZodString>;
|
|
4995
4995
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4996
4996
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4997
|
-
requestPayload: z.ZodOptional<z.ZodType<
|
|
4998
|
-
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4997
|
+
requestPayload: z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4998
|
+
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4999
4999
|
errorMessage: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5000
5000
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5001
5001
|
agentId: z.ZodOptional<z.ZodString>;
|
|
@@ -5010,8 +5010,8 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
5010
5010
|
triggerId: z.ZodString;
|
|
5011
5011
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
5012
5012
|
status: z.ZodString;
|
|
5013
|
-
requestPayload: z.ZodType<
|
|
5014
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
5013
|
+
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
5014
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
5015
5015
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
5016
5016
|
createdAt: z.ZodString;
|
|
5017
5017
|
agentId: z.ZodString;
|
|
@@ -5024,8 +5024,8 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
5024
5024
|
status: z.ZodOptional<z.ZodString>;
|
|
5025
5025
|
triggerId: z.ZodString;
|
|
5026
5026
|
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5027
|
-
requestPayload: z.ZodType<
|
|
5028
|
-
transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5027
|
+
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
5028
|
+
transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
5029
5029
|
errorMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5030
5030
|
id: z.ZodString;
|
|
5031
5031
|
}, z.core.$strip>;
|
|
@@ -5035,8 +5035,8 @@ declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
5035
5035
|
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5036
5036
|
triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5037
5037
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5038
|
-
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<
|
|
5039
|
-
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5038
|
+
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
5039
|
+
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
5040
5040
|
errorMessage: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5041
5041
|
}, z.core.$strip>;
|
|
5042
5042
|
declare const CronExpressionSchema: z.ZodString;
|
|
@@ -5062,7 +5062,7 @@ declare const ScheduledTriggerSelectSchema: z.ZodObject<{
|
|
|
5062
5062
|
out: {};
|
|
5063
5063
|
in: {};
|
|
5064
5064
|
}>;
|
|
5065
|
-
declare const ScheduledTriggerInsertSchema:
|
|
5065
|
+
declare const ScheduledTriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
5066
5066
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
5067
5067
|
name: "created_at";
|
|
5068
5068
|
tableName: "scheduled_triggers";
|
|
@@ -5368,7 +5368,7 @@ declare const ScheduledTriggerInsertSchema: drizzle_zod15.BuildSchema<"insert",
|
|
|
5368
5368
|
}, {}, {
|
|
5369
5369
|
length: 256;
|
|
5370
5370
|
}>;
|
|
5371
|
-
},
|
|
5371
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
5372
5372
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
5373
5373
|
name: "created_at";
|
|
5374
5374
|
tableName: "scheduled_triggers";
|
|
@@ -5674,14 +5674,14 @@ declare const ScheduledTriggerInsertSchema: drizzle_zod15.BuildSchema<"insert",
|
|
|
5674
5674
|
}, {}, {
|
|
5675
5675
|
length: 256;
|
|
5676
5676
|
}>;
|
|
5677
|
-
}, "
|
|
5677
|
+
}, "name" | "id" | "createdAt" | "updatedAt" | "agentId" | "projectId" | "tenantId" | "description" | "enabled" | "messageTemplate" | "cronExpression" | "cronTimezone" | "runAt" | "payload" | "maxRetries" | "retryDelaySeconds" | "timeoutSeconds">, undefined>, undefined>;
|
|
5678
5678
|
declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
5679
5679
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5680
5680
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5681
5681
|
cronExpression: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5682
5682
|
cronTimezone: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5683
5683
|
runAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5684
|
-
payload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5684
|
+
payload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
5685
5685
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5686
5686
|
maxRetries: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
5687
5687
|
retryDelaySeconds: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -5720,13 +5720,13 @@ declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
5720
5720
|
name: z.ZodString;
|
|
5721
5721
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5722
5722
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5723
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5724
5723
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5724
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5725
5725
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5726
5726
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5727
5727
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5728
5728
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5729
|
-
payload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5729
|
+
payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
5730
5730
|
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
5731
5731
|
retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
5732
5732
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5736,13 +5736,13 @@ declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
|
5736
5736
|
name: z.ZodString;
|
|
5737
5737
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5738
5738
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5739
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5740
5739
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5740
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5741
5741
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5742
5742
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5743
5743
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5744
5744
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5745
|
-
payload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5745
|
+
payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
5746
5746
|
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
5747
5747
|
retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
5748
5748
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5754,7 +5754,7 @@ declare const ScheduledTriggerApiUpdateSchema: z.ZodObject<{
|
|
|
5754
5754
|
cronExpression: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5755
5755
|
cronTimezone: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5756
5756
|
runAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5757
|
-
payload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5757
|
+
payload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
5758
5758
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5759
5759
|
maxRetries: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
5760
5760
|
retryDelaySeconds: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -5776,7 +5776,7 @@ type ScheduledTriggerUpdate = z.infer<typeof ScheduledTriggerUpdateSchema>;
|
|
|
5776
5776
|
type ScheduledTriggerApiInsert = z.infer<typeof ScheduledTriggerApiInsertSchema>;
|
|
5777
5777
|
type ScheduledTriggerApiSelect = z.infer<typeof ScheduledTriggerApiSelectSchema>;
|
|
5778
5778
|
type ScheduledTriggerApiUpdate = z.infer<typeof ScheduledTriggerApiUpdateSchema>;
|
|
5779
|
-
declare const ScheduledWorkflowSelectSchema:
|
|
5779
|
+
declare const ScheduledWorkflowSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
5780
5780
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
5781
5781
|
name: "created_at";
|
|
5782
5782
|
tableName: "scheduled_workflows";
|
|
@@ -5980,7 +5980,7 @@ declare const ScheduledWorkflowSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
5980
5980
|
}, {}, {
|
|
5981
5981
|
length: 256;
|
|
5982
5982
|
}>;
|
|
5983
|
-
},
|
|
5983
|
+
}, drizzle_zod19.BuildRefine<{
|
|
5984
5984
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
5985
5985
|
name: "created_at";
|
|
5986
5986
|
tableName: "scheduled_workflows";
|
|
@@ -6185,7 +6185,7 @@ declare const ScheduledWorkflowSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
6185
6185
|
length: 256;
|
|
6186
6186
|
}>;
|
|
6187
6187
|
}, undefined>, undefined>;
|
|
6188
|
-
declare const ScheduledWorkflowInsertSchema:
|
|
6188
|
+
declare const ScheduledWorkflowInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
6189
6189
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
6190
6190
|
name: "created_at";
|
|
6191
6191
|
tableName: "scheduled_workflows";
|
|
@@ -6389,7 +6389,7 @@ declare const ScheduledWorkflowInsertSchema: drizzle_zod15.BuildSchema<"insert",
|
|
|
6389
6389
|
}, {}, {
|
|
6390
6390
|
length: 256;
|
|
6391
6391
|
}>;
|
|
6392
|
-
},
|
|
6392
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
6393
6393
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
6394
6394
|
name: "created_at";
|
|
6395
6395
|
tableName: "scheduled_workflows";
|
|
@@ -6593,7 +6593,7 @@ declare const ScheduledWorkflowInsertSchema: drizzle_zod15.BuildSchema<"insert",
|
|
|
6593
6593
|
}, {}, {
|
|
6594
6594
|
length: 256;
|
|
6595
6595
|
}>;
|
|
6596
|
-
}, "
|
|
6596
|
+
}, "name" | "id" | "createdAt" | "updatedAt" | "agentId" | "projectId" | "tenantId" | "description" | "status" | "workflowRunId" | "scheduledTriggerId">, undefined>, undefined>;
|
|
6597
6597
|
declare const ScheduledWorkflowUpdateSchema: z.ZodObject<{
|
|
6598
6598
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6599
6599
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -6627,8 +6627,8 @@ declare const ScheduledWorkflowApiInsertSchema: z.ZodObject<{
|
|
|
6627
6627
|
name: z.ZodString;
|
|
6628
6628
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6629
6629
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6630
|
-
status: z.ZodOptional<z.ZodString>;
|
|
6631
6630
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6631
|
+
status: z.ZodOptional<z.ZodString>;
|
|
6632
6632
|
workflowRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6633
6633
|
scheduledTriggerId: z.ZodString;
|
|
6634
6634
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -6684,7 +6684,7 @@ declare const ScheduledTriggerInvocationSelectSchema: z.ZodObject<{
|
|
|
6684
6684
|
out: {};
|
|
6685
6685
|
in: {};
|
|
6686
6686
|
}>;
|
|
6687
|
-
declare const ScheduledTriggerInvocationInsertSchema:
|
|
6687
|
+
declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
6688
6688
|
scheduledTriggerId: drizzle_orm_pg_core211.PgColumn<{
|
|
6689
6689
|
name: "scheduled_trigger_id";
|
|
6690
6690
|
tableName: "scheduled_trigger_invocations";
|
|
@@ -6942,7 +6942,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<
|
|
|
6942
6942
|
}, {}, {
|
|
6943
6943
|
length: 256;
|
|
6944
6944
|
}>;
|
|
6945
|
-
},
|
|
6945
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
6946
6946
|
scheduledTriggerId: drizzle_orm_pg_core211.PgColumn<{
|
|
6947
6947
|
name: "scheduled_trigger_id";
|
|
6948
6948
|
tableName: "scheduled_trigger_invocations";
|
|
@@ -7200,14 +7200,14 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<
|
|
|
7200
7200
|
}, {}, {
|
|
7201
7201
|
length: 256;
|
|
7202
7202
|
}>;
|
|
7203
|
-
}, "id" | "createdAt" | "
|
|
7203
|
+
}, "id" | "createdAt" | "agentId" | "projectId" | "tenantId" | "status" | "scheduledTriggerId" | "conversationIds" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
|
|
7204
7204
|
declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
7205
7205
|
scheduledTriggerId: z.ZodOptional<z.ZodString>;
|
|
7206
7206
|
status: z.ZodOptional<z.ZodString>;
|
|
7207
7207
|
scheduledFor: z.ZodOptional<z.ZodString>;
|
|
7208
7208
|
startedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
7209
7209
|
completedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
7210
|
-
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
7210
|
+
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
7211
7211
|
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>;
|
|
7212
7212
|
attemptNumber: z.ZodOptional<z.ZodOptional<z.ZodInt>>;
|
|
7213
7213
|
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
@@ -7246,11 +7246,11 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
7246
7246
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7247
7247
|
status: z.ZodString;
|
|
7248
7248
|
scheduledTriggerId: z.ZodString;
|
|
7249
|
+
conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
7249
7250
|
scheduledFor: z.ZodString;
|
|
7250
7251
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7251
7252
|
completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7252
|
-
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
7253
|
-
conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
7253
|
+
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
7254
7254
|
attemptNumber: z.ZodOptional<z.ZodInt>;
|
|
7255
7255
|
idempotencyKey: z.ZodString;
|
|
7256
7256
|
id: z.ZodString;
|
|
@@ -7260,11 +7260,11 @@ declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
7260
7260
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7261
7261
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7262
7262
|
scheduledTriggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7263
|
+
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
|
|
7263
7264
|
scheduledFor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7264
7265
|
startedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7265
7266
|
completedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7266
|
-
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
7267
|
-
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
|
|
7267
|
+
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
7268
7268
|
attemptNumber: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodInt>>>;
|
|
7269
7269
|
idempotencyKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7270
7270
|
}, z.core.$strip>;
|
|
@@ -7272,7 +7272,7 @@ type ScheduledTriggerInvocation = z.infer<typeof ScheduledTriggerInvocationSelec
|
|
|
7272
7272
|
type ScheduledTriggerInvocationInsert = z.infer<typeof ScheduledTriggerInvocationInsertSchema>;
|
|
7273
7273
|
type ScheduledTriggerInvocationUpdate = z.infer<typeof ScheduledTriggerInvocationUpdateSchema>;
|
|
7274
7274
|
type ScheduledTriggerInvocationStatus = z.infer<typeof ScheduledTriggerInvocationStatusEnum>;
|
|
7275
|
-
declare const TaskSelectSchema:
|
|
7275
|
+
declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
7276
7276
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
7277
7277
|
name: "created_at";
|
|
7278
7278
|
tableName: "tasks";
|
|
@@ -7486,7 +7486,7 @@ declare const TaskSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
7486
7486
|
}, {}, {
|
|
7487
7487
|
length: 256;
|
|
7488
7488
|
}>;
|
|
7489
|
-
},
|
|
7489
|
+
}, drizzle_zod19.BuildRefine<{
|
|
7490
7490
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
7491
7491
|
name: "created_at";
|
|
7492
7492
|
tableName: "tasks";
|
|
@@ -7806,6 +7806,9 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
7806
7806
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7807
7807
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7808
7808
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7809
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7810
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
7811
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7809
7812
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7810
7813
|
type: z.ZodEnum<{
|
|
7811
7814
|
tag: "tag";
|
|
@@ -7815,14 +7818,11 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
7815
7818
|
name: z.ZodString;
|
|
7816
7819
|
hash: z.ZodString;
|
|
7817
7820
|
}, z.core.$strip>>>;
|
|
7818
|
-
|
|
7819
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7820
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7821
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7821
7822
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7822
7823
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7823
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7824
7824
|
}, z.core.$strip>;
|
|
7825
|
-
declare const TaskRelationSelectSchema:
|
|
7825
|
+
declare const TaskRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
7826
7826
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
7827
7827
|
name: "created_at";
|
|
7828
7828
|
tableName: "task_relations";
|
|
@@ -7971,7 +7971,7 @@ declare const TaskRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
7971
7971
|
}, {}, {
|
|
7972
7972
|
length: 256;
|
|
7973
7973
|
}>;
|
|
7974
|
-
},
|
|
7974
|
+
}, drizzle_zod19.BuildRefine<{
|
|
7975
7975
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
7976
7976
|
name: "created_at";
|
|
7977
7977
|
tableName: "task_relations";
|
|
@@ -8197,7 +8197,7 @@ declare const McpToolDefinitionSchema: z.ZodObject<{
|
|
|
8197
8197
|
description: z.ZodOptional<z.ZodString>;
|
|
8198
8198
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8199
8199
|
}, z.core.$strip>;
|
|
8200
|
-
declare const ToolSelectSchema:
|
|
8200
|
+
declare const ToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
8201
8201
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
8202
8202
|
name: "created_at";
|
|
8203
8203
|
tableName: "tools";
|
|
@@ -8477,7 +8477,7 @@ declare const ToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
8477
8477
|
}, {}, {
|
|
8478
8478
|
length: 256;
|
|
8479
8479
|
}>;
|
|
8480
|
-
},
|
|
8480
|
+
}, drizzle_zod19.BuildRefine<{
|
|
8481
8481
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
8482
8482
|
name: "created_at";
|
|
8483
8483
|
tableName: "tools";
|
|
@@ -8803,7 +8803,7 @@ declare const ToolInsertSchema: z.ZodObject<{
|
|
|
8803
8803
|
out: {};
|
|
8804
8804
|
in: {};
|
|
8805
8805
|
}>;
|
|
8806
|
-
declare const ConversationSelectSchema:
|
|
8806
|
+
declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
8807
8807
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
8808
8808
|
name: "created_at";
|
|
8809
8809
|
tableName: "conversations";
|
|
@@ -9032,7 +9032,7 @@ declare const ConversationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
9032
9032
|
}, {}, {
|
|
9033
9033
|
length: 256;
|
|
9034
9034
|
}>;
|
|
9035
|
-
},
|
|
9035
|
+
}, drizzle_zod19.BuildRefine<{
|
|
9036
9036
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
9037
9037
|
name: "created_at";
|
|
9038
9038
|
tableName: "conversations";
|
|
@@ -9371,6 +9371,11 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
9371
9371
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9372
9372
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9373
9373
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9374
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9375
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9376
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9377
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
9378
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9374
9379
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
9375
9380
|
type: z.ZodEnum<{
|
|
9376
9381
|
tag: "tag";
|
|
@@ -9380,15 +9385,10 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
9380
9385
|
name: z.ZodString;
|
|
9381
9386
|
hash: z.ZodString;
|
|
9382
9387
|
}, z.core.$strip>>>;
|
|
9383
|
-
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9384
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
9385
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9386
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9387
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9388
9388
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9389
9389
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9390
9390
|
}, z.core.$strip>;
|
|
9391
|
-
declare const MessageSelectSchema:
|
|
9391
|
+
declare const MessageSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
9392
9392
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
9393
9393
|
name: "created_at";
|
|
9394
9394
|
tableName: "messages";
|
|
@@ -9784,7 +9784,7 @@ declare const MessageSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
9784
9784
|
}, {}, {
|
|
9785
9785
|
length: 256;
|
|
9786
9786
|
}>;
|
|
9787
|
-
},
|
|
9787
|
+
}, drizzle_zod19.BuildRefine<{
|
|
9788
9788
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
9789
9789
|
name: "created_at";
|
|
9790
9790
|
tableName: "messages";
|
|
@@ -10284,23 +10284,23 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
10284
10284
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10285
10285
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10286
10286
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
10287
|
-
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10288
10287
|
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
10289
|
-
|
|
10288
|
+
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10290
10289
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10291
10290
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10292
10291
|
fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10293
10292
|
toExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10293
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10294
|
+
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10295
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10294
10296
|
fromTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10295
10297
|
toTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10296
10298
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10297
10299
|
messageType: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10298
|
-
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10299
10300
|
parentMessageId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10300
|
-
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10301
10301
|
a2aSessionId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10302
10302
|
}, z.core.$strip>;
|
|
10303
|
-
declare const ContextCacheSelectSchema:
|
|
10303
|
+
declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
10304
10304
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
10305
10305
|
name: "created_at";
|
|
10306
10306
|
tableName: "context_cache";
|
|
@@ -10550,7 +10550,7 @@ declare const ContextCacheSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
10550
10550
|
}, {}, {
|
|
10551
10551
|
length: 256;
|
|
10552
10552
|
}>;
|
|
10553
|
-
},
|
|
10553
|
+
}, drizzle_zod19.BuildRefine<{
|
|
10554
10554
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
10555
10555
|
name: "created_at";
|
|
10556
10556
|
tableName: "context_cache";
|
|
@@ -10807,7 +10807,7 @@ declare const ContextCacheInsertSchema: z.ZodObject<{
|
|
|
10807
10807
|
conversationId: z.ZodString;
|
|
10808
10808
|
contextConfigId: z.ZodString;
|
|
10809
10809
|
contextVariableKey: z.ZodString;
|
|
10810
|
-
value: z.ZodType<
|
|
10810
|
+
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
10811
10811
|
requestHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10812
10812
|
fetchedAt: z.ZodOptional<z.ZodString>;
|
|
10813
10813
|
fetchSource: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -10833,7 +10833,7 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
10833
10833
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
10834
10834
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
10835
10835
|
contextVariableKey: z.ZodOptional<z.ZodString>;
|
|
10836
|
-
value: z.ZodOptional<z.ZodType<
|
|
10836
|
+
value: z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
10837
10837
|
requestHash: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10838
10838
|
fetchedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10839
10839
|
fetchSource: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -10876,7 +10876,7 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
10876
10876
|
name: string;
|
|
10877
10877
|
hash: string;
|
|
10878
10878
|
}>>>;
|
|
10879
|
-
value: z.ZodType<
|
|
10879
|
+
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
10880
10880
|
requestHash: z.ZodNullable<z.ZodString>;
|
|
10881
10881
|
fetchedAt: z.ZodString;
|
|
10882
10882
|
fetchSource: z.ZodNullable<z.ZodString>;
|
|
@@ -10890,7 +10890,7 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
10890
10890
|
conversationId: z.ZodString;
|
|
10891
10891
|
contextConfigId: z.ZodString;
|
|
10892
10892
|
contextVariableKey: z.ZodString;
|
|
10893
|
-
value: z.ZodType<
|
|
10893
|
+
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
10894
10894
|
requestHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10895
10895
|
fetchedAt: z.ZodOptional<z.ZodString>;
|
|
10896
10896
|
fetchSource: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -10908,9 +10908,11 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
10908
10908
|
}, z.core.$strip>;
|
|
10909
10909
|
}>, z.core.$strip>;
|
|
10910
10910
|
declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
10911
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
10911
10912
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10912
10913
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10913
10914
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10915
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10914
10916
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
10915
10917
|
type: z.ZodEnum<{
|
|
10916
10918
|
tag: "tag";
|
|
@@ -10920,15 +10922,13 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
10920
10922
|
name: z.ZodString;
|
|
10921
10923
|
hash: z.ZodString;
|
|
10922
10924
|
}, z.core.$strip>>>;
|
|
10923
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
10924
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10925
10925
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10926
10926
|
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10927
10927
|
requestHash: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10928
10928
|
fetchedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10929
10929
|
fetchSource: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10930
10930
|
}, z.core.$strip>;
|
|
10931
|
-
declare const DatasetRunSelectSchema:
|
|
10931
|
+
declare const DatasetRunSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
10932
10932
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
10933
10933
|
name: "created_at";
|
|
10934
10934
|
tableName: "dataset_run";
|
|
@@ -11071,7 +11071,7 @@ declare const DatasetRunSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
11071
11071
|
}, {}, {
|
|
11072
11072
|
length: 256;
|
|
11073
11073
|
}>;
|
|
11074
|
-
},
|
|
11074
|
+
}, drizzle_zod19.BuildRefine<{
|
|
11075
11075
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11076
11076
|
name: "created_at";
|
|
11077
11077
|
tableName: "dataset_run";
|
|
@@ -11255,17 +11255,17 @@ declare const DatasetRunApiInsertSchema: z.ZodObject<{
|
|
|
11255
11255
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11256
11256
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11257
11257
|
datasetId: z.ZodString;
|
|
11258
|
-
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11259
11258
|
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11259
|
+
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11260
11260
|
}, z.core.$strip>;
|
|
11261
11261
|
declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
11262
11262
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11263
11263
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11264
11264
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11265
|
-
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
11266
11265
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
11266
|
+
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
11267
11267
|
}, z.core.$strip>;
|
|
11268
|
-
declare const DatasetRunConversationRelationSelectSchema:
|
|
11268
|
+
declare const DatasetRunConversationRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
11269
11269
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11270
11270
|
name: "created_at";
|
|
11271
11271
|
tableName: "dataset_run_conversation_relations";
|
|
@@ -11408,7 +11408,7 @@ declare const DatasetRunConversationRelationSelectSchema: drizzle_zod15.BuildSch
|
|
|
11408
11408
|
}, {}, {
|
|
11409
11409
|
length: 256;
|
|
11410
11410
|
}>;
|
|
11411
|
-
},
|
|
11411
|
+
}, drizzle_zod19.BuildRefine<{
|
|
11412
11412
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11413
11413
|
name: "created_at";
|
|
11414
11414
|
tableName: "dataset_run_conversation_relations";
|
|
@@ -11602,7 +11602,7 @@ declare const DatasetRunConversationRelationApiUpdateSchema: z.ZodObject<{
|
|
|
11602
11602
|
datasetRunId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11603
11603
|
datasetItemId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11604
11604
|
}, z.core.$strip>;
|
|
11605
|
-
declare const EvaluationResultSelectSchema:
|
|
11605
|
+
declare const EvaluationResultSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
11606
11606
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11607
11607
|
name: "created_at";
|
|
11608
11608
|
tableName: "evaluation_result";
|
|
@@ -11764,7 +11764,7 @@ declare const EvaluationResultSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
11764
11764
|
}, {}, {
|
|
11765
11765
|
length: 256;
|
|
11766
11766
|
}>;
|
|
11767
|
-
},
|
|
11767
|
+
}, drizzle_zod19.BuildRefine<{
|
|
11768
11768
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11769
11769
|
name: "created_at";
|
|
11770
11770
|
tableName: "evaluation_result";
|
|
@@ -11970,19 +11970,19 @@ declare const EvaluationResultApiInsertSchema: z.ZodObject<{
|
|
|
11970
11970
|
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
11971
11971
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11972
11972
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11973
|
-
conversationId: z.ZodString;
|
|
11974
11973
|
evaluatorId: z.ZodString;
|
|
11974
|
+
conversationId: z.ZodString;
|
|
11975
11975
|
evaluationRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11976
11976
|
}, z.core.$strip>;
|
|
11977
11977
|
declare const EvaluationResultApiUpdateSchema: z.ZodObject<{
|
|
11978
11978
|
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
11979
11979
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11980
11980
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11981
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11982
11981
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11982
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11983
11983
|
evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
11984
11984
|
}, z.core.$strip>;
|
|
11985
|
-
declare const EvaluationRunSelectSchema:
|
|
11985
|
+
declare const EvaluationRunSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
11986
11986
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11987
11987
|
name: "created_at";
|
|
11988
11988
|
tableName: "evaluation_run";
|
|
@@ -12108,7 +12108,7 @@ declare const EvaluationRunSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
12108
12108
|
}, {}, {
|
|
12109
12109
|
length: 256;
|
|
12110
12110
|
}>;
|
|
12111
|
-
},
|
|
12111
|
+
}, drizzle_zod19.BuildRefine<{
|
|
12112
12112
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
12113
12113
|
name: "created_at";
|
|
12114
12114
|
tableName: "evaluation_run";
|
|
@@ -12271,16 +12271,16 @@ declare const EvaluationRunApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
12271
12271
|
declare const EvaluationRunApiInsertSchema: z.ZodObject<{
|
|
12272
12272
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12273
12273
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12274
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12275
12274
|
evaluationRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12275
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12276
12276
|
}, z.core.$strip>;
|
|
12277
12277
|
declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
12278
12278
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12279
12279
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12280
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12281
12280
|
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12281
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12282
12282
|
}, z.core.$strip>;
|
|
12283
|
-
declare const EvaluationRunConfigSelectSchema:
|
|
12283
|
+
declare const EvaluationRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
12284
12284
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
12285
12285
|
name: "created_at";
|
|
12286
12286
|
tableName: "evaluation_run_config";
|
|
@@ -12425,7 +12425,7 @@ declare const EvaluationRunConfigSelectSchema: drizzle_zod15.BuildSchema<"select
|
|
|
12425
12425
|
}, {}, {
|
|
12426
12426
|
length: 256;
|
|
12427
12427
|
}>;
|
|
12428
|
-
},
|
|
12428
|
+
}, drizzle_zod19.BuildRefine<{
|
|
12429
12429
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
12430
12430
|
name: "created_at";
|
|
12431
12431
|
tableName: "evaluation_run_config";
|
|
@@ -12624,15 +12624,15 @@ declare const EvaluationRunConfigApiUpdateSchema: z.ZodObject<{
|
|
|
12624
12624
|
suiteConfigIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12625
12625
|
}, z.core.$strip>;
|
|
12626
12626
|
declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
12627
|
-
id: z.ZodString;
|
|
12628
12627
|
name: z.ZodString;
|
|
12628
|
+
id: z.ZodString;
|
|
12629
12629
|
createdAt: z.ZodString;
|
|
12630
12630
|
updatedAt: z.ZodString;
|
|
12631
12631
|
description: z.ZodNullable<z.ZodString>;
|
|
12632
12632
|
isActive: z.ZodBoolean;
|
|
12633
12633
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
12634
12634
|
}, z.core.$strip>;
|
|
12635
|
-
declare const EvaluationJobConfigSelectSchema:
|
|
12635
|
+
declare const EvaluationJobConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
12636
12636
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
12637
12637
|
name: "created_at";
|
|
12638
12638
|
tableName: "evaluation_job_config";
|
|
@@ -12757,7 +12757,7 @@ declare const EvaluationJobConfigSelectSchema: drizzle_zod15.BuildSchema<"select
|
|
|
12757
12757
|
}, {}, {
|
|
12758
12758
|
length: 256;
|
|
12759
12759
|
}>;
|
|
12760
|
-
},
|
|
12760
|
+
}, drizzle_zod19.BuildRefine<{
|
|
12761
12761
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
12762
12762
|
name: "created_at";
|
|
12763
12763
|
tableName: "evaluation_job_config";
|
|
@@ -13064,7 +13064,7 @@ declare const EvaluationJobConfigApiUpdateSchema: z.ZodObject<{
|
|
|
13064
13064
|
} | undefined;
|
|
13065
13065
|
}>>>>>>>;
|
|
13066
13066
|
}, z.core.$strip>;
|
|
13067
|
-
declare const EvaluationSuiteConfigSelectSchema:
|
|
13067
|
+
declare const EvaluationSuiteConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
13068
13068
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
13069
13069
|
name: "created_at";
|
|
13070
13070
|
tableName: "evaluation_suite_config";
|
|
@@ -13192,7 +13192,7 @@ declare const EvaluationSuiteConfigSelectSchema: drizzle_zod15.BuildSchema<"sele
|
|
|
13192
13192
|
}, {}, {
|
|
13193
13193
|
length: 256;
|
|
13194
13194
|
}>;
|
|
13195
|
-
},
|
|
13195
|
+
}, drizzle_zod19.BuildRefine<{
|
|
13196
13196
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
13197
13197
|
name: "created_at";
|
|
13198
13198
|
tableName: "evaluation_suite_config";
|
|
@@ -13368,7 +13368,7 @@ declare const EvaluationSuiteConfigApiUpdateSchema: z.ZodObject<{
|
|
|
13368
13368
|
sampleRate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>>;
|
|
13369
13369
|
evaluatorIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13370
13370
|
}, z.core.$strip>;
|
|
13371
|
-
declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema:
|
|
13371
|
+
declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
13372
13372
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
13373
13373
|
name: "created_at";
|
|
13374
13374
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
@@ -13498,7 +13498,7 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: driz
|
|
|
13498
13498
|
}, {}, {
|
|
13499
13499
|
length: 256;
|
|
13500
13500
|
}>;
|
|
13501
|
-
},
|
|
13501
|
+
}, drizzle_zod19.BuildRefine<{
|
|
13502
13502
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
13503
13503
|
name: "created_at";
|
|
13504
13504
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
@@ -13665,16 +13665,16 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiSelectSchema: z
|
|
|
13665
13665
|
declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiInsertSchema: z.ZodObject<{
|
|
13666
13666
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13667
13667
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13668
|
-
evaluationRunConfigId: z.ZodString;
|
|
13669
13668
|
evaluationSuiteConfigId: z.ZodString;
|
|
13669
|
+
evaluationRunConfigId: z.ZodString;
|
|
13670
13670
|
}, z.core.$strip>;
|
|
13671
13671
|
declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiUpdateSchema: z.ZodObject<{
|
|
13672
13672
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13673
13673
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13674
|
-
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13675
13674
|
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13675
|
+
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13676
13676
|
}, z.core.$strip>;
|
|
13677
|
-
declare const EvaluationJobConfigEvaluatorRelationSelectSchema:
|
|
13677
|
+
declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
13678
13678
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
13679
13679
|
name: "created_at";
|
|
13680
13680
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
@@ -13804,7 +13804,7 @@ declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod15.Bu
|
|
|
13804
13804
|
}, {}, {
|
|
13805
13805
|
length: 256;
|
|
13806
13806
|
}>;
|
|
13807
|
-
},
|
|
13807
|
+
}, drizzle_zod19.BuildRefine<{
|
|
13808
13808
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
13809
13809
|
name: "created_at";
|
|
13810
13810
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
@@ -13971,16 +13971,16 @@ declare const EvaluationJobConfigEvaluatorRelationApiSelectSchema: z.ZodObject<O
|
|
|
13971
13971
|
declare const EvaluationJobConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
13972
13972
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13973
13973
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13974
|
-
evaluationJobConfigId: z.ZodString;
|
|
13975
13974
|
evaluatorId: z.ZodString;
|
|
13975
|
+
evaluationJobConfigId: z.ZodString;
|
|
13976
13976
|
}, z.core.$strip>;
|
|
13977
13977
|
declare const EvaluationJobConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
|
|
13978
13978
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13979
13979
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13980
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13981
13980
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13981
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13982
13982
|
}, z.core.$strip>;
|
|
13983
|
-
declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema:
|
|
13983
|
+
declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
13984
13984
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
13985
13985
|
name: "created_at";
|
|
13986
13986
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
@@ -14110,7 +14110,7 @@ declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod15.
|
|
|
14110
14110
|
}, {}, {
|
|
14111
14111
|
length: 256;
|
|
14112
14112
|
}>;
|
|
14113
|
-
},
|
|
14113
|
+
}, drizzle_zod19.BuildRefine<{
|
|
14114
14114
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
14115
14115
|
name: "created_at";
|
|
14116
14116
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
@@ -14277,16 +14277,16 @@ declare const EvaluationSuiteConfigEvaluatorRelationApiSelectSchema: z.ZodObject
|
|
|
14277
14277
|
declare const EvaluationSuiteConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
14278
14278
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14279
14279
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14280
|
-
evaluatorId: z.ZodString;
|
|
14281
14280
|
evaluationSuiteConfigId: z.ZodString;
|
|
14281
|
+
evaluatorId: z.ZodString;
|
|
14282
14282
|
}, z.core.$strip>;
|
|
14283
14283
|
declare const EvaluationSuiteConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
|
|
14284
14284
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14285
14285
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14286
|
-
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14287
14286
|
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14287
|
+
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14288
14288
|
}, z.core.$strip>;
|
|
14289
|
-
declare const EvaluatorSelectSchema:
|
|
14289
|
+
declare const EvaluatorSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
14290
14290
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
14291
14291
|
name: "created_at";
|
|
14292
14292
|
tableName: "evaluator";
|
|
@@ -14494,7 +14494,7 @@ declare const EvaluatorSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
14494
14494
|
}, {}, {
|
|
14495
14495
|
length: 256;
|
|
14496
14496
|
}>;
|
|
14497
|
-
},
|
|
14497
|
+
}, drizzle_zod19.BuildRefine<{
|
|
14498
14498
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
14499
14499
|
name: "created_at";
|
|
14500
14500
|
tableName: "evaluator";
|
|
@@ -14788,7 +14788,6 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
14788
14788
|
name: z.ZodString;
|
|
14789
14789
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14790
14790
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14791
|
-
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
14792
14791
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14793
14792
|
model: z.ZodType<{
|
|
14794
14793
|
model?: string | undefined;
|
|
@@ -14804,13 +14803,13 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
14804
14803
|
providerOptions?: Record<string, any> | undefined;
|
|
14805
14804
|
}>>;
|
|
14806
14805
|
prompt: z.ZodString;
|
|
14806
|
+
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
14807
14807
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
|
|
14808
14808
|
}, z.core.$strip>;
|
|
14809
14809
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
14810
14810
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14811
14811
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14812
14812
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14813
|
-
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
14814
14813
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14815
14814
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
14816
14815
|
model?: string | undefined;
|
|
@@ -14826,9 +14825,10 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
14826
14825
|
providerOptions?: Record<string, any> | undefined;
|
|
14827
14826
|
}>>>>;
|
|
14828
14827
|
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14828
|
+
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
14829
14829
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
|
|
14830
14830
|
}, z.core.$strip>;
|
|
14831
|
-
declare const DatasetSelectSchema:
|
|
14831
|
+
declare const DatasetSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
14832
14832
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
14833
14833
|
name: "created_at";
|
|
14834
14834
|
tableName: "dataset";
|
|
@@ -14939,7 +14939,7 @@ declare const DatasetSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
14939
14939
|
}, {}, {
|
|
14940
14940
|
length: 256;
|
|
14941
14941
|
}>;
|
|
14942
|
-
},
|
|
14942
|
+
}, drizzle_zod19.BuildRefine<{
|
|
14943
14943
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
14944
14944
|
name: "created_at";
|
|
14945
14945
|
tableName: "dataset";
|
|
@@ -15091,7 +15091,7 @@ declare const DatasetApiUpdateSchema: z.ZodObject<{
|
|
|
15091
15091
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15092
15092
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15093
15093
|
}, z.core.$strip>;
|
|
15094
|
-
declare const DatasetItemSelectSchema:
|
|
15094
|
+
declare const DatasetItemSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
15095
15095
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
15096
15096
|
name: "created_at";
|
|
15097
15097
|
tableName: "dataset_item";
|
|
@@ -15279,7 +15279,7 @@ declare const DatasetItemSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
15279
15279
|
}, {}, {
|
|
15280
15280
|
length: 256;
|
|
15281
15281
|
}>;
|
|
15282
|
-
},
|
|
15282
|
+
}, drizzle_zod19.BuildRefine<{
|
|
15283
15283
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
15284
15284
|
name: "created_at";
|
|
15285
15285
|
tableName: "dataset_item";
|
|
@@ -15850,7 +15850,7 @@ declare const TriggerEvaluationJobSchema: z.ZodObject<{
|
|
|
15850
15850
|
}, z.core.$strip>>;
|
|
15851
15851
|
}, z.core.$strip>>>;
|
|
15852
15852
|
}, z.core.$strip>;
|
|
15853
|
-
declare const DatasetRunConfigSelectSchema:
|
|
15853
|
+
declare const DatasetRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
15854
15854
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
15855
15855
|
name: "created_at";
|
|
15856
15856
|
tableName: "dataset_run_config";
|
|
@@ -15997,7 +15997,7 @@ declare const DatasetRunConfigSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
15997
15997
|
}, {}, {
|
|
15998
15998
|
length: 256;
|
|
15999
15999
|
}>;
|
|
16000
|
-
},
|
|
16000
|
+
}, drizzle_zod19.BuildRefine<{
|
|
16001
16001
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
16002
16002
|
name: "created_at";
|
|
16003
16003
|
tableName: "dataset_run_config";
|
|
@@ -16195,7 +16195,7 @@ declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
|
16195
16195
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16196
16196
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16197
16197
|
}, z.core.$strip>;
|
|
16198
|
-
declare const DatasetRunConfigAgentRelationSelectSchema:
|
|
16198
|
+
declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
16199
16199
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
16200
16200
|
name: "created_at";
|
|
16201
16201
|
tableName: "dataset_run_config_agent_relations";
|
|
@@ -16325,7 +16325,7 @@ declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod15.BuildSche
|
|
|
16325
16325
|
}, {}, {
|
|
16326
16326
|
length: 256;
|
|
16327
16327
|
}>;
|
|
16328
|
-
},
|
|
16328
|
+
}, drizzle_zod19.BuildRefine<{
|
|
16329
16329
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
16330
16330
|
name: "created_at";
|
|
16331
16331
|
tableName: "dataset_run_config_agent_relations";
|
|
@@ -16501,20 +16501,20 @@ declare const SkillSelectSchema: z.ZodObject<{
|
|
|
16501
16501
|
}>;
|
|
16502
16502
|
declare const SkillInsertSchema: z.ZodObject<{
|
|
16503
16503
|
name: z.ZodString;
|
|
16504
|
-
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
16505
16504
|
projectId: z.ZodString;
|
|
16506
16505
|
tenantId: z.ZodString;
|
|
16507
16506
|
description: z.ZodString;
|
|
16507
|
+
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
16508
16508
|
content: z.ZodString;
|
|
16509
16509
|
}, {
|
|
16510
16510
|
out: {};
|
|
16511
16511
|
in: {};
|
|
16512
16512
|
}>;
|
|
16513
16513
|
declare const SkillUpdateSchema: z.ZodObject<{
|
|
16514
|
-
metadata: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
16515
16514
|
projectId: z.ZodOptional<z.ZodString>;
|
|
16516
16515
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
16517
16516
|
description: z.ZodOptional<z.ZodString>;
|
|
16517
|
+
metadata: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
16518
16518
|
content: z.ZodOptional<z.ZodString>;
|
|
16519
16519
|
}, {
|
|
16520
16520
|
out: {};
|
|
@@ -16533,18 +16533,18 @@ declare const SkillApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
16533
16533
|
}>, z.core.$strip>;
|
|
16534
16534
|
declare const SkillApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
16535
16535
|
name: z.ZodString;
|
|
16536
|
-
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
16537
16536
|
projectId: z.ZodString;
|
|
16538
16537
|
tenantId: z.ZodString;
|
|
16539
16538
|
description: z.ZodString;
|
|
16539
|
+
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
16540
16540
|
content: z.ZodString;
|
|
16541
16541
|
}>, z.core.$strip>;
|
|
16542
16542
|
declare const SkillApiUpdateSchema: z.ZodObject<{
|
|
16543
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>>;
|
|
16544
16543
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16544
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>>;
|
|
16545
16545
|
content: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16546
16546
|
}, z.core.$strip>;
|
|
16547
|
-
declare const DataComponentSelectSchema:
|
|
16547
|
+
declare const DataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
16548
16548
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
16549
16549
|
name: "created_at";
|
|
16550
16550
|
tableName: "data_components";
|
|
@@ -16730,7 +16730,7 @@ declare const DataComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
16730
16730
|
}, {}, {
|
|
16731
16731
|
length: 256;
|
|
16732
16732
|
}>;
|
|
16733
|
-
},
|
|
16733
|
+
}, drizzle_zod19.BuildRefine<{
|
|
16734
16734
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
16735
16735
|
name: "created_at";
|
|
16736
16736
|
tableName: "data_components";
|
|
@@ -17130,7 +17130,7 @@ declare const DataComponentApiUpdateSchema: z.ZodObject<{
|
|
|
17130
17130
|
description: z.ZodOptional<z.ZodString>;
|
|
17131
17131
|
}, z.core.$loose>;
|
|
17132
17132
|
}, z.core.$strip>;
|
|
17133
|
-
declare const SubAgentDataComponentSelectSchema:
|
|
17133
|
+
declare const SubAgentDataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
17134
17134
|
dataComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
17135
17135
|
name: "data_component_id";
|
|
17136
17136
|
tableName: "sub_agent_data_components";
|
|
@@ -17262,7 +17262,7 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod15.BuildSchema<"sele
|
|
|
17262
17262
|
}, {}, {
|
|
17263
17263
|
length: 256;
|
|
17264
17264
|
}>;
|
|
17265
|
-
},
|
|
17265
|
+
}, drizzle_zod19.BuildRefine<{
|
|
17266
17266
|
dataComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
17267
17267
|
name: "data_component_id";
|
|
17268
17268
|
tableName: "sub_agent_data_components";
|
|
@@ -17395,7 +17395,7 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod15.BuildSchema<"sele
|
|
|
17395
17395
|
length: 256;
|
|
17396
17396
|
}>;
|
|
17397
17397
|
}, undefined>, undefined>;
|
|
17398
|
-
declare const SubAgentDataComponentInsertSchema:
|
|
17398
|
+
declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
17399
17399
|
dataComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
17400
17400
|
name: "data_component_id";
|
|
17401
17401
|
tableName: "sub_agent_data_components";
|
|
@@ -17527,7 +17527,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod15.BuildSchema<"inse
|
|
|
17527
17527
|
}, {}, {
|
|
17528
17528
|
length: 256;
|
|
17529
17529
|
}>;
|
|
17530
|
-
},
|
|
17530
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
17531
17531
|
dataComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
17532
17532
|
name: "data_component_id";
|
|
17533
17533
|
tableName: "sub_agent_data_components";
|
|
@@ -17695,7 +17695,7 @@ declare const SubAgentDataComponentApiUpdateSchema: z.ZodObject<{
|
|
|
17695
17695
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17696
17696
|
dataComponentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17697
17697
|
}, z.core.$strip>;
|
|
17698
|
-
declare const ArtifactComponentSelectSchema:
|
|
17698
|
+
declare const ArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
17699
17699
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
17700
17700
|
name: "created_at";
|
|
17701
17701
|
tableName: "artifact_components";
|
|
@@ -17881,7 +17881,7 @@ declare const ArtifactComponentSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
17881
17881
|
}, {}, {
|
|
17882
17882
|
length: 256;
|
|
17883
17883
|
}>;
|
|
17884
|
-
},
|
|
17884
|
+
}, drizzle_zod19.BuildRefine<{
|
|
17885
17885
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
17886
17886
|
name: "created_at";
|
|
17887
17887
|
tableName: "artifact_components";
|
|
@@ -18256,8 +18256,8 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
18256
18256
|
in: {};
|
|
18257
18257
|
}>;
|
|
18258
18258
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
18259
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18260
18259
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18260
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18261
18261
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18262
18262
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18263
18263
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -18304,7 +18304,7 @@ declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
|
18304
18304
|
mockData: Record<string, unknown>;
|
|
18305
18305
|
}>>>>>>;
|
|
18306
18306
|
}, z.core.$strip>;
|
|
18307
|
-
declare const SubAgentArtifactComponentSelectSchema:
|
|
18307
|
+
declare const SubAgentArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
18308
18308
|
artifactComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
18309
18309
|
name: "artifact_component_id";
|
|
18310
18310
|
tableName: "sub_agent_artifact_components";
|
|
@@ -18436,7 +18436,7 @@ declare const SubAgentArtifactComponentSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
18436
18436
|
}, {}, {
|
|
18437
18437
|
length: 256;
|
|
18438
18438
|
}>;
|
|
18439
|
-
},
|
|
18439
|
+
}, drizzle_zod19.BuildRefine<{
|
|
18440
18440
|
artifactComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
18441
18441
|
name: "artifact_component_id";
|
|
18442
18442
|
tableName: "sub_agent_artifact_components";
|
|
@@ -18693,12 +18693,12 @@ declare const SubAgentSkillApiUpdateSchema: z.ZodObject<{
|
|
|
18693
18693
|
alwaysLoaded: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>>;
|
|
18694
18694
|
}, z.core.$strip>;
|
|
18695
18695
|
declare const SubAgentSkillWithIndexSchema: z.ZodObject<{
|
|
18696
|
-
id: z.ZodString;
|
|
18697
18696
|
name: z.ZodString;
|
|
18697
|
+
id: z.ZodString;
|
|
18698
18698
|
createdAt: z.ZodString;
|
|
18699
18699
|
updatedAt: z.ZodString;
|
|
18700
|
-
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
18701
18700
|
description: z.ZodString;
|
|
18701
|
+
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
18702
18702
|
content: z.ZodString;
|
|
18703
18703
|
subAgentSkillId: z.ZodString;
|
|
18704
18704
|
subAgentId: z.ZodString;
|
|
@@ -18770,8 +18770,8 @@ declare const ExternalAgentApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
18770
18770
|
id: z.ZodString;
|
|
18771
18771
|
}>, z.core.$strip>;
|
|
18772
18772
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
18773
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18774
18773
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18774
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18775
18775
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18776
18776
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18777
18777
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -18779,8 +18779,8 @@ declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
|
18779
18779
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18780
18780
|
}, z.core.$strip>;
|
|
18781
18781
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18782
|
-
id: z.ZodString;
|
|
18783
18782
|
name: z.ZodString;
|
|
18783
|
+
id: z.ZodString;
|
|
18784
18784
|
createdAt: z.ZodString;
|
|
18785
18785
|
updatedAt: z.ZodString;
|
|
18786
18786
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -18850,8 +18850,8 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
18850
18850
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
18851
18851
|
type: z.ZodLiteral<"internal">;
|
|
18852
18852
|
}, z.core.$strip>, z.ZodObject<{
|
|
18853
|
-
id: z.ZodString;
|
|
18854
18853
|
name: z.ZodString;
|
|
18854
|
+
id: z.ZodString;
|
|
18855
18855
|
createdAt: z.ZodString;
|
|
18856
18856
|
updatedAt: z.ZodString;
|
|
18857
18857
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -18859,7 +18859,7 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
18859
18859
|
baseUrl: z.ZodString;
|
|
18860
18860
|
type: z.ZodLiteral<"external">;
|
|
18861
18861
|
}, z.core.$strip>], "type">;
|
|
18862
|
-
declare const ApiKeySelectSchema:
|
|
18862
|
+
declare const ApiKeySelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
18863
18863
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
18864
18864
|
name: "created_at";
|
|
18865
18865
|
tableName: "api_keys";
|
|
@@ -19080,7 +19080,7 @@ declare const ApiKeySelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
19080
19080
|
}, {}, {
|
|
19081
19081
|
length: 256;
|
|
19082
19082
|
}>;
|
|
19083
|
-
},
|
|
19083
|
+
}, drizzle_zod19.BuildRefine<{
|
|
19084
19084
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
19085
19085
|
name: "created_at";
|
|
19086
19086
|
tableName: "api_keys";
|
|
@@ -19322,20 +19322,20 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
19322
19322
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
19323
19323
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19324
19324
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19325
|
-
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19326
19325
|
agentId: z.ZodOptional<z.ZodString>;
|
|
19326
|
+
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19327
19327
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19328
19328
|
}, {
|
|
19329
19329
|
out: {};
|
|
19330
19330
|
in: {};
|
|
19331
19331
|
}>;
|
|
19332
19332
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
19333
|
-
id: z.ZodString;
|
|
19334
19333
|
name: z.ZodNullable<z.ZodString>;
|
|
19334
|
+
id: z.ZodString;
|
|
19335
19335
|
createdAt: z.ZodString;
|
|
19336
19336
|
updatedAt: z.ZodString;
|
|
19337
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
19338
19337
|
agentId: z.ZodString;
|
|
19338
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
19339
19339
|
publicId: z.ZodString;
|
|
19340
19340
|
keyPrefix: z.ZodString;
|
|
19341
19341
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -19346,12 +19346,12 @@ declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
|
19346
19346
|
declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
19347
19347
|
data: z.ZodObject<{
|
|
19348
19348
|
apiKey: z.ZodObject<{
|
|
19349
|
-
id: z.ZodString;
|
|
19350
19349
|
name: z.ZodNullable<z.ZodString>;
|
|
19350
|
+
id: z.ZodString;
|
|
19351
19351
|
createdAt: z.ZodString;
|
|
19352
19352
|
updatedAt: z.ZodString;
|
|
19353
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
19354
19353
|
agentId: z.ZodString;
|
|
19354
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
19355
19355
|
publicId: z.ZodString;
|
|
19356
19356
|
keyPrefix: z.ZodString;
|
|
19357
19357
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -19366,8 +19366,8 @@ declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
|
19366
19366
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19367
19367
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
19368
19368
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19369
|
-
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19370
19369
|
agentId: z.ZodString;
|
|
19370
|
+
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19371
19371
|
}, {
|
|
19372
19372
|
out: {};
|
|
19373
19373
|
in: {};
|
|
@@ -19375,14 +19375,14 @@ declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
|
19375
19375
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
19376
19376
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19377
19377
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19378
|
-
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19379
19378
|
agentId: z.ZodOptional<z.ZodString>;
|
|
19379
|
+
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19380
19380
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19381
19381
|
}, {
|
|
19382
19382
|
out: {};
|
|
19383
19383
|
in: {};
|
|
19384
19384
|
}>;
|
|
19385
|
-
declare const CredentialReferenceSelectSchema:
|
|
19385
|
+
declare const CredentialReferenceSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
19386
19386
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
19387
19387
|
name: "created_at";
|
|
19388
19388
|
tableName: "credential_references";
|
|
@@ -19607,7 +19607,7 @@ declare const CredentialReferenceSelectSchema: drizzle_zod15.BuildSchema<"select
|
|
|
19607
19607
|
}, {}, {
|
|
19608
19608
|
length: 256;
|
|
19609
19609
|
}>;
|
|
19610
|
-
},
|
|
19610
|
+
}, drizzle_zod19.BuildRefine<{
|
|
19611
19611
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
19612
19612
|
name: "created_at";
|
|
19613
19613
|
tableName: "credential_references";
|
|
@@ -19868,8 +19868,8 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
|
19868
19868
|
in: {};
|
|
19869
19869
|
}>;
|
|
19870
19870
|
declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
19871
|
-
id: z.ZodString;
|
|
19872
19871
|
name: z.ZodString;
|
|
19872
|
+
id: z.ZodString;
|
|
19873
19873
|
createdAt: z.ZodString;
|
|
19874
19874
|
updatedAt: z.ZodString;
|
|
19875
19875
|
userId: z.ZodNullable<z.ZodString>;
|
|
@@ -19882,7 +19882,7 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
19882
19882
|
readonly keychain: "keychain";
|
|
19883
19883
|
readonly nango: "nango";
|
|
19884
19884
|
}>;
|
|
19885
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
19885
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
19886
19886
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
19887
19887
|
name: "created_at";
|
|
19888
19888
|
tableName: "tools";
|
|
@@ -20162,7 +20162,7 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
20162
20162
|
}, {}, {
|
|
20163
20163
|
length: 256;
|
|
20164
20164
|
}>;
|
|
20165
|
-
},
|
|
20165
|
+
}, drizzle_zod19.BuildRefine<{
|
|
20166
20166
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
20167
20167
|
name: "created_at";
|
|
20168
20168
|
tableName: "tools";
|
|
@@ -20459,8 +20459,8 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
20459
20459
|
}>>>;
|
|
20460
20460
|
}, z.core.$strip>;
|
|
20461
20461
|
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
20462
|
-
id: z.ZodString;
|
|
20463
20462
|
name: z.ZodString;
|
|
20463
|
+
id: z.ZodString;
|
|
20464
20464
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
20465
20465
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
20466
20466
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -20475,8 +20475,8 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
20475
20475
|
}>;
|
|
20476
20476
|
}, z.core.$strip>;
|
|
20477
20477
|
declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
20478
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20479
20478
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20479
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20480
20480
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20481
20481
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20482
20482
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -20606,16 +20606,16 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
20606
20606
|
in: {};
|
|
20607
20607
|
}>;
|
|
20608
20608
|
declare const MCPToolConfigSchema: z.ZodObject<{
|
|
20609
|
-
id: z.ZodString;
|
|
20610
20609
|
name: z.ZodString;
|
|
20611
|
-
|
|
20610
|
+
id: z.ZodString;
|
|
20612
20611
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
20613
|
-
|
|
20612
|
+
expiresAt: z.ZodOptional<z.ZodString>;
|
|
20614
20613
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
20615
20614
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
20616
20615
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
20617
20616
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20618
20617
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
20618
|
+
createdBy: z.ZodOptional<z.ZodString>;
|
|
20619
20619
|
availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20620
20620
|
name: z.ZodString;
|
|
20621
20621
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -20642,8 +20642,8 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
20642
20642
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
20643
20643
|
}, z.core.$strip>>;
|
|
20644
20644
|
credential: z.ZodOptional<z.ZodObject<{
|
|
20645
|
-
id: z.ZodString;
|
|
20646
20645
|
name: z.ZodString;
|
|
20646
|
+
id: z.ZodString;
|
|
20647
20647
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
20648
20648
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
20649
20649
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -20785,12 +20785,12 @@ declare const ToolApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
20785
20785
|
}, z.core.$strip>;
|
|
20786
20786
|
}>, z.core.$strip>;
|
|
20787
20787
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
20788
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20789
20788
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20789
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20790
20790
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20791
20791
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20792
|
-
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>>>>>>>;
|
|
20793
20792
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20793
|
+
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>>>>>>>;
|
|
20794
20794
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
20795
20795
|
type: z.ZodLiteral<"mcp">;
|
|
20796
20796
|
mcp: z.ZodObject<{
|
|
@@ -20824,7 +20824,7 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
20824
20824
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20825
20825
|
isWorkApp: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
20826
20826
|
}, z.core.$strip>;
|
|
20827
|
-
declare const FunctionToolSelectSchema:
|
|
20827
|
+
declare const FunctionToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
20828
20828
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
20829
20829
|
name: "created_at";
|
|
20830
20830
|
tableName: "function_tools";
|
|
@@ -20990,7 +20990,7 @@ declare const FunctionToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
20990
20990
|
}, {}, {
|
|
20991
20991
|
length: 256;
|
|
20992
20992
|
}>;
|
|
20993
|
-
},
|
|
20993
|
+
}, drizzle_zod19.BuildRefine<{
|
|
20994
20994
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
20995
20995
|
name: "created_at";
|
|
20996
20996
|
tableName: "function_tools";
|
|
@@ -21186,8 +21186,8 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
21186
21186
|
in: {};
|
|
21187
21187
|
}>;
|
|
21188
21188
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
21189
|
-
id: z.ZodString;
|
|
21190
21189
|
name: z.ZodString;
|
|
21190
|
+
id: z.ZodString;
|
|
21191
21191
|
createdAt: z.ZodString;
|
|
21192
21192
|
updatedAt: z.ZodString;
|
|
21193
21193
|
agentId: z.ZodString;
|
|
@@ -21207,15 +21207,15 @@ declare const FunctionToolApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
|
21207
21207
|
id: z.ZodString;
|
|
21208
21208
|
}>, z.core.$strip>;
|
|
21209
21209
|
declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
21210
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21211
21210
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21211
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21212
21212
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21213
21213
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21214
21214
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21215
21215
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21216
21216
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21217
21217
|
}, z.core.$strip>;
|
|
21218
|
-
declare const SubAgentFunctionToolRelationSelectSchema:
|
|
21218
|
+
declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
21219
21219
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
21220
21220
|
name: "created_at";
|
|
21221
21221
|
tableName: "sub_agent_function_tool_relations";
|
|
@@ -21387,7 +21387,7 @@ declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod15.BuildSchem
|
|
|
21387
21387
|
}, {}, {
|
|
21388
21388
|
length: 256;
|
|
21389
21389
|
}>;
|
|
21390
|
-
},
|
|
21390
|
+
}, drizzle_zod19.BuildRefine<{
|
|
21391
21391
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
21392
21392
|
name: "created_at";
|
|
21393
21393
|
tableName: "sub_agent_function_tool_relations";
|
|
@@ -21563,7 +21563,7 @@ declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod15.BuildSchem
|
|
|
21563
21563
|
declare const SubAgentFunctionToolRelationInsertSchema: z.ZodObject<{
|
|
21564
21564
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
21565
21565
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
21566
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
21566
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
21567
21567
|
agentId: z.ZodString;
|
|
21568
21568
|
projectId: z.ZodString;
|
|
21569
21569
|
tenantId: z.ZodString;
|
|
@@ -21578,7 +21578,7 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<OmitAgent
|
|
|
21578
21578
|
createdAt: z.ZodString;
|
|
21579
21579
|
updatedAt: z.ZodString;
|
|
21580
21580
|
functionToolId: z.ZodString;
|
|
21581
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
21581
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
21582
21582
|
subAgentId: z.ZodString;
|
|
21583
21583
|
agentId: z.ZodString;
|
|
21584
21584
|
projectId: z.ZodString;
|
|
@@ -21587,13 +21587,13 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<OmitAgent
|
|
|
21587
21587
|
}>, z.core.$strip>;
|
|
21588
21588
|
declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
|
|
21589
21589
|
subAgentId: z.ZodString;
|
|
21590
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
21590
21591
|
functionToolId: z.ZodString;
|
|
21591
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
21592
21592
|
}, {
|
|
21593
21593
|
out: {};
|
|
21594
21594
|
in: {};
|
|
21595
21595
|
}>;
|
|
21596
|
-
declare const FunctionSelectSchema:
|
|
21596
|
+
declare const FunctionSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
21597
21597
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
21598
21598
|
name: "created_at";
|
|
21599
21599
|
tableName: "functions";
|
|
@@ -21740,7 +21740,7 @@ declare const FunctionSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
21740
21740
|
}, {}, {
|
|
21741
21741
|
length: 256;
|
|
21742
21742
|
}>;
|
|
21743
|
-
},
|
|
21743
|
+
}, drizzle_zod19.BuildRefine<{
|
|
21744
21744
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
21745
21745
|
name: "created_at";
|
|
21746
21746
|
tableName: "functions";
|
|
@@ -21937,8 +21937,8 @@ declare const FunctionApiUpdateSchema: z.ZodObject<{
|
|
|
21937
21937
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21938
21938
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21939
21939
|
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>>>>>>>;
|
|
21940
|
-
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>>>>>>>;
|
|
21941
21940
|
executeCode: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21941
|
+
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>>>>>>>;
|
|
21942
21942
|
}, z.core.$strip>;
|
|
21943
21943
|
declare const FetchConfigSchema: z.ZodObject<{
|
|
21944
21944
|
url: z.ZodString;
|
|
@@ -21980,8 +21980,8 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
21980
21980
|
responseSchema: z.ZodOptional<z.ZodAny>;
|
|
21981
21981
|
defaultValue: z.ZodOptional<z.ZodAny>;
|
|
21982
21982
|
credential: z.ZodOptional<z.ZodObject<{
|
|
21983
|
-
id: z.ZodString;
|
|
21984
21983
|
name: z.ZodString;
|
|
21984
|
+
id: z.ZodString;
|
|
21985
21985
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
21986
21986
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
21987
21987
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -22033,10 +22033,10 @@ declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
|
22033
22033
|
}>;
|
|
22034
22034
|
declare const ContextConfigApiSelectSchema: z.ZodObject<{
|
|
22035
22035
|
id: z.ZodString;
|
|
22036
|
-
createdAt: z.ZodString;
|
|
22037
|
-
updatedAt: z.ZodString;
|
|
22038
22036
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
22039
22037
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
22038
|
+
createdAt: z.ZodString;
|
|
22039
|
+
updatedAt: z.ZodString;
|
|
22040
22040
|
}, z.core.$strip>;
|
|
22041
22041
|
declare const ContextConfigApiInsertSchema: z.ZodObject<{
|
|
22042
22042
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -22048,7 +22048,7 @@ declare const ContextConfigApiUpdateSchema: z.ZodObject<{
|
|
|
22048
22048
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>>;
|
|
22049
22049
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>>;
|
|
22050
22050
|
}, z.core.$strip>;
|
|
22051
|
-
declare const SubAgentToolRelationSelectSchema:
|
|
22051
|
+
declare const SubAgentToolRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
22052
22052
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
22053
22053
|
name: "created_at";
|
|
22054
22054
|
tableName: "sub_agent_tool_relations";
|
|
@@ -22258,7 +22258,7 @@ declare const SubAgentToolRelationSelectSchema: drizzle_zod15.BuildSchema<"selec
|
|
|
22258
22258
|
}, {}, {
|
|
22259
22259
|
length: 256;
|
|
22260
22260
|
}>;
|
|
22261
|
-
},
|
|
22261
|
+
}, drizzle_zod19.BuildRefine<{
|
|
22262
22262
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
22263
22263
|
name: "created_at";
|
|
22264
22264
|
tableName: "sub_agent_tool_relations";
|
|
@@ -22509,9 +22509,9 @@ declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
22509
22509
|
createdAt: z.ZodString;
|
|
22510
22510
|
updatedAt: z.ZodString;
|
|
22511
22511
|
toolId: z.ZodString;
|
|
22512
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
22513
|
-
headers: z.ZodNullable<z.ZodType<
|
|
22514
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
22512
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
22513
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
22514
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
22515
22515
|
subAgentId: z.ZodString;
|
|
22516
22516
|
agentId: z.ZodString;
|
|
22517
22517
|
projectId: z.ZodString;
|
|
@@ -22538,14 +22538,14 @@ declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
|
22538
22538
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22539
22539
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22540
22540
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22541
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22542
22541
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22542
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22543
|
+
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
22543
22544
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22544
22545
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
22545
22546
|
}, z.core.$strip>>>>>>;
|
|
22546
|
-
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
22547
22547
|
}, z.core.$strip>;
|
|
22548
|
-
declare const SubAgentExternalAgentRelationSelectSchema:
|
|
22548
|
+
declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
22549
22549
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
22550
22550
|
name: "created_at";
|
|
22551
22551
|
tableName: "sub_agent_external_agent_relations";
|
|
@@ -22713,7 +22713,7 @@ declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod15.BuildSche
|
|
|
22713
22713
|
}, {}, {
|
|
22714
22714
|
length: 256;
|
|
22715
22715
|
}>;
|
|
22716
|
-
},
|
|
22716
|
+
}, drizzle_zod19.BuildRefine<{
|
|
22717
22717
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
22718
22718
|
name: "created_at";
|
|
22719
22719
|
tableName: "sub_agent_external_agent_relations";
|
|
@@ -22914,7 +22914,7 @@ declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<OmitAgen
|
|
|
22914
22914
|
createdAt: z.ZodString;
|
|
22915
22915
|
updatedAt: z.ZodString;
|
|
22916
22916
|
externalAgentId: z.ZodString;
|
|
22917
|
-
headers: z.ZodNullable<z.ZodType<
|
|
22917
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
22918
22918
|
subAgentId: z.ZodString;
|
|
22919
22919
|
agentId: z.ZodString;
|
|
22920
22920
|
projectId: z.ZodString;
|
|
@@ -22935,7 +22935,7 @@ declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
22935
22935
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22936
22936
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22937
22937
|
}, z.core.$strip>;
|
|
22938
|
-
declare const SubAgentTeamAgentRelationSelectSchema:
|
|
22938
|
+
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
22939
22939
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
22940
22940
|
name: "created_at";
|
|
22941
22941
|
tableName: "sub_agent_team_agent_relations";
|
|
@@ -23103,7 +23103,7 @@ declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
23103
23103
|
}, {}, {
|
|
23104
23104
|
length: 256;
|
|
23105
23105
|
}>;
|
|
23106
|
-
},
|
|
23106
|
+
}, drizzle_zod19.BuildRefine<{
|
|
23107
23107
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
23108
23108
|
name: "created_at";
|
|
23109
23109
|
tableName: "sub_agent_team_agent_relations";
|
|
@@ -23304,7 +23304,7 @@ declare const SubAgentTeamAgentRelationApiSelectSchema: z.ZodObject<OmitAgentSco
|
|
|
23304
23304
|
createdAt: z.ZodString;
|
|
23305
23305
|
updatedAt: z.ZodString;
|
|
23306
23306
|
targetAgentId: z.ZodString;
|
|
23307
|
-
headers: z.ZodNullable<z.ZodType<
|
|
23307
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
23308
23308
|
subAgentId: z.ZodString;
|
|
23309
23309
|
agentId: z.ZodString;
|
|
23310
23310
|
projectId: z.ZodString;
|
|
@@ -23325,7 +23325,7 @@ declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
23325
23325
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23326
23326
|
targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23327
23327
|
}, z.core.$strip>;
|
|
23328
|
-
declare const LedgerArtifactSelectSchema:
|
|
23328
|
+
declare const LedgerArtifactSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
23329
23329
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
23330
23330
|
name: "created_at";
|
|
23331
23331
|
tableName: "ledger_artifacts";
|
|
@@ -23660,7 +23660,7 @@ declare const LedgerArtifactSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
23660
23660
|
}, {}, {
|
|
23661
23661
|
length: 256;
|
|
23662
23662
|
}>;
|
|
23663
|
-
},
|
|
23663
|
+
}, drizzle_zod19.BuildRefine<{
|
|
23664
23664
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
23665
23665
|
name: "created_at";
|
|
23666
23666
|
tableName: "ledger_artifacts";
|
|
@@ -23996,7 +23996,7 @@ declare const LedgerArtifactSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
23996
23996
|
length: 256;
|
|
23997
23997
|
}>;
|
|
23998
23998
|
}, undefined>, undefined>;
|
|
23999
|
-
declare const LedgerArtifactInsertSchema:
|
|
23999
|
+
declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
24000
24000
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
24001
24001
|
name: "created_at";
|
|
24002
24002
|
tableName: "ledger_artifacts";
|
|
@@ -24331,7 +24331,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
24331
24331
|
}, {}, {
|
|
24332
24332
|
length: 256;
|
|
24333
24333
|
}>;
|
|
24334
|
-
},
|
|
24334
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
24335
24335
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
24336
24336
|
name: "created_at";
|
|
24337
24337
|
tableName: "ledger_artifacts";
|
|
@@ -24666,7 +24666,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
24666
24666
|
}, {}, {
|
|
24667
24667
|
length: 256;
|
|
24668
24668
|
}>;
|
|
24669
|
-
}, "type" | "
|
|
24669
|
+
}, "type" | "name" | "id" | "createdAt" | "updatedAt" | "projectId" | "tenantId" | "description" | "metadata" | "taskId" | "contextId" | "visibility" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
24670
24670
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
24671
24671
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24672
24672
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -24676,12 +24676,12 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
24676
24676
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24677
24677
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24678
24678
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24679
|
-
parts: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24680
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24679
|
+
parts: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
24680
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
24681
24681
|
summary: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24682
|
-
mime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24682
|
+
mime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
24683
24683
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24684
|
-
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24684
|
+
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
24685
24685
|
derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24686
24686
|
projectId: z.ZodOptional<z.ZodString>;
|
|
24687
24687
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
@@ -24699,12 +24699,12 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
24699
24699
|
type: z.ZodString;
|
|
24700
24700
|
name: z.ZodNullable<z.ZodString>;
|
|
24701
24701
|
description: z.ZodNullable<z.ZodString>;
|
|
24702
|
-
parts: z.ZodNullable<z.ZodType<
|
|
24703
|
-
metadata: z.ZodNullable<z.ZodType<
|
|
24702
|
+
parts: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
24703
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
24704
24704
|
summary: z.ZodNullable<z.ZodString>;
|
|
24705
|
-
mime: z.ZodNullable<z.ZodType<
|
|
24705
|
+
mime: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
24706
24706
|
visibility: z.ZodNullable<z.ZodString>;
|
|
24707
|
-
allowedAgents: z.ZodNullable<z.ZodType<
|
|
24707
|
+
allowedAgents: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
24708
24708
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
24709
24709
|
projectId: z.ZodString;
|
|
24710
24710
|
tenantId: z.ZodString;
|
|
@@ -24719,12 +24719,12 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
24719
24719
|
type: z.ZodOptional<z.ZodString>;
|
|
24720
24720
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24721
24721
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24722
|
-
parts: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24723
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24722
|
+
parts: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24723
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24724
24724
|
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24725
|
-
mime: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24725
|
+
mime: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24726
24726
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24727
|
-
allowedAgents: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24727
|
+
allowedAgents: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24728
24728
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24729
24729
|
projectId: z.ZodString;
|
|
24730
24730
|
tenantId: z.ZodString;
|
|
@@ -24732,20 +24732,20 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
24732
24732
|
}>, z.core.$strip>;
|
|
24733
24733
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
24734
24734
|
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24735
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24736
24735
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24736
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24737
24737
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24738
24738
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24739
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
24740
24739
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24740
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
24741
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24741
24742
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24742
24743
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24743
|
-
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24744
24744
|
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24745
|
-
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24745
|
+
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
24746
24746
|
summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24747
|
-
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24748
|
-
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24747
|
+
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
24748
|
+
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
24749
24749
|
derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24750
24750
|
}, z.core.$strip>;
|
|
24751
24751
|
declare const StatusComponentSchema: z.ZodObject<{
|
|
@@ -24811,8 +24811,8 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
24811
24811
|
description: z.ZodString;
|
|
24812
24812
|
}, z.core.$strip>;
|
|
24813
24813
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
24814
|
-
id: z.ZodString;
|
|
24815
24814
|
name: z.ZodString;
|
|
24815
|
+
id: z.ZodString;
|
|
24816
24816
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24817
24817
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24818
24818
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24878,8 +24878,8 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24878
24878
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24879
24879
|
id: z.ZodString;
|
|
24880
24880
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24881
|
-
id: z.ZodString;
|
|
24882
24881
|
name: z.ZodString;
|
|
24882
|
+
id: z.ZodString;
|
|
24883
24883
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24884
24884
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24885
24885
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -25017,27 +25017,27 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25017
25017
|
name: z.ZodString;
|
|
25018
25018
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25019
25019
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25020
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25021
25020
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25022
|
-
|
|
25023
|
-
|
|
25021
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25022
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25023
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25024
25024
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25025
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25025
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25026
25026
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25027
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25027
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25028
25028
|
id: z.ZodOptional<z.ZodString>;
|
|
25029
25029
|
}, z.core.$strip>>>;
|
|
25030
25030
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25031
25031
|
name: z.ZodString;
|
|
25032
25032
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25033
25033
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25034
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25035
25034
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25035
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25036
25036
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25037
25037
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25038
25038
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25039
25039
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25040
|
-
payload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25040
|
+
payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25041
25041
|
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
25042
25042
|
retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
25043
25043
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -25142,8 +25142,8 @@ declare const ProjectSelectSchema: z.ZodObject<{
|
|
|
25142
25142
|
in: {};
|
|
25143
25143
|
}>;
|
|
25144
25144
|
declare const ProjectInsertSchema: z.ZodObject<{
|
|
25145
|
-
id: z.ZodString;
|
|
25146
25145
|
name: z.ZodString;
|
|
25146
|
+
id: z.ZodString;
|
|
25147
25147
|
tenantId: z.ZodString;
|
|
25148
25148
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25149
25149
|
models: z.ZodObject<{
|
|
@@ -25194,8 +25194,8 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
25194
25194
|
in: {};
|
|
25195
25195
|
}>;
|
|
25196
25196
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
25197
|
-
id: z.ZodString;
|
|
25198
25197
|
name: z.ZodString;
|
|
25198
|
+
id: z.ZodString;
|
|
25199
25199
|
createdAt: z.ZodString;
|
|
25200
25200
|
updatedAt: z.ZodString;
|
|
25201
25201
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -25222,8 +25222,8 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
25222
25222
|
in: {};
|
|
25223
25223
|
}>;
|
|
25224
25224
|
declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
25225
|
-
id: z.ZodString;
|
|
25226
25225
|
name: z.ZodString;
|
|
25226
|
+
id: z.ZodString;
|
|
25227
25227
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25228
25228
|
models: z.ZodObject<{
|
|
25229
25229
|
base: z.ZodObject<{
|
|
@@ -25273,8 +25273,8 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
|
25273
25273
|
in: {};
|
|
25274
25274
|
}>;
|
|
25275
25275
|
declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
25276
|
-
id: z.ZodString;
|
|
25277
25276
|
name: z.ZodString;
|
|
25277
|
+
id: z.ZodString;
|
|
25278
25278
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25279
25279
|
models: z.ZodObject<{
|
|
25280
25280
|
base: z.ZodObject<{
|
|
@@ -25303,8 +25303,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25303
25303
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25304
25304
|
id: z.ZodString;
|
|
25305
25305
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25306
|
-
id: z.ZodString;
|
|
25307
25306
|
name: z.ZodString;
|
|
25307
|
+
id: z.ZodString;
|
|
25308
25308
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25309
25309
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25310
25310
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -25442,27 +25442,27 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25442
25442
|
name: z.ZodString;
|
|
25443
25443
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25444
25444
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25445
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25446
25445
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25447
|
-
|
|
25448
|
-
|
|
25446
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25447
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25448
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25449
25449
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25450
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25450
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25451
25451
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25452
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25452
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25453
25453
|
id: z.ZodOptional<z.ZodString>;
|
|
25454
25454
|
}, z.core.$strip>>>;
|
|
25455
25455
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25456
25456
|
name: z.ZodString;
|
|
25457
25457
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25458
25458
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25459
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25460
25459
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25460
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25461
25461
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25462
25462
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25463
25463
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25464
25464
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25465
|
-
payload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25465
|
+
payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25466
25466
|
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
25467
25467
|
retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
25468
25468
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -25570,10 +25570,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25570
25570
|
}, z.core.$strip>>>;
|
|
25571
25571
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
25572
25572
|
name: z.ZodString;
|
|
25573
|
-
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
25574
25573
|
projectId: z.ZodString;
|
|
25575
25574
|
tenantId: z.ZodString;
|
|
25576
25575
|
description: z.ZodString;
|
|
25576
|
+
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
25577
25577
|
content: z.ZodString;
|
|
25578
25578
|
}>, z.core.$strip>>>;
|
|
25579
25579
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -25658,8 +25658,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25658
25658
|
}, z.core.$strip>>>;
|
|
25659
25659
|
}, z.core.$strip>>;
|
|
25660
25660
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25661
|
-
id: z.ZodString;
|
|
25662
25661
|
name: z.ZodString;
|
|
25662
|
+
id: z.ZodString;
|
|
25663
25663
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25664
25664
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25665
25665
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -25680,8 +25680,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25680
25680
|
in: {};
|
|
25681
25681
|
}>;
|
|
25682
25682
|
declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
25683
|
-
id: z.ZodString;
|
|
25684
25683
|
name: z.ZodString;
|
|
25684
|
+
id: z.ZodString;
|
|
25685
25685
|
createdAt: z.ZodString;
|
|
25686
25686
|
updatedAt: z.ZodString;
|
|
25687
25687
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -25773,8 +25773,8 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
25773
25773
|
}, z.core.$strip>]>>>;
|
|
25774
25774
|
}, z.core.$strip>;
|
|
25775
25775
|
declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
25776
|
-
id: z.ZodString;
|
|
25777
25776
|
name: z.ZodString;
|
|
25777
|
+
id: z.ZodString;
|
|
25778
25778
|
createdAt: z.ZodString;
|
|
25779
25779
|
updatedAt: z.ZodString;
|
|
25780
25780
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -25872,16 +25872,16 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25872
25872
|
}, z.core.$strip>]>>>;
|
|
25873
25873
|
}, z.core.$strip>;
|
|
25874
25874
|
declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
25875
|
-
id: z.ZodString;
|
|
25876
25875
|
name: z.ZodString;
|
|
25876
|
+
id: z.ZodString;
|
|
25877
25877
|
createdAt: z.ZodString;
|
|
25878
25878
|
updatedAt: z.ZodString;
|
|
25879
25879
|
description: z.ZodNullable<z.ZodString>;
|
|
25880
25880
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25881
25881
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25882
25882
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25883
|
-
id: z.ZodString;
|
|
25884
25883
|
name: z.ZodString;
|
|
25884
|
+
id: z.ZodString;
|
|
25885
25885
|
createdAt: z.ZodString;
|
|
25886
25886
|
updatedAt: z.ZodString;
|
|
25887
25887
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -26018,8 +26018,8 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26018
26018
|
description: z.ZodString;
|
|
26019
26019
|
}, z.core.$strip>>>;
|
|
26020
26020
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26021
|
-
id: z.ZodString;
|
|
26022
26021
|
name: z.ZodString;
|
|
26022
|
+
id: z.ZodString;
|
|
26023
26023
|
createdAt: z.ZodString;
|
|
26024
26024
|
updatedAt: z.ZodString;
|
|
26025
26025
|
agentId: z.ZodString;
|
|
@@ -26058,10 +26058,10 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26058
26058
|
}>, z.core.$strip>>>;
|
|
26059
26059
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
26060
26060
|
id: z.ZodString;
|
|
26061
|
-
createdAt: z.ZodString;
|
|
26062
|
-
updatedAt: z.ZodString;
|
|
26063
26061
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
26064
26062
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
26063
|
+
createdAt: z.ZodString;
|
|
26064
|
+
updatedAt: z.ZodString;
|
|
26065
26065
|
}, z.core.$strip>>;
|
|
26066
26066
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
26067
26067
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -26098,8 +26098,8 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26098
26098
|
prompt: z.ZodNullable<z.ZodString>;
|
|
26099
26099
|
}, z.core.$strip>;
|
|
26100
26100
|
declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
26101
|
-
id: z.ZodString;
|
|
26102
26101
|
name: z.ZodString;
|
|
26102
|
+
id: z.ZodString;
|
|
26103
26103
|
createdAt: z.ZodString;
|
|
26104
26104
|
updatedAt: z.ZodString;
|
|
26105
26105
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -26151,8 +26151,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26151
26151
|
description: z.ZodString;
|
|
26152
26152
|
}, z.core.$strip>>>;
|
|
26153
26153
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26154
|
-
id: z.ZodString;
|
|
26155
26154
|
name: z.ZodString;
|
|
26155
|
+
id: z.ZodString;
|
|
26156
26156
|
createdAt: z.ZodString;
|
|
26157
26157
|
updatedAt: z.ZodString;
|
|
26158
26158
|
agentId: z.ZodString;
|
|
@@ -26191,10 +26191,10 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26191
26191
|
}>, z.core.$strip>>>;
|
|
26192
26192
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
26193
26193
|
id: z.ZodString;
|
|
26194
|
-
createdAt: z.ZodString;
|
|
26195
|
-
updatedAt: z.ZodString;
|
|
26196
26194
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
26197
26195
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
26196
|
+
createdAt: z.ZodString;
|
|
26197
|
+
updatedAt: z.ZodString;
|
|
26198
26198
|
}, z.core.$strip>>;
|
|
26199
26199
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
26200
26200
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -26230,8 +26230,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26230
26230
|
}, z.core.$strip>>;
|
|
26231
26231
|
prompt: z.ZodNullable<z.ZodString>;
|
|
26232
26232
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26233
|
-
id: z.ZodString;
|
|
26234
26233
|
name: z.ZodString;
|
|
26234
|
+
id: z.ZodString;
|
|
26235
26235
|
createdAt: z.ZodString;
|
|
26236
26236
|
updatedAt: z.ZodString;
|
|
26237
26237
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -26330,8 +26330,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26330
26330
|
}, z.core.$strip>>;
|
|
26331
26331
|
}, z.core.$strip>;
|
|
26332
26332
|
declare const FullProjectSelectSchema: z.ZodObject<{
|
|
26333
|
-
id: z.ZodString;
|
|
26334
26333
|
name: z.ZodString;
|
|
26334
|
+
id: z.ZodString;
|
|
26335
26335
|
createdAt: z.ZodString;
|
|
26336
26336
|
updatedAt: z.ZodString;
|
|
26337
26337
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -26354,16 +26354,16 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26354
26354
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
26355
26355
|
}, z.core.$strip>>;
|
|
26356
26356
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26357
|
-
id: z.ZodString;
|
|
26358
26357
|
name: z.ZodString;
|
|
26358
|
+
id: z.ZodString;
|
|
26359
26359
|
createdAt: z.ZodString;
|
|
26360
26360
|
updatedAt: z.ZodString;
|
|
26361
26361
|
description: z.ZodNullable<z.ZodString>;
|
|
26362
26362
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26363
26363
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26364
26364
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26365
|
-
id: z.ZodString;
|
|
26366
26365
|
name: z.ZodString;
|
|
26366
|
+
id: z.ZodString;
|
|
26367
26367
|
createdAt: z.ZodString;
|
|
26368
26368
|
updatedAt: z.ZodString;
|
|
26369
26369
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -26500,8 +26500,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26500
26500
|
description: z.ZodString;
|
|
26501
26501
|
}, z.core.$strip>>>;
|
|
26502
26502
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26503
|
-
id: z.ZodString;
|
|
26504
26503
|
name: z.ZodString;
|
|
26504
|
+
id: z.ZodString;
|
|
26505
26505
|
createdAt: z.ZodString;
|
|
26506
26506
|
updatedAt: z.ZodString;
|
|
26507
26507
|
agentId: z.ZodString;
|
|
@@ -26540,10 +26540,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26540
26540
|
}>, z.core.$strip>>>;
|
|
26541
26541
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
26542
26542
|
id: z.ZodString;
|
|
26543
|
-
createdAt: z.ZodString;
|
|
26544
|
-
updatedAt: z.ZodString;
|
|
26545
26543
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
26546
26544
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
26545
|
+
createdAt: z.ZodString;
|
|
26546
|
+
updatedAt: z.ZodString;
|
|
26547
26547
|
}, z.core.$strip>>;
|
|
26548
26548
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
26549
26549
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -26609,8 +26609,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26609
26609
|
id: z.ZodString;
|
|
26610
26610
|
}>, z.core.$strip>>;
|
|
26611
26611
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26612
|
-
id: z.ZodString;
|
|
26613
26612
|
name: z.ZodString;
|
|
26613
|
+
id: z.ZodString;
|
|
26614
26614
|
createdAt: z.ZodString;
|
|
26615
26615
|
updatedAt: z.ZodString;
|
|
26616
26616
|
agentId: z.ZodString;
|
|
@@ -26757,8 +26757,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26757
26757
|
}, z.core.$strip>>>;
|
|
26758
26758
|
}, z.core.$strip>>;
|
|
26759
26759
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26760
|
-
id: z.ZodString;
|
|
26761
26760
|
name: z.ZodString;
|
|
26761
|
+
id: z.ZodString;
|
|
26762
26762
|
createdAt: z.ZodString;
|
|
26763
26763
|
updatedAt: z.ZodString;
|
|
26764
26764
|
userId: z.ZodNullable<z.ZodString>;
|
|
@@ -26771,7 +26771,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26771
26771
|
readonly keychain: "keychain";
|
|
26772
26772
|
readonly nango: "nango";
|
|
26773
26773
|
}>;
|
|
26774
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
26774
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
26775
26775
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
26776
26776
|
name: "created_at";
|
|
26777
26777
|
tableName: "tools";
|
|
@@ -27051,7 +27051,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27051
27051
|
}, {}, {
|
|
27052
27052
|
length: 256;
|
|
27053
27053
|
}>;
|
|
27054
|
-
},
|
|
27054
|
+
}, drizzle_zod19.BuildRefine<{
|
|
27055
27055
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
27056
27056
|
name: "created_at";
|
|
27057
27057
|
tableName: "tools";
|
|
@@ -27352,8 +27352,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27352
27352
|
in: {};
|
|
27353
27353
|
}>;
|
|
27354
27354
|
declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
27355
|
-
id: z.ZodString;
|
|
27356
27355
|
name: z.ZodString;
|
|
27356
|
+
id: z.ZodString;
|
|
27357
27357
|
createdAt: z.ZodString;
|
|
27358
27358
|
updatedAt: z.ZodString;
|
|
27359
27359
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -27405,8 +27405,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27405
27405
|
id: z.ZodString;
|
|
27406
27406
|
}>, z.core.$strip>>;
|
|
27407
27407
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27408
|
-
id: z.ZodString;
|
|
27409
27408
|
name: z.ZodString;
|
|
27409
|
+
id: z.ZodString;
|
|
27410
27410
|
createdAt: z.ZodString;
|
|
27411
27411
|
updatedAt: z.ZodString;
|
|
27412
27412
|
agentId: z.ZodString;
|
|
@@ -27553,8 +27553,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27553
27553
|
}, z.core.$strip>>>;
|
|
27554
27554
|
}, z.core.$strip>>;
|
|
27555
27555
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27556
|
-
id: z.ZodString;
|
|
27557
27556
|
name: z.ZodString;
|
|
27557
|
+
id: z.ZodString;
|
|
27558
27558
|
createdAt: z.ZodString;
|
|
27559
27559
|
updatedAt: z.ZodString;
|
|
27560
27560
|
userId: z.ZodNullable<z.ZodString>;
|
|
@@ -27567,7 +27567,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27567
27567
|
readonly keychain: "keychain";
|
|
27568
27568
|
readonly nango: "nango";
|
|
27569
27569
|
}>;
|
|
27570
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
27570
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
27571
27571
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
27572
27572
|
name: "created_at";
|
|
27573
27573
|
tableName: "tools";
|
|
@@ -27847,7 +27847,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27847
27847
|
}, {}, {
|
|
27848
27848
|
length: 256;
|
|
27849
27849
|
}>;
|
|
27850
|
-
},
|
|
27850
|
+
}, drizzle_zod19.BuildRefine<{
|
|
27851
27851
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
27852
27852
|
name: "created_at";
|
|
27853
27853
|
tableName: "tools";
|
|
@@ -28144,8 +28144,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28144
28144
|
}>>>;
|
|
28145
28145
|
}, z.core.$strip>>>;
|
|
28146
28146
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28147
|
-
id: z.ZodString;
|
|
28148
28147
|
name: z.ZodString;
|
|
28148
|
+
id: z.ZodString;
|
|
28149
28149
|
createdAt: z.ZodString;
|
|
28150
28150
|
updatedAt: z.ZodString;
|
|
28151
28151
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -28197,8 +28197,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28197
28197
|
description: z.ZodString;
|
|
28198
28198
|
}, z.core.$strip>>>;
|
|
28199
28199
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28200
|
-
id: z.ZodString;
|
|
28201
28200
|
name: z.ZodString;
|
|
28201
|
+
id: z.ZodString;
|
|
28202
28202
|
createdAt: z.ZodString;
|
|
28203
28203
|
updatedAt: z.ZodString;
|
|
28204
28204
|
agentId: z.ZodString;
|
|
@@ -28237,10 +28237,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28237
28237
|
}>, z.core.$strip>>>;
|
|
28238
28238
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
28239
28239
|
id: z.ZodString;
|
|
28240
|
-
createdAt: z.ZodString;
|
|
28241
|
-
updatedAt: z.ZodString;
|
|
28242
28240
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
28243
28241
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
28242
|
+
createdAt: z.ZodString;
|
|
28243
|
+
updatedAt: z.ZodString;
|
|
28244
28244
|
}, z.core.$strip>>;
|
|
28245
28245
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
28246
28246
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -28276,8 +28276,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28276
28276
|
}, z.core.$strip>>;
|
|
28277
28277
|
prompt: z.ZodNullable<z.ZodString>;
|
|
28278
28278
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28279
|
-
id: z.ZodString;
|
|
28280
28279
|
name: z.ZodString;
|
|
28280
|
+
id: z.ZodString;
|
|
28281
28281
|
createdAt: z.ZodString;
|
|
28282
28282
|
updatedAt: z.ZodString;
|
|
28283
28283
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -28381,8 +28381,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28381
28381
|
}>;
|
|
28382
28382
|
declare const ProjectResponse: z.ZodObject<{
|
|
28383
28383
|
data: z.ZodObject<{
|
|
28384
|
-
id: z.ZodString;
|
|
28385
28384
|
name: z.ZodString;
|
|
28385
|
+
id: z.ZodString;
|
|
28386
28386
|
createdAt: z.ZodString;
|
|
28387
28387
|
updatedAt: z.ZodString;
|
|
28388
28388
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -28634,20 +28634,20 @@ declare const ExternalAgentResponse: z.ZodObject<{
|
|
|
28634
28634
|
declare const ContextConfigResponse: z.ZodObject<{
|
|
28635
28635
|
data: z.ZodObject<{
|
|
28636
28636
|
id: z.ZodString;
|
|
28637
|
-
createdAt: z.ZodString;
|
|
28638
|
-
updatedAt: z.ZodString;
|
|
28639
28637
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
28640
28638
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
28639
|
+
createdAt: z.ZodString;
|
|
28640
|
+
updatedAt: z.ZodString;
|
|
28641
28641
|
}, z.core.$strip>;
|
|
28642
28642
|
}, z.core.$strip>;
|
|
28643
28643
|
declare const ApiKeyResponse: z.ZodObject<{
|
|
28644
28644
|
data: z.ZodObject<{
|
|
28645
|
-
id: z.ZodString;
|
|
28646
28645
|
name: z.ZodNullable<z.ZodString>;
|
|
28646
|
+
id: z.ZodString;
|
|
28647
28647
|
createdAt: z.ZodString;
|
|
28648
28648
|
updatedAt: z.ZodString;
|
|
28649
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
28650
28649
|
agentId: z.ZodString;
|
|
28650
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
28651
28651
|
publicId: z.ZodString;
|
|
28652
28652
|
keyPrefix: z.ZodString;
|
|
28653
28653
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -28658,8 +28658,8 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
28658
28658
|
}, z.core.$strip>;
|
|
28659
28659
|
declare const CredentialReferenceResponse: z.ZodObject<{
|
|
28660
28660
|
data: z.ZodObject<{
|
|
28661
|
-
id: z.ZodString;
|
|
28662
28661
|
name: z.ZodString;
|
|
28662
|
+
id: z.ZodString;
|
|
28663
28663
|
createdAt: z.ZodString;
|
|
28664
28664
|
updatedAt: z.ZodString;
|
|
28665
28665
|
userId: z.ZodNullable<z.ZodString>;
|
|
@@ -28672,7 +28672,7 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
28672
28672
|
readonly keychain: "keychain";
|
|
28673
28673
|
readonly nango: "nango";
|
|
28674
28674
|
}>;
|
|
28675
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
28675
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
28676
28676
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
28677
28677
|
name: "created_at";
|
|
28678
28678
|
tableName: "tools";
|
|
@@ -28952,7 +28952,7 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
28952
28952
|
}, {}, {
|
|
28953
28953
|
length: 256;
|
|
28954
28954
|
}>;
|
|
28955
|
-
},
|
|
28955
|
+
}, drizzle_zod19.BuildRefine<{
|
|
28956
28956
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
28957
28957
|
name: "created_at";
|
|
28958
28958
|
tableName: "tools";
|
|
@@ -29263,8 +29263,8 @@ declare const FunctionResponse: z.ZodObject<{
|
|
|
29263
29263
|
}, z.core.$strip>;
|
|
29264
29264
|
declare const FunctionToolResponse: z.ZodObject<{
|
|
29265
29265
|
data: z.ZodObject<{
|
|
29266
|
-
id: z.ZodString;
|
|
29267
29266
|
name: z.ZodString;
|
|
29267
|
+
id: z.ZodString;
|
|
29268
29268
|
createdAt: z.ZodString;
|
|
29269
29269
|
updatedAt: z.ZodString;
|
|
29270
29270
|
agentId: z.ZodString;
|
|
@@ -29278,7 +29278,7 @@ declare const SubAgentFunctionToolRelationResponse: z.ZodObject<{
|
|
|
29278
29278
|
createdAt: z.ZodString;
|
|
29279
29279
|
updatedAt: z.ZodString;
|
|
29280
29280
|
functionToolId: z.ZodString;
|
|
29281
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
29281
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29282
29282
|
subAgentId: z.ZodString;
|
|
29283
29283
|
agentId: z.ZodString;
|
|
29284
29284
|
projectId: z.ZodString;
|
|
@@ -29410,9 +29410,9 @@ declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
|
29410
29410
|
createdAt: z.ZodString;
|
|
29411
29411
|
updatedAt: z.ZodString;
|
|
29412
29412
|
toolId: z.ZodString;
|
|
29413
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
29414
|
-
headers: z.ZodNullable<z.ZodType<
|
|
29415
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
29413
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29414
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29415
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29416
29416
|
subAgentId: z.ZodString;
|
|
29417
29417
|
agentId: z.ZodString;
|
|
29418
29418
|
projectId: z.ZodString;
|
|
@@ -29425,10 +29425,10 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
29425
29425
|
createdAt: z.ZodString;
|
|
29426
29426
|
updatedAt: z.ZodString;
|
|
29427
29427
|
enabled: z.ZodBoolean;
|
|
29428
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
29429
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
29428
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29429
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29430
29430
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
29431
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
29431
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29432
29432
|
name: z.ZodString;
|
|
29433
29433
|
description: z.ZodNullable<z.ZodString>;
|
|
29434
29434
|
agentId: z.ZodString;
|
|
@@ -29488,8 +29488,8 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
29488
29488
|
triggerId: z.ZodString;
|
|
29489
29489
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
29490
29490
|
status: z.ZodString;
|
|
29491
|
-
requestPayload: z.ZodType<
|
|
29492
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
29491
|
+
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
29492
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29493
29493
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
29494
29494
|
createdAt: z.ZodString;
|
|
29495
29495
|
agentId: z.ZodString;
|
|
@@ -29500,8 +29500,8 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
29500
29500
|
}, z.core.$strip>;
|
|
29501
29501
|
declare const ProjectListResponse: z.ZodObject<{
|
|
29502
29502
|
data: z.ZodArray<z.ZodObject<{
|
|
29503
|
-
id: z.ZodString;
|
|
29504
29503
|
name: z.ZodString;
|
|
29504
|
+
id: z.ZodString;
|
|
29505
29505
|
createdAt: z.ZodString;
|
|
29506
29506
|
updatedAt: z.ZodString;
|
|
29507
29507
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -29777,10 +29777,10 @@ declare const ExternalAgentListResponse: z.ZodObject<{
|
|
|
29777
29777
|
declare const ContextConfigListResponse: z.ZodObject<{
|
|
29778
29778
|
data: z.ZodArray<z.ZodObject<{
|
|
29779
29779
|
id: z.ZodString;
|
|
29780
|
-
createdAt: z.ZodString;
|
|
29781
|
-
updatedAt: z.ZodString;
|
|
29782
29780
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
29783
29781
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
29782
|
+
createdAt: z.ZodString;
|
|
29783
|
+
updatedAt: z.ZodString;
|
|
29784
29784
|
}, z.core.$strip>>;
|
|
29785
29785
|
pagination: z.ZodObject<{
|
|
29786
29786
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -29791,12 +29791,12 @@ declare const ContextConfigListResponse: z.ZodObject<{
|
|
|
29791
29791
|
}, z.core.$strip>;
|
|
29792
29792
|
declare const ApiKeyListResponse: z.ZodObject<{
|
|
29793
29793
|
data: z.ZodArray<z.ZodObject<{
|
|
29794
|
-
id: z.ZodString;
|
|
29795
29794
|
name: z.ZodNullable<z.ZodString>;
|
|
29795
|
+
id: z.ZodString;
|
|
29796
29796
|
createdAt: z.ZodString;
|
|
29797
29797
|
updatedAt: z.ZodString;
|
|
29798
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
29799
29798
|
agentId: z.ZodString;
|
|
29799
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
29800
29800
|
publicId: z.ZodString;
|
|
29801
29801
|
keyPrefix: z.ZodString;
|
|
29802
29802
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -29813,8 +29813,8 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
29813
29813
|
}, z.core.$strip>;
|
|
29814
29814
|
declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
29815
29815
|
data: z.ZodArray<z.ZodObject<{
|
|
29816
|
-
id: z.ZodString;
|
|
29817
29816
|
name: z.ZodString;
|
|
29817
|
+
id: z.ZodString;
|
|
29818
29818
|
createdAt: z.ZodString;
|
|
29819
29819
|
updatedAt: z.ZodString;
|
|
29820
29820
|
userId: z.ZodNullable<z.ZodString>;
|
|
@@ -29827,7 +29827,7 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
29827
29827
|
readonly keychain: "keychain";
|
|
29828
29828
|
readonly nango: "nango";
|
|
29829
29829
|
}>;
|
|
29830
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
29830
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
29831
29831
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
29832
29832
|
name: "created_at";
|
|
29833
29833
|
tableName: "tools";
|
|
@@ -30107,7 +30107,7 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
30107
30107
|
}, {}, {
|
|
30108
30108
|
length: 256;
|
|
30109
30109
|
}>;
|
|
30110
|
-
},
|
|
30110
|
+
}, drizzle_zod19.BuildRefine<{
|
|
30111
30111
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
30112
30112
|
name: "created_at";
|
|
30113
30113
|
tableName: "tools";
|
|
@@ -30430,8 +30430,8 @@ declare const FunctionListResponse: z.ZodObject<{
|
|
|
30430
30430
|
}, z.core.$strip>;
|
|
30431
30431
|
declare const FunctionToolListResponse: z.ZodObject<{
|
|
30432
30432
|
data: z.ZodArray<z.ZodObject<{
|
|
30433
|
-
id: z.ZodString;
|
|
30434
30433
|
name: z.ZodString;
|
|
30434
|
+
id: z.ZodString;
|
|
30435
30435
|
createdAt: z.ZodString;
|
|
30436
30436
|
updatedAt: z.ZodString;
|
|
30437
30437
|
agentId: z.ZodString;
|
|
@@ -30451,7 +30451,7 @@ declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
|
|
|
30451
30451
|
createdAt: z.ZodString;
|
|
30452
30452
|
updatedAt: z.ZodString;
|
|
30453
30453
|
functionToolId: z.ZodString;
|
|
30454
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
30454
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30455
30455
|
subAgentId: z.ZodString;
|
|
30456
30456
|
agentId: z.ZodString;
|
|
30457
30457
|
projectId: z.ZodString;
|
|
@@ -30639,9 +30639,9 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
|
30639
30639
|
createdAt: z.ZodString;
|
|
30640
30640
|
updatedAt: z.ZodString;
|
|
30641
30641
|
toolId: z.ZodString;
|
|
30642
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
30643
|
-
headers: z.ZodNullable<z.ZodType<
|
|
30644
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
30642
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30643
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30644
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30645
30645
|
subAgentId: z.ZodString;
|
|
30646
30646
|
agentId: z.ZodString;
|
|
30647
30647
|
projectId: z.ZodString;
|
|
@@ -30660,10 +30660,10 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
30660
30660
|
createdAt: z.ZodString;
|
|
30661
30661
|
updatedAt: z.ZodString;
|
|
30662
30662
|
enabled: z.ZodBoolean;
|
|
30663
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
30664
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
30663
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30664
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30665
30665
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30666
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
30666
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30667
30667
|
name: z.ZodString;
|
|
30668
30668
|
description: z.ZodNullable<z.ZodString>;
|
|
30669
30669
|
agentId: z.ZodString;
|
|
@@ -30729,8 +30729,8 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
30729
30729
|
triggerId: z.ZodString;
|
|
30730
30730
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
30731
30731
|
status: z.ZodString;
|
|
30732
|
-
requestPayload: z.ZodType<
|
|
30733
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
30732
|
+
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
30733
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30734
30734
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
30735
30735
|
createdAt: z.ZodString;
|
|
30736
30736
|
agentId: z.ZodString;
|
|
@@ -30747,16 +30747,16 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
30747
30747
|
}, z.core.$strip>;
|
|
30748
30748
|
declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
30749
30749
|
data: z.ZodObject<{
|
|
30750
|
-
id: z.ZodString;
|
|
30751
30750
|
name: z.ZodString;
|
|
30751
|
+
id: z.ZodString;
|
|
30752
30752
|
createdAt: z.ZodString;
|
|
30753
30753
|
updatedAt: z.ZodString;
|
|
30754
|
-
enabled: z.ZodBoolean;
|
|
30755
30754
|
description: z.ZodNullable<z.ZodString>;
|
|
30756
|
-
|
|
30757
|
-
|
|
30755
|
+
enabled: z.ZodBoolean;
|
|
30756
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30757
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30758
30758
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30759
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
30759
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30760
30760
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30761
30761
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30762
30762
|
algorithm: z.ZodEnum<{
|
|
@@ -30808,16 +30808,16 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
30808
30808
|
}, z.core.$strip>;
|
|
30809
30809
|
declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
30810
30810
|
data: z.ZodArray<z.ZodObject<{
|
|
30811
|
-
id: z.ZodString;
|
|
30812
30811
|
name: z.ZodString;
|
|
30812
|
+
id: z.ZodString;
|
|
30813
30813
|
createdAt: z.ZodString;
|
|
30814
30814
|
updatedAt: z.ZodString;
|
|
30815
|
-
enabled: z.ZodBoolean;
|
|
30816
30815
|
description: z.ZodNullable<z.ZodString>;
|
|
30817
|
-
|
|
30818
|
-
|
|
30816
|
+
enabled: z.ZodBoolean;
|
|
30817
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30818
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30819
30819
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30820
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
30820
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30821
30821
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30822
30822
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30823
30823
|
algorithm: z.ZodEnum<{
|
|
@@ -30874,12 +30874,12 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30874
30874
|
}, z.core.$strip>;
|
|
30875
30875
|
}, z.core.$strip>;
|
|
30876
30876
|
declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
30877
|
-
id: z.ZodString;
|
|
30878
30877
|
name: z.ZodString;
|
|
30878
|
+
id: z.ZodString;
|
|
30879
30879
|
createdAt: z.ZodString;
|
|
30880
30880
|
updatedAt: z.ZodString;
|
|
30881
|
-
enabled: z.ZodBoolean;
|
|
30882
30881
|
description: z.ZodNullable<z.ZodString>;
|
|
30882
|
+
enabled: z.ZodBoolean;
|
|
30883
30883
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30884
30884
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
30885
30885
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
@@ -30947,12 +30947,12 @@ declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
|
30947
30947
|
}, z.core.$strip>;
|
|
30948
30948
|
declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
30949
30949
|
data: z.ZodArray<z.ZodObject<{
|
|
30950
|
-
id: z.ZodString;
|
|
30951
30950
|
name: z.ZodString;
|
|
30951
|
+
id: z.ZodString;
|
|
30952
30952
|
createdAt: z.ZodString;
|
|
30953
30953
|
updatedAt: z.ZodString;
|
|
30954
|
-
enabled: z.ZodBoolean;
|
|
30955
30954
|
description: z.ZodNullable<z.ZodString>;
|
|
30955
|
+
enabled: z.ZodBoolean;
|
|
30956
30956
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30957
30957
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
30958
30958
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
@@ -31104,12 +31104,12 @@ declare const SubAgentSkillResponse: z.ZodObject<{
|
|
|
31104
31104
|
}, z.core.$strip>;
|
|
31105
31105
|
declare const SubAgentSkillWithIndexArrayResponse: z.ZodObject<{
|
|
31106
31106
|
data: z.ZodArray<z.ZodObject<{
|
|
31107
|
-
id: z.ZodString;
|
|
31108
31107
|
name: z.ZodString;
|
|
31108
|
+
id: z.ZodString;
|
|
31109
31109
|
createdAt: z.ZodString;
|
|
31110
31110
|
updatedAt: z.ZodString;
|
|
31111
|
-
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
31112
31111
|
description: z.ZodString;
|
|
31112
|
+
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
31113
31113
|
content: z.ZodString;
|
|
31114
31114
|
subAgentSkillId: z.ZodString;
|
|
31115
31115
|
subAgentId: z.ZodString;
|
|
@@ -31119,8 +31119,8 @@ declare const SubAgentSkillWithIndexArrayResponse: z.ZodObject<{
|
|
|
31119
31119
|
}, z.core.$strip>;
|
|
31120
31120
|
declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
31121
31121
|
data: z.ZodObject<{
|
|
31122
|
-
id: z.ZodString;
|
|
31123
31122
|
name: z.ZodString;
|
|
31123
|
+
id: z.ZodString;
|
|
31124
31124
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31125
31125
|
models: z.ZodObject<{
|
|
31126
31126
|
base: z.ZodObject<{
|
|
@@ -31149,8 +31149,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31149
31149
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31150
31150
|
id: z.ZodString;
|
|
31151
31151
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31152
|
-
id: z.ZodString;
|
|
31153
31152
|
name: z.ZodString;
|
|
31153
|
+
id: z.ZodString;
|
|
31154
31154
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31155
31155
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31156
31156
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -31288,27 +31288,27 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31288
31288
|
name: z.ZodString;
|
|
31289
31289
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31290
31290
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31291
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
31292
31291
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31293
|
-
|
|
31294
|
-
|
|
31292
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
31293
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
31294
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
31295
31295
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31296
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
31296
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
31297
31297
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31298
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
31298
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
31299
31299
|
id: z.ZodOptional<z.ZodString>;
|
|
31300
31300
|
}, z.core.$strip>>>;
|
|
31301
31301
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31302
31302
|
name: z.ZodString;
|
|
31303
31303
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31304
31304
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31305
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
31306
31305
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31306
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
31307
31307
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31308
31308
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31309
31309
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31310
31310
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31311
|
-
payload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
31311
|
+
payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
31312
31312
|
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
31313
31313
|
retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
31314
31314
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -31416,10 +31416,10 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31416
31416
|
}, z.core.$strip>>>;
|
|
31417
31417
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
31418
31418
|
name: z.ZodString;
|
|
31419
|
-
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
31420
31419
|
projectId: z.ZodString;
|
|
31421
31420
|
tenantId: z.ZodString;
|
|
31422
31421
|
description: z.ZodString;
|
|
31422
|
+
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
31423
31423
|
content: z.ZodString;
|
|
31424
31424
|
}>, z.core.$strip>>>;
|
|
31425
31425
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -31504,8 +31504,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31504
31504
|
}, z.core.$strip>>>;
|
|
31505
31505
|
}, z.core.$strip>>;
|
|
31506
31506
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31507
|
-
id: z.ZodString;
|
|
31508
31507
|
name: z.ZodString;
|
|
31508
|
+
id: z.ZodString;
|
|
31509
31509
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31510
31510
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31511
31511
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -31528,8 +31528,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31528
31528
|
}, z.core.$strip>;
|
|
31529
31529
|
declare const FullProjectSelectResponse: z.ZodObject<{
|
|
31530
31530
|
data: z.ZodObject<{
|
|
31531
|
-
id: z.ZodString;
|
|
31532
31531
|
name: z.ZodString;
|
|
31532
|
+
id: z.ZodString;
|
|
31533
31533
|
createdAt: z.ZodString;
|
|
31534
31534
|
updatedAt: z.ZodString;
|
|
31535
31535
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -31552,16 +31552,16 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31552
31552
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
31553
31553
|
}, z.core.$strip>>;
|
|
31554
31554
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31555
|
-
id: z.ZodString;
|
|
31556
31555
|
name: z.ZodString;
|
|
31556
|
+
id: z.ZodString;
|
|
31557
31557
|
createdAt: z.ZodString;
|
|
31558
31558
|
updatedAt: z.ZodString;
|
|
31559
31559
|
description: z.ZodNullable<z.ZodString>;
|
|
31560
31560
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
31561
31561
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
31562
31562
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31563
|
-
id: z.ZodString;
|
|
31564
31563
|
name: z.ZodString;
|
|
31564
|
+
id: z.ZodString;
|
|
31565
31565
|
createdAt: z.ZodString;
|
|
31566
31566
|
updatedAt: z.ZodString;
|
|
31567
31567
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -31698,8 +31698,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31698
31698
|
description: z.ZodString;
|
|
31699
31699
|
}, z.core.$strip>>>;
|
|
31700
31700
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31701
|
-
id: z.ZodString;
|
|
31702
31701
|
name: z.ZodString;
|
|
31702
|
+
id: z.ZodString;
|
|
31703
31703
|
createdAt: z.ZodString;
|
|
31704
31704
|
updatedAt: z.ZodString;
|
|
31705
31705
|
agentId: z.ZodString;
|
|
@@ -31738,10 +31738,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31738
31738
|
}>, z.core.$strip>>>;
|
|
31739
31739
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
31740
31740
|
id: z.ZodString;
|
|
31741
|
-
createdAt: z.ZodString;
|
|
31742
|
-
updatedAt: z.ZodString;
|
|
31743
31741
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
31744
31742
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
31743
|
+
createdAt: z.ZodString;
|
|
31744
|
+
updatedAt: z.ZodString;
|
|
31745
31745
|
}, z.core.$strip>>;
|
|
31746
31746
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
31747
31747
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -31807,8 +31807,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31807
31807
|
id: z.ZodString;
|
|
31808
31808
|
}>, z.core.$strip>>;
|
|
31809
31809
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31810
|
-
id: z.ZodString;
|
|
31811
31810
|
name: z.ZodString;
|
|
31811
|
+
id: z.ZodString;
|
|
31812
31812
|
createdAt: z.ZodString;
|
|
31813
31813
|
updatedAt: z.ZodString;
|
|
31814
31814
|
agentId: z.ZodString;
|
|
@@ -31955,8 +31955,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31955
31955
|
}, z.core.$strip>>>;
|
|
31956
31956
|
}, z.core.$strip>>;
|
|
31957
31957
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31958
|
-
id: z.ZodString;
|
|
31959
31958
|
name: z.ZodString;
|
|
31959
|
+
id: z.ZodString;
|
|
31960
31960
|
createdAt: z.ZodString;
|
|
31961
31961
|
updatedAt: z.ZodString;
|
|
31962
31962
|
userId: z.ZodNullable<z.ZodString>;
|
|
@@ -31969,7 +31969,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31969
31969
|
readonly keychain: "keychain";
|
|
31970
31970
|
readonly nango: "nango";
|
|
31971
31971
|
}>;
|
|
31972
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
31972
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
31973
31973
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
31974
31974
|
name: "created_at";
|
|
31975
31975
|
tableName: "tools";
|
|
@@ -32249,7 +32249,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32249
32249
|
}, {}, {
|
|
32250
32250
|
length: 256;
|
|
32251
32251
|
}>;
|
|
32252
|
-
},
|
|
32252
|
+
}, drizzle_zod19.BuildRefine<{
|
|
32253
32253
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
32254
32254
|
name: "created_at";
|
|
32255
32255
|
tableName: "tools";
|
|
@@ -32552,8 +32552,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32552
32552
|
}, z.core.$strip>;
|
|
32553
32553
|
declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
32554
32554
|
data: z.ZodObject<{
|
|
32555
|
-
id: z.ZodString;
|
|
32556
32555
|
name: z.ZodString;
|
|
32556
|
+
id: z.ZodString;
|
|
32557
32557
|
createdAt: z.ZodString;
|
|
32558
32558
|
updatedAt: z.ZodString;
|
|
32559
32559
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -32605,8 +32605,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32605
32605
|
id: z.ZodString;
|
|
32606
32606
|
}>, z.core.$strip>>;
|
|
32607
32607
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32608
|
-
id: z.ZodString;
|
|
32609
32608
|
name: z.ZodString;
|
|
32609
|
+
id: z.ZodString;
|
|
32610
32610
|
createdAt: z.ZodString;
|
|
32611
32611
|
updatedAt: z.ZodString;
|
|
32612
32612
|
agentId: z.ZodString;
|
|
@@ -32753,8 +32753,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32753
32753
|
}, z.core.$strip>>>;
|
|
32754
32754
|
}, z.core.$strip>>;
|
|
32755
32755
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32756
|
-
id: z.ZodString;
|
|
32757
32756
|
name: z.ZodString;
|
|
32757
|
+
id: z.ZodString;
|
|
32758
32758
|
createdAt: z.ZodString;
|
|
32759
32759
|
updatedAt: z.ZodString;
|
|
32760
32760
|
userId: z.ZodNullable<z.ZodString>;
|
|
@@ -32767,7 +32767,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32767
32767
|
readonly keychain: "keychain";
|
|
32768
32768
|
readonly nango: "nango";
|
|
32769
32769
|
}>;
|
|
32770
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
32770
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
32771
32771
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
32772
32772
|
name: "created_at";
|
|
32773
32773
|
tableName: "tools";
|
|
@@ -33047,7 +33047,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33047
33047
|
}, {}, {
|
|
33048
33048
|
length: 256;
|
|
33049
33049
|
}>;
|
|
33050
|
-
},
|
|
33050
|
+
}, drizzle_zod19.BuildRefine<{
|
|
33051
33051
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
33052
33052
|
name: "created_at";
|
|
33053
33053
|
tableName: "tools";
|
|
@@ -33344,8 +33344,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33344
33344
|
}>>>;
|
|
33345
33345
|
}, z.core.$strip>>>;
|
|
33346
33346
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33347
|
-
id: z.ZodString;
|
|
33348
33347
|
name: z.ZodString;
|
|
33348
|
+
id: z.ZodString;
|
|
33349
33349
|
createdAt: z.ZodString;
|
|
33350
33350
|
updatedAt: z.ZodString;
|
|
33351
33351
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -33397,8 +33397,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33397
33397
|
description: z.ZodString;
|
|
33398
33398
|
}, z.core.$strip>>>;
|
|
33399
33399
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33400
|
-
id: z.ZodString;
|
|
33401
33400
|
name: z.ZodString;
|
|
33401
|
+
id: z.ZodString;
|
|
33402
33402
|
createdAt: z.ZodString;
|
|
33403
33403
|
updatedAt: z.ZodString;
|
|
33404
33404
|
agentId: z.ZodString;
|
|
@@ -33437,10 +33437,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33437
33437
|
}>, z.core.$strip>>>;
|
|
33438
33438
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
33439
33439
|
id: z.ZodString;
|
|
33440
|
-
createdAt: z.ZodString;
|
|
33441
|
-
updatedAt: z.ZodString;
|
|
33442
33440
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
33443
33441
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
33442
|
+
createdAt: z.ZodString;
|
|
33443
|
+
updatedAt: z.ZodString;
|
|
33444
33444
|
}, z.core.$strip>>;
|
|
33445
33445
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
33446
33446
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -33476,8 +33476,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33476
33476
|
}, z.core.$strip>>;
|
|
33477
33477
|
prompt: z.ZodNullable<z.ZodString>;
|
|
33478
33478
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33479
|
-
id: z.ZodString;
|
|
33480
33479
|
name: z.ZodString;
|
|
33480
|
+
id: z.ZodString;
|
|
33481
33481
|
createdAt: z.ZodString;
|
|
33482
33482
|
updatedAt: z.ZodString;
|
|
33483
33483
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -33590,8 +33590,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33590
33590
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33591
33591
|
id: z.ZodString;
|
|
33592
33592
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33593
|
-
id: z.ZodString;
|
|
33594
33593
|
name: z.ZodString;
|
|
33594
|
+
id: z.ZodString;
|
|
33595
33595
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
33596
33596
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33597
33597
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -33729,27 +33729,27 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33729
33729
|
name: z.ZodString;
|
|
33730
33730
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
33731
33731
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33732
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
33733
33732
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33734
|
-
|
|
33735
|
-
|
|
33733
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
33734
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33735
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33736
33736
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33737
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
33737
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33738
33738
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33739
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
33739
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33740
33740
|
id: z.ZodOptional<z.ZodString>;
|
|
33741
33741
|
}, z.core.$strip>>>;
|
|
33742
33742
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33743
33743
|
name: z.ZodString;
|
|
33744
33744
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
33745
33745
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33746
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
33747
33746
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33747
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
33748
33748
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33749
33749
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33750
33750
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33751
33751
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33752
|
-
payload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
33752
|
+
payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33753
33753
|
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
33754
33754
|
retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
33755
33755
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -33797,16 +33797,16 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33797
33797
|
}, z.core.$strip>;
|
|
33798
33798
|
declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
33799
33799
|
data: z.ZodObject<{
|
|
33800
|
-
id: z.ZodString;
|
|
33801
33800
|
name: z.ZodString;
|
|
33801
|
+
id: z.ZodString;
|
|
33802
33802
|
createdAt: z.ZodString;
|
|
33803
33803
|
updatedAt: z.ZodString;
|
|
33804
33804
|
description: z.ZodNullable<z.ZodString>;
|
|
33805
33805
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33806
33806
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
33807
33807
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33808
|
-
id: z.ZodString;
|
|
33809
33808
|
name: z.ZodString;
|
|
33809
|
+
id: z.ZodString;
|
|
33810
33810
|
createdAt: z.ZodString;
|
|
33811
33811
|
updatedAt: z.ZodString;
|
|
33812
33812
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -33943,8 +33943,8 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33943
33943
|
description: z.ZodString;
|
|
33944
33944
|
}, z.core.$strip>>>;
|
|
33945
33945
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33946
|
-
id: z.ZodString;
|
|
33947
33946
|
name: z.ZodString;
|
|
33947
|
+
id: z.ZodString;
|
|
33948
33948
|
createdAt: z.ZodString;
|
|
33949
33949
|
updatedAt: z.ZodString;
|
|
33950
33950
|
agentId: z.ZodString;
|
|
@@ -33983,10 +33983,10 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33983
33983
|
}>, z.core.$strip>>>;
|
|
33984
33984
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
33985
33985
|
id: z.ZodString;
|
|
33986
|
-
createdAt: z.ZodString;
|
|
33987
|
-
updatedAt: z.ZodString;
|
|
33988
33986
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
33989
33987
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
33988
|
+
createdAt: z.ZodString;
|
|
33989
|
+
updatedAt: z.ZodString;
|
|
33990
33990
|
}, z.core.$strip>>;
|
|
33991
33991
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
33992
33992
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -34179,7 +34179,7 @@ declare const SubAgentTeamAgentRelationResponse: z.ZodObject<{
|
|
|
34179
34179
|
createdAt: z.ZodString;
|
|
34180
34180
|
updatedAt: z.ZodString;
|
|
34181
34181
|
targetAgentId: z.ZodString;
|
|
34182
|
-
headers: z.ZodNullable<z.ZodType<
|
|
34182
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
34183
34183
|
subAgentId: z.ZodString;
|
|
34184
34184
|
agentId: z.ZodString;
|
|
34185
34185
|
projectId: z.ZodString;
|
|
@@ -34192,7 +34192,7 @@ declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
|
|
|
34192
34192
|
createdAt: z.ZodString;
|
|
34193
34193
|
updatedAt: z.ZodString;
|
|
34194
34194
|
targetAgentId: z.ZodString;
|
|
34195
|
-
headers: z.ZodNullable<z.ZodType<
|
|
34195
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
34196
34196
|
subAgentId: z.ZodString;
|
|
34197
34197
|
agentId: z.ZodString;
|
|
34198
34198
|
projectId: z.ZodString;
|
|
@@ -34211,7 +34211,7 @@ declare const SubAgentExternalAgentRelationResponse: z.ZodObject<{
|
|
|
34211
34211
|
createdAt: z.ZodString;
|
|
34212
34212
|
updatedAt: z.ZodString;
|
|
34213
34213
|
externalAgentId: z.ZodString;
|
|
34214
|
-
headers: z.ZodNullable<z.ZodType<
|
|
34214
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
34215
34215
|
subAgentId: z.ZodString;
|
|
34216
34216
|
agentId: z.ZodString;
|
|
34217
34217
|
projectId: z.ZodString;
|
|
@@ -34224,7 +34224,7 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
|
34224
34224
|
createdAt: z.ZodString;
|
|
34225
34225
|
updatedAt: z.ZodString;
|
|
34226
34226
|
externalAgentId: z.ZodString;
|
|
34227
|
-
headers: z.ZodNullable<z.ZodType<
|
|
34227
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
34228
34228
|
subAgentId: z.ZodString;
|
|
34229
34229
|
agentId: z.ZodString;
|
|
34230
34230
|
projectId: z.ZodString;
|
|
@@ -34451,7 +34451,7 @@ declare const PaginationWithRefQueryParamsSchema: z.ZodObject<{
|
|
|
34451
34451
|
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
34452
34452
|
ref: z.ZodOptional<z.ZodString>;
|
|
34453
34453
|
}, z.core.$strip>;
|
|
34454
|
-
declare const ProjectMetadataSelectSchema:
|
|
34454
|
+
declare const ProjectMetadataSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
34455
34455
|
id: drizzle_orm_pg_core211.PgColumn<{
|
|
34456
34456
|
name: "id";
|
|
34457
34457
|
tableName: "project_metadata";
|
|
@@ -34545,7 +34545,7 @@ declare const ProjectMetadataSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
34545
34545
|
}, {}, {
|
|
34546
34546
|
length: 512;
|
|
34547
34547
|
}>;
|
|
34548
|
-
},
|
|
34548
|
+
}, drizzle_zod19.BuildRefine<{
|
|
34549
34549
|
id: drizzle_orm_pg_core211.PgColumn<{
|
|
34550
34550
|
name: "id";
|
|
34551
34551
|
tableName: "project_metadata";
|
|
@@ -34659,7 +34659,7 @@ declare const WorkAppGitHubAccountTypeSchema: z.ZodEnum<{
|
|
|
34659
34659
|
User: "User";
|
|
34660
34660
|
Organization: "Organization";
|
|
34661
34661
|
}>;
|
|
34662
|
-
declare const WorkAppGitHubInstallationSelectSchema:
|
|
34662
|
+
declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
34663
34663
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
34664
34664
|
name: "created_at";
|
|
34665
34665
|
tableName: "work_app_github_installations";
|
|
@@ -34825,7 +34825,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
34825
34825
|
}, {}, {
|
|
34826
34826
|
length: 256;
|
|
34827
34827
|
}>;
|
|
34828
|
-
},
|
|
34828
|
+
}, drizzle_zod19.BuildRefine<{
|
|
34829
34829
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
34830
34830
|
name: "created_at";
|
|
34831
34831
|
tableName: "work_app_github_installations";
|
|
@@ -34994,8 +34994,8 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
34994
34994
|
}, undefined>, undefined>;
|
|
34995
34995
|
declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
|
|
34996
34996
|
id: z.ZodString;
|
|
34997
|
-
accountId: z.ZodString;
|
|
34998
34997
|
tenantId: z.ZodString;
|
|
34998
|
+
accountId: z.ZodString;
|
|
34999
34999
|
installationId: z.ZodString;
|
|
35000
35000
|
accountLogin: z.ZodString;
|
|
35001
35001
|
accountType: z.ZodEnum<{
|
|
@@ -35025,8 +35025,8 @@ declare const WorkAppGithubInstallationApiSelectSchema: z.ZodObject<OmitTenantSc
|
|
|
35025
35025
|
}>, z.core.$strip>;
|
|
35026
35026
|
declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<OmitGeneratedFields<{
|
|
35027
35027
|
id: z.ZodString;
|
|
35028
|
-
accountId: z.ZodString;
|
|
35029
35028
|
tenantId: z.ZodString;
|
|
35029
|
+
accountId: z.ZodString;
|
|
35030
35030
|
installationId: z.ZodString;
|
|
35031
35031
|
accountLogin: z.ZodString;
|
|
35032
35032
|
accountType: z.ZodEnum<{
|
|
@@ -35040,7 +35040,7 @@ declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<OmitGenerate
|
|
|
35040
35040
|
disconnected: "disconnected";
|
|
35041
35041
|
}>>>;
|
|
35042
35042
|
}>, z.core.$strip>;
|
|
35043
|
-
declare const WorkAppGitHubRepositorySelectSchema:
|
|
35043
|
+
declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
35044
35044
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
35045
35045
|
name: "created_at";
|
|
35046
35046
|
tableName: "work_app_github_repositories";
|
|
@@ -35185,7 +35185,7 @@ declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod15.BuildSchema<"se
|
|
|
35185
35185
|
identity: undefined;
|
|
35186
35186
|
generated: undefined;
|
|
35187
35187
|
}, {}, {}>;
|
|
35188
|
-
},
|
|
35188
|
+
}, drizzle_zod19.BuildRefine<{
|
|
35189
35189
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
35190
35190
|
name: "created_at";
|
|
35191
35191
|
tableName: "work_app_github_repositories";
|
|
@@ -35351,7 +35351,7 @@ declare const WorkAppGitHubRepositoryApiInsertSchema: z.ZodObject<OmitGeneratedF
|
|
|
35351
35351
|
repositoryFullName: z.ZodString;
|
|
35352
35352
|
private: z.ZodOptional<z.ZodBoolean>;
|
|
35353
35353
|
}>>, z.core.$strip>;
|
|
35354
|
-
declare const WorkAppGitHubProjectRepositoryAccessSelectSchema:
|
|
35354
|
+
declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
35355
35355
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
35356
35356
|
name: "created_at";
|
|
35357
35357
|
tableName: "work_app_github_project_repository_access";
|
|
@@ -35462,7 +35462,7 @@ declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod15.Bu
|
|
|
35462
35462
|
}, {}, {
|
|
35463
35463
|
length: 256;
|
|
35464
35464
|
}>;
|
|
35465
|
-
},
|
|
35465
|
+
}, drizzle_zod19.BuildRefine<{
|
|
35466
35466
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
35467
35467
|
name: "created_at";
|
|
35468
35468
|
tableName: "work_app_github_project_repository_access";
|
|
@@ -35574,7 +35574,7 @@ declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod15.Bu
|
|
|
35574
35574
|
length: 256;
|
|
35575
35575
|
}>;
|
|
35576
35576
|
}, undefined>, undefined>;
|
|
35577
|
-
declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema:
|
|
35577
|
+
declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
35578
35578
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
35579
35579
|
name: "created_at";
|
|
35580
35580
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
@@ -35704,7 +35704,7 @@ declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema: drizzle_zod15.Bu
|
|
|
35704
35704
|
}, {}, {
|
|
35705
35705
|
length: 256;
|
|
35706
35706
|
}>;
|
|
35707
|
-
},
|
|
35707
|
+
}, drizzle_zod19.BuildRefine<{
|
|
35708
35708
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
35709
35709
|
name: "created_at";
|
|
35710
35710
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
@@ -35858,7 +35858,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
35858
35858
|
all: "all";
|
|
35859
35859
|
selected: "selected";
|
|
35860
35860
|
}>;
|
|
35861
|
-
repositories: z.ZodArray<
|
|
35861
|
+
repositories: z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
35862
35862
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
35863
35863
|
name: "created_at";
|
|
35864
35864
|
tableName: "work_app_github_repositories";
|
|
@@ -36003,7 +36003,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
36003
36003
|
identity: undefined;
|
|
36004
36004
|
generated: undefined;
|
|
36005
36005
|
}, {}, {}>;
|
|
36006
|
-
},
|
|
36006
|
+
}, drizzle_zod19.BuildRefine<{
|
|
36007
36007
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
36008
36008
|
name: "created_at";
|
|
36009
36009
|
tableName: "work_app_github_repositories";
|