@inkeep/agents-core 0.78.5 → 0.79.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/data-access/index.d.ts +2 -1
- package/dist/data-access/index.js +2 -1
- package/dist/data-access/manage/agents.d.ts +26 -26
- package/dist/data-access/manage/artifactComponents.d.ts +2 -2
- package/dist/data-access/manage/contextConfigs.d.ts +12 -12
- package/dist/data-access/manage/dataComponents.d.ts +2 -2
- package/dist/data-access/manage/functionTools.d.ts +6 -6
- package/dist/data-access/manage/skills.d.ts +4 -4
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgents.d.ts +6 -6
- package/dist/data-access/manage/tools.d.ts +12 -12
- package/dist/data-access/manage/triggers.d.ts +3 -3
- package/dist/data-access/manage/webhookDestinations.d.ts +2 -1
- package/dist/data-access/runtime/apiKeys.d.ts +4 -4
- package/dist/data-access/runtime/apps.d.ts +2 -2
- package/dist/data-access/runtime/conversations.d.ts +12 -12
- package/dist/data-access/runtime/events.d.ts +3 -3
- package/dist/data-access/runtime/feedback.d.ts +2 -2
- package/dist/data-access/runtime/messages.d.ts +18 -18
- package/dist/data-access/runtime/organizations.d.ts +4 -3
- package/dist/data-access/runtime/organizations.js +5 -4
- package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +5 -5
- package/dist/data-access/runtime/tasks.d.ts +1 -1
- package/dist/data-access/runtime/toolApprovalDecisions.d.ts +37 -0
- package/dist/data-access/runtime/toolApprovalDecisions.js +76 -0
- package/dist/db/manage/manage-schema.d.ts +420 -401
- package/dist/db/manage/manage-schema.js +2 -1
- package/dist/db/runtime/runtime-schema.d.ts +562 -414
- package/dist/db/runtime/runtime-schema.js +30 -1
- package/dist/index.d.ts +3 -2
- package/dist/index.js +3 -2
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas/skills.d.ts +25 -25
- package/dist/validation/schemas.d.ts +633 -588
- package/dist/validation/schemas.js +6 -2
- package/drizzle/manage/0024_blue_junta.sql +2 -0
- package/drizzle/manage/meta/0024_snapshot.json +4323 -0
- package/drizzle/manage/meta/_journal.json +7 -0
- package/drizzle/runtime/0044_productive_bromley.sql +12 -0
- package/drizzle/runtime/meta/0044_snapshot.json +6386 -0
- package/drizzle/runtime/meta/_journal.json +7 -0
- 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_core297 from "drizzle-orm/pg-core";
|
|
7
|
-
import * as
|
|
7
|
+
import * as drizzle_zod15 from "drizzle-zod";
|
|
8
8
|
|
|
9
9
|
//#region src/validation/schemas.d.ts
|
|
10
10
|
declare const TextPartSchema: z.ZodObject<{
|
|
@@ -136,7 +136,7 @@ declare const FunctionToolConfigSchema: z.ZodObject<{
|
|
|
136
136
|
type FunctionToolConfig = Omit<z.infer<typeof FunctionToolConfigSchema>, 'execute'> & {
|
|
137
137
|
execute: ((params: any) => Promise<any>) | string;
|
|
138
138
|
};
|
|
139
|
-
declare const SubAgentSelectSchema:
|
|
139
|
+
declare const SubAgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
140
140
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
141
141
|
name: "created_at";
|
|
142
142
|
tableName: "sub_agents";
|
|
@@ -434,7 +434,7 @@ declare const SubAgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
434
434
|
}, {}, {
|
|
435
435
|
length: 256;
|
|
436
436
|
}>;
|
|
437
|
-
},
|
|
437
|
+
}, drizzle_zod15.BuildRefine<{
|
|
438
438
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
439
439
|
name: "created_at";
|
|
440
440
|
tableName: "sub_agents";
|
|
@@ -851,6 +851,7 @@ declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
|
851
851
|
createdAt: z.ZodString;
|
|
852
852
|
updatedAt: z.ZodString;
|
|
853
853
|
description: z.ZodNullable<z.ZodString>;
|
|
854
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
854
855
|
models: z.ZodNullable<z.ZodType<{
|
|
855
856
|
base?: {
|
|
856
857
|
model?: string | undefined;
|
|
@@ -937,7 +938,6 @@ declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
|
937
938
|
}, {
|
|
938
939
|
stepCountIs?: number | undefined;
|
|
939
940
|
}>>>;
|
|
940
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
941
941
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
942
942
|
outputContract: z.ZodNullable<z.ZodType<{
|
|
943
943
|
[x: string]: unknown;
|
|
@@ -979,6 +979,7 @@ declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
|
979
979
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
980
980
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
981
981
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
982
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
982
983
|
models: z.ZodOptional<z.ZodObject<{
|
|
983
984
|
base: z.ZodOptional<z.ZodObject<{
|
|
984
985
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -1008,7 +1009,6 @@ declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
|
1008
1009
|
}, {
|
|
1009
1010
|
stepCountIs?: number | undefined;
|
|
1010
1011
|
}>>>>;
|
|
1011
|
-
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1012
1012
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
1013
1013
|
outputContract: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1014
1014
|
allowText: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1029,6 +1029,7 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
1029
1029
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
1030
1030
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
1031
1031
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
1032
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
1032
1033
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
1033
1034
|
base: z.ZodOptional<z.ZodObject<{
|
|
1034
1035
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -1058,7 +1059,6 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
1058
1059
|
}, {
|
|
1059
1060
|
stepCountIs?: number | undefined;
|
|
1060
1061
|
}>>>>>>;
|
|
1061
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
1062
1062
|
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
1063
1063
|
outputContract: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1064
1064
|
allowText: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1073,7 +1073,7 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
1073
1073
|
retryBudget: z.ZodOptional<z.ZodNumber>;
|
|
1074
1074
|
}, z.core.$loose>>>>>;
|
|
1075
1075
|
}, z.core.$strip>;
|
|
1076
|
-
declare const SubAgentRelationSelectSchema:
|
|
1076
|
+
declare const SubAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
1077
1077
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
1078
1078
|
name: "created_at";
|
|
1079
1079
|
tableName: "sub_agent_relations";
|
|
@@ -1241,7 +1241,7 @@ declare const SubAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
1241
1241
|
}, {}, {
|
|
1242
1242
|
length: 256;
|
|
1243
1243
|
}>;
|
|
1244
|
-
},
|
|
1244
|
+
}, drizzle_zod15.BuildRefine<{
|
|
1245
1245
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
1246
1246
|
name: "created_at";
|
|
1247
1247
|
tableName: "sub_agent_relations";
|
|
@@ -1507,7 +1507,7 @@ declare const ExternalSubAgentRelationApiInsertSchema: z.ZodObject<{
|
|
|
1507
1507
|
relationType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1508
1508
|
externalSubAgentId: z.ZodString;
|
|
1509
1509
|
}, z.core.$strip>;
|
|
1510
|
-
declare const AgentSelectSchema:
|
|
1510
|
+
declare const AgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
1511
1511
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
1512
1512
|
name: "created_at";
|
|
1513
1513
|
tableName: "agent";
|
|
@@ -1837,7 +1837,7 @@ declare const AgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
1837
1837
|
}, {}, {
|
|
1838
1838
|
length: 256;
|
|
1839
1839
|
}>;
|
|
1840
|
-
},
|
|
1840
|
+
}, drizzle_zod15.BuildRefine<{
|
|
1841
1841
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
1842
1842
|
name: "created_at";
|
|
1843
1843
|
tableName: "agent";
|
|
@@ -2168,7 +2168,7 @@ declare const AgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
2168
2168
|
length: 256;
|
|
2169
2169
|
}>;
|
|
2170
2170
|
}, undefined>, undefined>;
|
|
2171
|
-
declare const AgentInsertSchema:
|
|
2171
|
+
declare const AgentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
2172
2172
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
2173
2173
|
name: "created_at";
|
|
2174
2174
|
tableName: "agent";
|
|
@@ -2498,7 +2498,7 @@ declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
2498
2498
|
}, {}, {
|
|
2499
2499
|
length: 256;
|
|
2500
2500
|
}>;
|
|
2501
|
-
},
|
|
2501
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
2502
2502
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
2503
2503
|
name: "created_at";
|
|
2504
2504
|
tableName: "agent";
|
|
@@ -2828,7 +2828,7 @@ declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
2828
2828
|
}, {}, {
|
|
2829
2829
|
length: 256;
|
|
2830
2830
|
}>;
|
|
2831
|
-
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "
|
|
2831
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "prompt" | "projectId" | "tenantId" | "defaultSubAgentId" | "contextConfigId" | "models" | "statusUpdates" | "stopWhen" | "executionMode">, undefined>, undefined>;
|
|
2832
2832
|
declare const AgentUpdateSchema: z.ZodObject<{
|
|
2833
2833
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2834
2834
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2994,6 +2994,9 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
2994
2994
|
createdAt: z.ZodString;
|
|
2995
2995
|
updatedAt: z.ZodString;
|
|
2996
2996
|
description: z.ZodNullable<z.ZodString>;
|
|
2997
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
2998
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
2999
|
+
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
2997
3000
|
models: z.ZodNullable<z.ZodType<{
|
|
2998
3001
|
base?: {
|
|
2999
3002
|
model?: string | undefined;
|
|
@@ -3071,18 +3074,6 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
3071
3074
|
allowedProviders?: string[] | undefined;
|
|
3072
3075
|
} | undefined;
|
|
3073
3076
|
}>>>;
|
|
3074
|
-
stopWhen: z.ZodNullable<z.ZodType<{
|
|
3075
|
-
transferCountIs?: number | undefined;
|
|
3076
|
-
}, {
|
|
3077
|
-
transferCountIs?: number | undefined;
|
|
3078
|
-
}, z.core.$ZodTypeInternals<{
|
|
3079
|
-
transferCountIs?: number | undefined;
|
|
3080
|
-
}, {
|
|
3081
|
-
transferCountIs?: number | undefined;
|
|
3082
|
-
}>>>;
|
|
3083
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
3084
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
3085
|
-
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
3086
3077
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
3087
3078
|
enabled?: boolean | undefined;
|
|
3088
3079
|
numEvents?: number | undefined;
|
|
@@ -3140,12 +3131,24 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
3140
3131
|
} | undefined;
|
|
3141
3132
|
}[] | undefined;
|
|
3142
3133
|
}>>>;
|
|
3134
|
+
stopWhen: z.ZodNullable<z.ZodType<{
|
|
3135
|
+
transferCountIs?: number | undefined;
|
|
3136
|
+
}, {
|
|
3137
|
+
transferCountIs?: number | undefined;
|
|
3138
|
+
}, z.core.$ZodTypeInternals<{
|
|
3139
|
+
transferCountIs?: number | undefined;
|
|
3140
|
+
}, {
|
|
3141
|
+
transferCountIs?: number | undefined;
|
|
3142
|
+
}>>>;
|
|
3143
3143
|
executionMode: z.ZodString;
|
|
3144
3144
|
}, z.core.$strip>;
|
|
3145
3145
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
3146
3146
|
id: z.ZodString;
|
|
3147
3147
|
name: z.ZodString;
|
|
3148
3148
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3149
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3150
|
+
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3151
|
+
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3149
3152
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3150
3153
|
base?: {
|
|
3151
3154
|
model?: string | undefined;
|
|
@@ -3223,18 +3226,6 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
3223
3226
|
allowedProviders?: string[] | undefined;
|
|
3224
3227
|
} | undefined;
|
|
3225
3228
|
}>>>>;
|
|
3226
|
-
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3227
|
-
transferCountIs?: number | undefined;
|
|
3228
|
-
}, {
|
|
3229
|
-
transferCountIs?: number | undefined;
|
|
3230
|
-
}, z.core.$ZodTypeInternals<{
|
|
3231
|
-
transferCountIs?: number | undefined;
|
|
3232
|
-
}, {
|
|
3233
|
-
transferCountIs?: number | undefined;
|
|
3234
|
-
}>>>>;
|
|
3235
|
-
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3236
|
-
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3237
|
-
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3238
3229
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3239
3230
|
enabled?: boolean | undefined;
|
|
3240
3231
|
numEvents?: number | undefined;
|
|
@@ -3292,11 +3283,23 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
3292
3283
|
} | undefined;
|
|
3293
3284
|
}[] | undefined;
|
|
3294
3285
|
}>>>>;
|
|
3286
|
+
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3287
|
+
transferCountIs?: number | undefined;
|
|
3288
|
+
}, {
|
|
3289
|
+
transferCountIs?: number | undefined;
|
|
3290
|
+
}, z.core.$ZodTypeInternals<{
|
|
3291
|
+
transferCountIs?: number | undefined;
|
|
3292
|
+
}, {
|
|
3293
|
+
transferCountIs?: number | undefined;
|
|
3294
|
+
}>>>>;
|
|
3295
3295
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
3296
3296
|
}, z.core.$strip>;
|
|
3297
3297
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
3298
3298
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3299
3299
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3300
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3301
|
+
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3302
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3300
3303
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3301
3304
|
base?: {
|
|
3302
3305
|
model?: string | undefined;
|
|
@@ -3374,18 +3377,6 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
3374
3377
|
allowedProviders?: string[] | undefined;
|
|
3375
3378
|
} | undefined;
|
|
3376
3379
|
}>>>>>>;
|
|
3377
|
-
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3378
|
-
transferCountIs?: number | undefined;
|
|
3379
|
-
}, {
|
|
3380
|
-
transferCountIs?: number | undefined;
|
|
3381
|
-
}, z.core.$ZodTypeInternals<{
|
|
3382
|
-
transferCountIs?: number | undefined;
|
|
3383
|
-
}, {
|
|
3384
|
-
transferCountIs?: number | undefined;
|
|
3385
|
-
}>>>>>>;
|
|
3386
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3387
|
-
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3388
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3389
3380
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3390
3381
|
enabled?: boolean | undefined;
|
|
3391
3382
|
numEvents?: number | undefined;
|
|
@@ -3443,6 +3434,15 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
3443
3434
|
} | undefined;
|
|
3444
3435
|
}[] | undefined;
|
|
3445
3436
|
}>>>>>>;
|
|
3437
|
+
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3438
|
+
transferCountIs?: number | undefined;
|
|
3439
|
+
}, {
|
|
3440
|
+
transferCountIs?: number | undefined;
|
|
3441
|
+
}, z.core.$ZodTypeInternals<{
|
|
3442
|
+
transferCountIs?: number | undefined;
|
|
3443
|
+
}, {
|
|
3444
|
+
transferCountIs?: number | undefined;
|
|
3445
|
+
}>>>>>>;
|
|
3446
3446
|
executionMode: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3447
3447
|
}, z.core.$strip>;
|
|
3448
3448
|
declare const TriggerAuthHeaderInputSchema: z.ZodObject<{
|
|
@@ -3637,15 +3637,15 @@ declare const SignatureValidationOptionsSchema: z.ZodObject<{
|
|
|
3637
3637
|
*/
|
|
3638
3638
|
declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
3639
3639
|
algorithm: z.ZodEnum<{
|
|
3640
|
+
md5: "md5";
|
|
3640
3641
|
sha256: "sha256";
|
|
3641
3642
|
sha512: "sha512";
|
|
3642
3643
|
sha384: "sha384";
|
|
3643
3644
|
sha1: "sha1";
|
|
3644
|
-
md5: "md5";
|
|
3645
3645
|
}>;
|
|
3646
3646
|
encoding: z.ZodEnum<{
|
|
3647
|
-
hex: "hex";
|
|
3648
3647
|
base64: "base64";
|
|
3648
|
+
hex: "hex";
|
|
3649
3649
|
}>;
|
|
3650
3650
|
signature: z.ZodObject<{
|
|
3651
3651
|
source: z.ZodEnum<{
|
|
@@ -3721,10 +3721,10 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3721
3721
|
createdAt: z.ZodString;
|
|
3722
3722
|
updatedAt: z.ZodString;
|
|
3723
3723
|
enabled: z.ZodBoolean;
|
|
3724
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
3725
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
3724
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
3725
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
3726
3726
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
3727
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
3727
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
3728
3728
|
name: z.ZodString;
|
|
3729
3729
|
description: z.ZodNullable<z.ZodString>;
|
|
3730
3730
|
agentId: z.ZodString;
|
|
@@ -3734,15 +3734,15 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3734
3734
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3735
3735
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3736
3736
|
algorithm: z.ZodEnum<{
|
|
3737
|
+
md5: "md5";
|
|
3737
3738
|
sha256: "sha256";
|
|
3738
3739
|
sha512: "sha512";
|
|
3739
3740
|
sha384: "sha384";
|
|
3740
3741
|
sha1: "sha1";
|
|
3741
|
-
md5: "md5";
|
|
3742
3742
|
}>;
|
|
3743
3743
|
encoding: z.ZodEnum<{
|
|
3744
|
-
hex: "hex";
|
|
3745
3744
|
base64: "base64";
|
|
3745
|
+
hex: "hex";
|
|
3746
3746
|
}>;
|
|
3747
3747
|
signature: z.ZodObject<{
|
|
3748
3748
|
source: z.ZodEnum<{
|
|
@@ -3784,7 +3784,7 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3784
3784
|
out: {};
|
|
3785
3785
|
in: {};
|
|
3786
3786
|
}>;
|
|
3787
|
-
declare const TriggerInsertSchema:
|
|
3787
|
+
declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
3788
3788
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
3789
3789
|
name: "created_at";
|
|
3790
3790
|
tableName: "triggers";
|
|
@@ -3941,8 +3941,8 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3941
3941
|
dataType: "json";
|
|
3942
3942
|
columnType: "PgJsonb";
|
|
3943
3943
|
data: {
|
|
3944
|
-
algorithm: "
|
|
3945
|
-
encoding: "
|
|
3944
|
+
algorithm: "md5" | "sha256" | "sha512" | "sha384" | "sha1";
|
|
3945
|
+
encoding: "base64" | "hex";
|
|
3946
3946
|
signature: {
|
|
3947
3947
|
source: "query" | "body" | "header";
|
|
3948
3948
|
key: string;
|
|
@@ -3978,8 +3978,8 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3978
3978
|
generated: undefined;
|
|
3979
3979
|
}, {}, {
|
|
3980
3980
|
$type: {
|
|
3981
|
-
algorithm: "
|
|
3982
|
-
encoding: "
|
|
3981
|
+
algorithm: "md5" | "sha256" | "sha512" | "sha384" | "sha1";
|
|
3982
|
+
encoding: "base64" | "hex";
|
|
3983
3983
|
signature: {
|
|
3984
3984
|
source: "query" | "body" | "header";
|
|
3985
3985
|
key: string;
|
|
@@ -4171,7 +4171,7 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
4171
4171
|
}, {}, {
|
|
4172
4172
|
length: 256;
|
|
4173
4173
|
}>;
|
|
4174
|
-
},
|
|
4174
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
4175
4175
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
4176
4176
|
name: "created_at";
|
|
4177
4177
|
tableName: "triggers";
|
|
@@ -4328,8 +4328,8 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
4328
4328
|
dataType: "json";
|
|
4329
4329
|
columnType: "PgJsonb";
|
|
4330
4330
|
data: {
|
|
4331
|
-
algorithm: "
|
|
4332
|
-
encoding: "
|
|
4331
|
+
algorithm: "md5" | "sha256" | "sha512" | "sha384" | "sha1";
|
|
4332
|
+
encoding: "base64" | "hex";
|
|
4333
4333
|
signature: {
|
|
4334
4334
|
source: "query" | "body" | "header";
|
|
4335
4335
|
key: string;
|
|
@@ -4365,8 +4365,8 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
4365
4365
|
generated: undefined;
|
|
4366
4366
|
}, {}, {
|
|
4367
4367
|
$type: {
|
|
4368
|
-
algorithm: "
|
|
4369
|
-
encoding: "
|
|
4368
|
+
algorithm: "md5" | "sha256" | "sha512" | "sha384" | "sha1";
|
|
4369
|
+
encoding: "base64" | "hex";
|
|
4370
4370
|
signature: {
|
|
4371
4371
|
source: "query" | "body" | "header";
|
|
4372
4372
|
key: string;
|
|
@@ -4558,16 +4558,16 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
4558
4558
|
}, {}, {
|
|
4559
4559
|
length: 256;
|
|
4560
4560
|
}>;
|
|
4561
|
-
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "enabled" | "
|
|
4561
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "enabled" | "agentId" | "projectId" | "tenantId" | "runAsUserId" | "createdBy" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification" | "dispatchDelayMs">, undefined>, undefined>;
|
|
4562
4562
|
declare const runAsUserIdsSchema: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4563
4563
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
4564
4564
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4565
4565
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4566
|
-
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4567
|
-
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4566
|
+
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
4567
|
+
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
4568
4568
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4569
4569
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4570
|
-
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4570
|
+
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
4571
4571
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4572
4572
|
dispatchDelayMs: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodInt>>>;
|
|
4573
4573
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -4596,22 +4596,24 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4596
4596
|
updatedAt: z.ZodString;
|
|
4597
4597
|
description: z.ZodNullable<z.ZodString>;
|
|
4598
4598
|
enabled: z.ZodBoolean;
|
|
4599
|
-
|
|
4600
|
-
|
|
4599
|
+
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4600
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4601
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4602
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4601
4603
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4602
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
4604
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4603
4605
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4604
4606
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4605
4607
|
algorithm: z.ZodEnum<{
|
|
4608
|
+
md5: "md5";
|
|
4606
4609
|
sha256: "sha256";
|
|
4607
4610
|
sha512: "sha512";
|
|
4608
4611
|
sha384: "sha384";
|
|
4609
4612
|
sha1: "sha1";
|
|
4610
|
-
md5: "md5";
|
|
4611
4613
|
}>;
|
|
4612
4614
|
encoding: z.ZodEnum<{
|
|
4613
|
-
hex: "hex";
|
|
4614
4615
|
base64: "base64";
|
|
4616
|
+
hex: "hex";
|
|
4615
4617
|
}>;
|
|
4616
4618
|
signature: z.ZodObject<{
|
|
4617
4619
|
source: z.ZodEnum<{
|
|
@@ -4646,24 +4648,22 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4646
4648
|
normalizeUnicode: z.ZodDefault<z.ZodBoolean>;
|
|
4647
4649
|
}, z.core.$strip>>;
|
|
4648
4650
|
}, z.core.$strip>>>;
|
|
4649
|
-
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4650
4651
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4651
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4652
4652
|
}, z.core.$strip>;
|
|
4653
4653
|
declare const TriggerApiInsertBaseSchema: z.ZodObject<{
|
|
4654
4654
|
id: z.ZodOptional<z.ZodString>;
|
|
4655
4655
|
name: z.ZodString;
|
|
4656
4656
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4657
4657
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4658
|
-
|
|
4659
|
-
|
|
4658
|
+
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4659
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4660
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4661
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4660
4662
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4661
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4663
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4662
4664
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4663
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4664
|
-
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4665
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4665
4666
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
4666
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4667
4667
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4668
4668
|
}, z.core.$strip>;
|
|
4669
4669
|
declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
@@ -4671,15 +4671,15 @@ declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
|
4671
4671
|
name: z.ZodString;
|
|
4672
4672
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4673
4673
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4674
|
-
|
|
4675
|
-
|
|
4674
|
+
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4675
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4676
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4677
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4676
4678
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4677
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4679
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4678
4680
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4679
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4680
|
-
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4681
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4681
4682
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
4682
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4683
4683
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4684
4684
|
}, z.core.$strip>;
|
|
4685
4685
|
declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
@@ -4689,8 +4689,10 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4689
4689
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4690
4690
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4691
4691
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
4692
|
-
|
|
4693
|
-
|
|
4692
|
+
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4693
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4694
|
+
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
4695
|
+
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
4694
4696
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4695
4697
|
authentication: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
4696
4698
|
headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -4700,10 +4702,8 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4700
4702
|
}, z.core.$strip>>>;
|
|
4701
4703
|
}, z.core.$strip>>>>;
|
|
4702
4704
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4703
|
-
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4704
|
-
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4705
|
+
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
4705
4706
|
dispatchDelayMs: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodInt>>>>;
|
|
4706
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4707
4707
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4708
4708
|
}, z.core.$strip>;
|
|
4709
4709
|
declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
@@ -4713,22 +4713,24 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4713
4713
|
updatedAt: z.ZodString;
|
|
4714
4714
|
description: z.ZodNullable<z.ZodString>;
|
|
4715
4715
|
enabled: z.ZodBoolean;
|
|
4716
|
-
|
|
4717
|
-
|
|
4716
|
+
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4717
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4718
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4719
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4718
4720
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4719
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
4721
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4720
4722
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4721
4723
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4722
4724
|
algorithm: z.ZodEnum<{
|
|
4725
|
+
md5: "md5";
|
|
4723
4726
|
sha256: "sha256";
|
|
4724
4727
|
sha512: "sha512";
|
|
4725
4728
|
sha384: "sha384";
|
|
4726
4729
|
sha1: "sha1";
|
|
4727
|
-
md5: "md5";
|
|
4728
4730
|
}>;
|
|
4729
4731
|
encoding: z.ZodEnum<{
|
|
4730
|
-
hex: "hex";
|
|
4731
4732
|
base64: "base64";
|
|
4733
|
+
hex: "hex";
|
|
4732
4734
|
}>;
|
|
4733
4735
|
signature: z.ZodObject<{
|
|
4734
4736
|
source: z.ZodEnum<{
|
|
@@ -4763,9 +4765,7 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4763
4765
|
normalizeUnicode: z.ZodDefault<z.ZodBoolean>;
|
|
4764
4766
|
}, z.core.$strip>>;
|
|
4765
4767
|
}, z.core.$strip>>>;
|
|
4766
|
-
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4767
4768
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4768
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4769
4769
|
runAsUserIds: z.ZodArray<z.ZodString>;
|
|
4770
4770
|
userCount: z.ZodNumber;
|
|
4771
4771
|
webhookUrl: z.ZodString;
|
|
@@ -4775,8 +4775,8 @@ declare const TriggerInvocationSelectSchema: z.ZodObject<{
|
|
|
4775
4775
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
4776
4776
|
batchId: z.ZodNullable<z.ZodString>;
|
|
4777
4777
|
status: z.ZodString;
|
|
4778
|
-
requestPayload: z.ZodType<
|
|
4779
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
4778
|
+
requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
4779
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4780
4780
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
4781
4781
|
createdAt: z.ZodString;
|
|
4782
4782
|
agentId: z.ZodString;
|
|
@@ -4797,7 +4797,7 @@ declare const TriggerInvocationSelectSchema: z.ZodObject<{
|
|
|
4797
4797
|
out: {};
|
|
4798
4798
|
in: {};
|
|
4799
4799
|
}>;
|
|
4800
|
-
declare const TriggerInvocationInsertSchema:
|
|
4800
|
+
declare const TriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
4801
4801
|
triggerId: drizzle_orm_pg_core297.PgColumn<{
|
|
4802
4802
|
name: "trigger_id";
|
|
4803
4803
|
tableName: "trigger_invocations";
|
|
@@ -5064,7 +5064,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
5064
5064
|
}, {}, {
|
|
5065
5065
|
length: 256;
|
|
5066
5066
|
}>;
|
|
5067
|
-
},
|
|
5067
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
5068
5068
|
triggerId: drizzle_orm_pg_core297.PgColumn<{
|
|
5069
5069
|
name: "trigger_id";
|
|
5070
5070
|
tableName: "trigger_invocations";
|
|
@@ -5331,7 +5331,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
5331
5331
|
}, {}, {
|
|
5332
5332
|
length: 256;
|
|
5333
5333
|
}>;
|
|
5334
|
-
}, "id" | "createdAt" | "ref" | "status" | "
|
|
5334
|
+
}, "id" | "createdAt" | "ref" | "status" | "agentId" | "projectId" | "tenantId" | "runAsUserId" | "triggerId" | "conversationId" | "batchId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
5335
5335
|
declare const SetTriggerUsersRequestSchema: z.ZodObject<{
|
|
5336
5336
|
userIds: z.ZodArray<z.ZodString>;
|
|
5337
5337
|
}, z.core.$strip>;
|
|
@@ -5364,8 +5364,8 @@ declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
5364
5364
|
hash: string;
|
|
5365
5365
|
}>>>>>;
|
|
5366
5366
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5367
|
-
requestPayload: z.ZodOptional<z.ZodType<
|
|
5368
|
-
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5367
|
+
requestPayload: z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
5368
|
+
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
5369
5369
|
errorMessage: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5370
5370
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5371
5371
|
agentId: z.ZodOptional<z.ZodString>;
|
|
@@ -5393,8 +5393,8 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5393
5393
|
triggerId: z.ZodString;
|
|
5394
5394
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
5395
5395
|
batchId: z.ZodNullable<z.ZodString>;
|
|
5396
|
-
requestPayload: z.ZodType<
|
|
5397
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
5396
|
+
requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
5397
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
5398
5398
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
5399
5399
|
}, z.core.$strip>;
|
|
5400
5400
|
declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
@@ -5421,8 +5421,8 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
5421
5421
|
triggerId: z.ZodString;
|
|
5422
5422
|
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5423
5423
|
batchId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5424
|
-
requestPayload: z.ZodType<
|
|
5425
|
-
transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5424
|
+
requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
5425
|
+
transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
5426
5426
|
errorMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5427
5427
|
id: z.ZodString;
|
|
5428
5428
|
}, z.core.$strip>;
|
|
@@ -5451,8 +5451,8 @@ declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
5451
5451
|
triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5452
5452
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5453
5453
|
batchId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5454
|
-
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<
|
|
5455
|
-
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5454
|
+
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
5455
|
+
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
5456
5456
|
errorMessage: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5457
5457
|
}, z.core.$strip>;
|
|
5458
5458
|
declare const WebhookDestinationEventTypeEnum: z.ZodEnum<{
|
|
@@ -5528,7 +5528,8 @@ declare const WebhookDestinationSelectSchema: z.ZodObject<{
|
|
|
5528
5528
|
createdAt: z.ZodString;
|
|
5529
5529
|
updatedAt: z.ZodString;
|
|
5530
5530
|
enabled: z.ZodBoolean;
|
|
5531
|
-
url: z.ZodString
|
|
5531
|
+
url: z.ZodNullable<z.ZodString>;
|
|
5532
|
+
slackChannelId: z.ZodNullable<z.ZodString>;
|
|
5532
5533
|
name: z.ZodString;
|
|
5533
5534
|
description: z.ZodNullable<z.ZodString>;
|
|
5534
5535
|
projectId: z.ZodString;
|
|
@@ -5550,7 +5551,7 @@ declare const WebhookDestinationSelectSchema: z.ZodObject<{
|
|
|
5550
5551
|
out: {};
|
|
5551
5552
|
in: {};
|
|
5552
5553
|
}>;
|
|
5553
|
-
declare const WebhookDestinationInsertSchema:
|
|
5554
|
+
declare const WebhookDestinationInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
5554
5555
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
5555
5556
|
name: "created_at";
|
|
5556
5557
|
tableName: "webhook_destinations";
|
|
@@ -5609,7 +5610,7 @@ declare const WebhookDestinationInsertSchema: drizzle_zod19.BuildSchema<"insert"
|
|
|
5609
5610
|
columnType: "PgText";
|
|
5610
5611
|
data: string;
|
|
5611
5612
|
driverParam: string;
|
|
5612
|
-
notNull:
|
|
5613
|
+
notNull: false;
|
|
5613
5614
|
hasDefault: false;
|
|
5614
5615
|
isPrimaryKey: false;
|
|
5615
5616
|
isAutoincrement: false;
|
|
@@ -5619,6 +5620,25 @@ declare const WebhookDestinationInsertSchema: drizzle_zod19.BuildSchema<"insert"
|
|
|
5619
5620
|
identity: undefined;
|
|
5620
5621
|
generated: undefined;
|
|
5621
5622
|
}, {}, {}>;
|
|
5623
|
+
slackChannelId: drizzle_orm_pg_core297.PgColumn<{
|
|
5624
|
+
name: "slack_channel_id";
|
|
5625
|
+
tableName: "webhook_destinations";
|
|
5626
|
+
dataType: "string";
|
|
5627
|
+
columnType: "PgVarchar";
|
|
5628
|
+
data: string;
|
|
5629
|
+
driverParam: string;
|
|
5630
|
+
notNull: false;
|
|
5631
|
+
hasDefault: false;
|
|
5632
|
+
isPrimaryKey: false;
|
|
5633
|
+
isAutoincrement: false;
|
|
5634
|
+
hasRuntimeDefault: false;
|
|
5635
|
+
enumValues: [string, ...string[]];
|
|
5636
|
+
baseColumn: never;
|
|
5637
|
+
identity: undefined;
|
|
5638
|
+
generated: undefined;
|
|
5639
|
+
}, {}, {
|
|
5640
|
+
length: 256;
|
|
5641
|
+
}>;
|
|
5622
5642
|
eventTypes: drizzle_orm_pg_core297.PgColumn<{
|
|
5623
5643
|
name: "event_types";
|
|
5624
5644
|
tableName: "webhook_destinations";
|
|
@@ -5750,7 +5770,7 @@ declare const WebhookDestinationInsertSchema: drizzle_zod19.BuildSchema<"insert"
|
|
|
5750
5770
|
}, {}, {
|
|
5751
5771
|
length: 256;
|
|
5752
5772
|
}>;
|
|
5753
|
-
},
|
|
5773
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
5754
5774
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
5755
5775
|
name: "created_at";
|
|
5756
5776
|
tableName: "webhook_destinations";
|
|
@@ -5809,7 +5829,7 @@ declare const WebhookDestinationInsertSchema: drizzle_zod19.BuildSchema<"insert"
|
|
|
5809
5829
|
columnType: "PgText";
|
|
5810
5830
|
data: string;
|
|
5811
5831
|
driverParam: string;
|
|
5812
|
-
notNull:
|
|
5832
|
+
notNull: false;
|
|
5813
5833
|
hasDefault: false;
|
|
5814
5834
|
isPrimaryKey: false;
|
|
5815
5835
|
isAutoincrement: false;
|
|
@@ -5819,6 +5839,25 @@ declare const WebhookDestinationInsertSchema: drizzle_zod19.BuildSchema<"insert"
|
|
|
5819
5839
|
identity: undefined;
|
|
5820
5840
|
generated: undefined;
|
|
5821
5841
|
}, {}, {}>;
|
|
5842
|
+
slackChannelId: drizzle_orm_pg_core297.PgColumn<{
|
|
5843
|
+
name: "slack_channel_id";
|
|
5844
|
+
tableName: "webhook_destinations";
|
|
5845
|
+
dataType: "string";
|
|
5846
|
+
columnType: "PgVarchar";
|
|
5847
|
+
data: string;
|
|
5848
|
+
driverParam: string;
|
|
5849
|
+
notNull: false;
|
|
5850
|
+
hasDefault: false;
|
|
5851
|
+
isPrimaryKey: false;
|
|
5852
|
+
isAutoincrement: false;
|
|
5853
|
+
hasRuntimeDefault: false;
|
|
5854
|
+
enumValues: [string, ...string[]];
|
|
5855
|
+
baseColumn: never;
|
|
5856
|
+
identity: undefined;
|
|
5857
|
+
generated: undefined;
|
|
5858
|
+
}, {}, {
|
|
5859
|
+
length: 256;
|
|
5860
|
+
}>;
|
|
5822
5861
|
eventTypes: drizzle_orm_pg_core297.PgColumn<{
|
|
5823
5862
|
name: "event_types";
|
|
5824
5863
|
tableName: "webhook_destinations";
|
|
@@ -5950,13 +5989,14 @@ declare const WebhookDestinationInsertSchema: drizzle_zod19.BuildSchema<"insert"
|
|
|
5950
5989
|
}, {}, {
|
|
5951
5990
|
length: 256;
|
|
5952
5991
|
}>;
|
|
5953
|
-
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "enabled" | "
|
|
5992
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "enabled" | "headers" | "url" | "projectId" | "tenantId" | "slackChannelId" | "eventTypes">, undefined>, undefined>;
|
|
5954
5993
|
declare const WebhookDestinationUpdateSchema: z.ZodObject<{
|
|
5955
5994
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5956
5995
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5957
|
-
url: z.ZodOptional<z.ZodString
|
|
5996
|
+
url: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5997
|
+
slackChannelId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5958
5998
|
eventTypes: z.ZodOptional<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
5959
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5999
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
5960
6000
|
name: z.ZodOptional<z.ZodString>;
|
|
5961
6001
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5962
6002
|
projectId: z.ZodOptional<z.ZodString>;
|
|
@@ -5975,7 +6015,8 @@ declare const WebhookDestinationApiSelectSchema: z.ZodObject<{
|
|
|
5975
6015
|
description: z.ZodNullable<z.ZodString>;
|
|
5976
6016
|
enabled: z.ZodBoolean;
|
|
5977
6017
|
headers: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5978
|
-
url: z.ZodString
|
|
6018
|
+
url: z.ZodNullable<z.ZodString>;
|
|
6019
|
+
slackChannelId: z.ZodNullable<z.ZodString>;
|
|
5979
6020
|
eventTypes: z.ZodArray<z.ZodEnum<{
|
|
5980
6021
|
"conversation.created": "conversation.created";
|
|
5981
6022
|
"conversation.updated": "conversation.updated";
|
|
@@ -5995,8 +6036,9 @@ declare const WebhookDestinationApiInsertSchema: z.ZodObject<{
|
|
|
5995
6036
|
name: z.ZodString;
|
|
5996
6037
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5997
6038
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5998
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5999
|
-
url: z.ZodString
|
|
6039
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
6040
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6041
|
+
slackChannelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6000
6042
|
eventTypes: z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>;
|
|
6001
6043
|
agentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6002
6044
|
evaluatorIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -6008,8 +6050,9 @@ declare const WebhookDestinationApiUpdateSchema: z.ZodObject<{
|
|
|
6008
6050
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6009
6051
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6010
6052
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
6011
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
6012
|
-
url: z.ZodOptional<z.ZodOptional<z.ZodString
|
|
6053
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
6054
|
+
url: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6055
|
+
slackChannelId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6013
6056
|
eventTypes: z.ZodOptional<z.ZodOptional<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
6014
6057
|
agentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6015
6058
|
evaluatorIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -6023,7 +6066,8 @@ declare const WebhookDestinationResponse: z.ZodObject<{
|
|
|
6023
6066
|
description: z.ZodNullable<z.ZodString>;
|
|
6024
6067
|
enabled: z.ZodBoolean;
|
|
6025
6068
|
headers: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6026
|
-
url: z.ZodString
|
|
6069
|
+
url: z.ZodNullable<z.ZodString>;
|
|
6070
|
+
slackChannelId: z.ZodNullable<z.ZodString>;
|
|
6027
6071
|
eventTypes: z.ZodArray<z.ZodEnum<{
|
|
6028
6072
|
"conversation.created": "conversation.created";
|
|
6029
6073
|
"conversation.updated": "conversation.updated";
|
|
@@ -6048,7 +6092,8 @@ declare const WebhookDestinationListResponse: z.ZodObject<{
|
|
|
6048
6092
|
description: z.ZodNullable<z.ZodString>;
|
|
6049
6093
|
enabled: z.ZodBoolean;
|
|
6050
6094
|
headers: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6051
|
-
url: z.ZodString
|
|
6095
|
+
url: z.ZodNullable<z.ZodString>;
|
|
6096
|
+
slackChannelId: z.ZodNullable<z.ZodString>;
|
|
6052
6097
|
eventTypes: z.ZodArray<z.ZodEnum<{
|
|
6053
6098
|
"conversation.created": "conversation.created";
|
|
6054
6099
|
"conversation.updated": "conversation.updated";
|
|
@@ -6111,20 +6156,20 @@ declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
|
6111
6156
|
ref: z.ZodOptional<z.ZodString>;
|
|
6112
6157
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6113
6158
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
6159
|
+
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6114
6160
|
projectId: z.ZodString;
|
|
6115
6161
|
tenantId: z.ZodString;
|
|
6116
|
-
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6117
|
-
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6118
6162
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6119
|
-
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
6120
6163
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6164
|
+
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6165
|
+
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
6166
|
+
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6121
6167
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6122
6168
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6123
6169
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6124
6170
|
maxRetries: z.ZodOptional<z.ZodInt>;
|
|
6125
6171
|
retryDelaySeconds: z.ZodOptional<z.ZodInt>;
|
|
6126
6172
|
timeoutSeconds: z.ZodOptional<z.ZodInt>;
|
|
6127
|
-
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6128
6173
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6129
6174
|
}, {
|
|
6130
6175
|
out: {};
|
|
@@ -6134,16 +6179,16 @@ declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
|
6134
6179
|
id: z.ZodOptional<z.ZodString>;
|
|
6135
6180
|
name: z.ZodOptional<z.ZodString>;
|
|
6136
6181
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6182
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6137
6183
|
projectId: z.ZodOptional<z.ZodString>;
|
|
6138
6184
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
6139
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6140
|
-
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6141
6185
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6142
|
-
dispatchDelayMs: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodInt>>>;
|
|
6143
6186
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6187
|
+
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6188
|
+
dispatchDelayMs: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodInt>>>;
|
|
6189
|
+
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6144
6190
|
cronExpression: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6145
6191
|
runAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6146
|
-
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6147
6192
|
payload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
6148
6193
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
6149
6194
|
cronTimezone: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -6164,10 +6209,11 @@ declare const ScheduledTriggerApiSelectSchema: z.ZodObject<{
|
|
|
6164
6209
|
description: z.ZodNullable<z.ZodString>;
|
|
6165
6210
|
enabled: z.ZodBoolean;
|
|
6166
6211
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6167
|
-
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
6168
6212
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
6169
|
-
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
6170
6213
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
6214
|
+
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
6215
|
+
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
6216
|
+
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
6171
6217
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
6172
6218
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
6173
6219
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -6175,7 +6221,6 @@ declare const ScheduledTriggerApiSelectSchema: z.ZodObject<{
|
|
|
6175
6221
|
retryDelaySeconds: z.ZodInt;
|
|
6176
6222
|
timeoutSeconds: z.ZodInt;
|
|
6177
6223
|
nextRunAt: z.ZodNullable<z.ZodString>;
|
|
6178
|
-
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
6179
6224
|
}, z.core.$strip>;
|
|
6180
6225
|
declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
6181
6226
|
name: z.ZodString;
|
|
@@ -6183,16 +6228,16 @@ declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
6183
6228
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6184
6229
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
6185
6230
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6186
|
-
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6187
6231
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6188
6232
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6233
|
+
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6234
|
+
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6189
6235
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6190
6236
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6191
6237
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6192
6238
|
maxRetries: z.ZodOptional<z.ZodInt>;
|
|
6193
6239
|
retryDelaySeconds: z.ZodOptional<z.ZodInt>;
|
|
6194
6240
|
timeoutSeconds: z.ZodOptional<z.ZodInt>;
|
|
6195
|
-
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6196
6241
|
id: z.ZodOptional<z.ZodString>;
|
|
6197
6242
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6198
6243
|
dispatchDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6203,16 +6248,16 @@ declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
|
6203
6248
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6204
6249
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
6205
6250
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6206
|
-
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6207
6251
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6208
6252
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6253
|
+
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6254
|
+
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6209
6255
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6210
6256
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6211
6257
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6212
6258
|
maxRetries: z.ZodOptional<z.ZodInt>;
|
|
6213
6259
|
retryDelaySeconds: z.ZodOptional<z.ZodInt>;
|
|
6214
6260
|
timeoutSeconds: z.ZodOptional<z.ZodInt>;
|
|
6215
|
-
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6216
6261
|
id: z.ZodOptional<z.ZodString>;
|
|
6217
6262
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6218
6263
|
dispatchDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6224,16 +6269,16 @@ declare const ScheduledTriggerApiUpdateSchema: z.ZodObject<{
|
|
|
6224
6269
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6225
6270
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
6226
6271
|
payload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
6227
|
-
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6228
6272
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6229
6273
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6274
|
+
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6275
|
+
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6230
6276
|
cronExpression: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6231
6277
|
cronTimezone: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6232
6278
|
runAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6233
6279
|
maxRetries: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNumber>>>;
|
|
6234
6280
|
retryDelaySeconds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNumber>>>;
|
|
6235
6281
|
timeoutSeconds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNumber>>>;
|
|
6236
|
-
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6237
6282
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6238
6283
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6239
6284
|
}, z.core.$strip>;
|
|
@@ -6248,9 +6293,9 @@ declare const ScheduledTriggerUsersResponseSchema: z.ZodObject<{
|
|
|
6248
6293
|
}, z.core.$strip>;
|
|
6249
6294
|
declare const ScheduledTriggerInvocationStatusEnum: z.ZodEnum<{
|
|
6250
6295
|
pending: "pending";
|
|
6251
|
-
failed: "failed";
|
|
6252
6296
|
running: "running";
|
|
6253
6297
|
completed: "completed";
|
|
6298
|
+
failed: "failed";
|
|
6254
6299
|
cancelled: "cancelled";
|
|
6255
6300
|
}>;
|
|
6256
6301
|
declare const ScheduledTriggerInvocationSelectSchema: z.ZodObject<{
|
|
@@ -6279,16 +6324,16 @@ declare const ScheduledTriggerInvocationSelectSchema: z.ZodObject<{
|
|
|
6279
6324
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6280
6325
|
status: z.ZodEnum<{
|
|
6281
6326
|
pending: "pending";
|
|
6282
|
-
failed: "failed";
|
|
6283
6327
|
running: "running";
|
|
6284
6328
|
completed: "completed";
|
|
6329
|
+
failed: "failed";
|
|
6285
6330
|
cancelled: "cancelled";
|
|
6286
6331
|
}>;
|
|
6287
6332
|
}, {
|
|
6288
6333
|
out: {};
|
|
6289
6334
|
in: {};
|
|
6290
6335
|
}>;
|
|
6291
|
-
declare const ScheduledTriggerInvocationInsertSchema:
|
|
6336
|
+
declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
6292
6337
|
scheduledTriggerId: drizzle_orm_pg_core297.PgColumn<{
|
|
6293
6338
|
name: "scheduled_trigger_id";
|
|
6294
6339
|
tableName: "scheduled_trigger_invocations";
|
|
@@ -6340,7 +6385,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6340
6385
|
tableName: "scheduled_trigger_invocations";
|
|
6341
6386
|
dataType: "string";
|
|
6342
6387
|
columnType: "PgVarchar";
|
|
6343
|
-
data: "pending" | "
|
|
6388
|
+
data: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
6344
6389
|
driverParam: string;
|
|
6345
6390
|
notNull: true;
|
|
6346
6391
|
hasDefault: false;
|
|
@@ -6353,7 +6398,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6353
6398
|
generated: undefined;
|
|
6354
6399
|
}, {}, {
|
|
6355
6400
|
length: 50;
|
|
6356
|
-
$type: "pending" | "
|
|
6401
|
+
$type: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
6357
6402
|
}>;
|
|
6358
6403
|
scheduledFor: drizzle_orm_pg_core297.PgColumn<{
|
|
6359
6404
|
name: "scheduled_for";
|
|
@@ -6592,7 +6637,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6592
6637
|
}, {}, {
|
|
6593
6638
|
length: 256;
|
|
6594
6639
|
}>;
|
|
6595
|
-
},
|
|
6640
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
6596
6641
|
scheduledTriggerId: drizzle_orm_pg_core297.PgColumn<{
|
|
6597
6642
|
name: "scheduled_trigger_id";
|
|
6598
6643
|
tableName: "scheduled_trigger_invocations";
|
|
@@ -6644,7 +6689,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6644
6689
|
tableName: "scheduled_trigger_invocations";
|
|
6645
6690
|
dataType: "string";
|
|
6646
6691
|
columnType: "PgVarchar";
|
|
6647
|
-
data: "pending" | "
|
|
6692
|
+
data: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
6648
6693
|
driverParam: string;
|
|
6649
6694
|
notNull: true;
|
|
6650
6695
|
hasDefault: false;
|
|
@@ -6657,7 +6702,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6657
6702
|
generated: undefined;
|
|
6658
6703
|
}, {}, {
|
|
6659
6704
|
length: 50;
|
|
6660
|
-
$type: "pending" | "
|
|
6705
|
+
$type: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
6661
6706
|
}>;
|
|
6662
6707
|
scheduledFor: drizzle_orm_pg_core297.PgColumn<{
|
|
6663
6708
|
name: "scheduled_for";
|
|
@@ -6896,7 +6941,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6896
6941
|
}, {}, {
|
|
6897
6942
|
length: 256;
|
|
6898
6943
|
}>;
|
|
6899
|
-
}, "id" | "createdAt" | "ref" | "status" | "
|
|
6944
|
+
}, "id" | "createdAt" | "ref" | "status" | "agentId" | "projectId" | "tenantId" | "scheduledTriggerId" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "conversationIds" | "attemptNumber" | "idempotencyKey" | "runAsUserId">, undefined>, undefined>;
|
|
6900
6945
|
declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
6901
6946
|
scheduledTriggerId: z.ZodOptional<z.ZodString>;
|
|
6902
6947
|
ref: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -6920,7 +6965,7 @@ declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
6920
6965
|
scheduledFor: z.ZodOptional<z.ZodString>;
|
|
6921
6966
|
startedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6922
6967
|
completedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6923
|
-
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
6968
|
+
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
6924
6969
|
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>;
|
|
6925
6970
|
attemptNumber: z.ZodOptional<z.ZodOptional<z.ZodInt>>;
|
|
6926
6971
|
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
@@ -6948,12 +6993,11 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
6948
6993
|
}, z.core.$strip>>>;
|
|
6949
6994
|
status: z.ZodEnum<{
|
|
6950
6995
|
pending: "pending";
|
|
6951
|
-
failed: "failed";
|
|
6952
6996
|
running: "running";
|
|
6953
6997
|
completed: "completed";
|
|
6998
|
+
failed: "failed";
|
|
6954
6999
|
cancelled: "cancelled";
|
|
6955
7000
|
}>;
|
|
6956
|
-
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
6957
7001
|
scheduledTriggerId: z.ZodString;
|
|
6958
7002
|
scheduledFor: z.ZodString;
|
|
6959
7003
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -6962,6 +7006,7 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
6962
7006
|
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
6963
7007
|
attemptNumber: z.ZodInt;
|
|
6964
7008
|
idempotencyKey: z.ZodString;
|
|
7009
|
+
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
6965
7010
|
}, z.core.$strip>;
|
|
6966
7011
|
declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
6967
7012
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -6983,15 +7028,15 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
6983
7028
|
hash: string;
|
|
6984
7029
|
}>>>>;
|
|
6985
7030
|
status: z.ZodString;
|
|
6986
|
-
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6987
7031
|
scheduledTriggerId: z.ZodString;
|
|
6988
7032
|
scheduledFor: z.ZodString;
|
|
6989
7033
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6990
7034
|
completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6991
|
-
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
7035
|
+
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
6992
7036
|
conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
6993
7037
|
attemptNumber: z.ZodOptional<z.ZodInt>;
|
|
6994
7038
|
idempotencyKey: z.ZodString;
|
|
7039
|
+
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6995
7040
|
id: z.ZodString;
|
|
6996
7041
|
}, z.core.$strip>;
|
|
6997
7042
|
declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
@@ -7015,18 +7060,18 @@ declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
7015
7060
|
hash: string;
|
|
7016
7061
|
}>>>>>>;
|
|
7017
7062
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7018
|
-
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7019
7063
|
scheduledTriggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7020
7064
|
scheduledFor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7021
7065
|
startedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7022
7066
|
completedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7023
|
-
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
7067
|
+
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
7024
7068
|
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
|
|
7025
7069
|
attemptNumber: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodInt>>>;
|
|
7026
7070
|
idempotencyKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7071
|
+
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7027
7072
|
}, z.core.$strip>;
|
|
7028
7073
|
type ScheduledTriggerInvocationStatus = z.infer<typeof ScheduledTriggerInvocationStatusEnum>;
|
|
7029
|
-
declare const SchedulerStateSelectSchema:
|
|
7074
|
+
declare const SchedulerStateSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
7030
7075
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
7031
7076
|
name: "created_at";
|
|
7032
7077
|
tableName: "scheduler_state";
|
|
@@ -7099,7 +7144,7 @@ declare const SchedulerStateSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
7099
7144
|
}, {}, {
|
|
7100
7145
|
length: 256;
|
|
7101
7146
|
}>;
|
|
7102
|
-
},
|
|
7147
|
+
}, drizzle_zod15.BuildRefine<{
|
|
7103
7148
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
7104
7149
|
name: "created_at";
|
|
7105
7150
|
tableName: "scheduler_state";
|
|
@@ -7283,8 +7328,8 @@ declare const TaskApiInsertSchema: z.ZodObject<{
|
|
|
7283
7328
|
status: z.ZodString;
|
|
7284
7329
|
agentId: z.ZodString;
|
|
7285
7330
|
subAgentId: z.ZodString;
|
|
7286
|
-
conversationId: z.ZodOptional<z.ZodString>;
|
|
7287
7331
|
contextId: z.ZodString;
|
|
7332
|
+
conversationId: z.ZodOptional<z.ZodString>;
|
|
7288
7333
|
}, z.core.$strip>;
|
|
7289
7334
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
7290
7335
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -7303,10 +7348,10 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
7303
7348
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7304
7349
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7305
7350
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7306
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7307
7351
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7352
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7308
7353
|
}, z.core.$strip>;
|
|
7309
|
-
declare const TaskRelationSelectSchema:
|
|
7354
|
+
declare const TaskRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
7310
7355
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
7311
7356
|
name: "created_at";
|
|
7312
7357
|
tableName: "task_relations";
|
|
@@ -7455,7 +7500,7 @@ declare const TaskRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
7455
7500
|
}, {}, {
|
|
7456
7501
|
length: 256;
|
|
7457
7502
|
}>;
|
|
7458
|
-
},
|
|
7503
|
+
}, drizzle_zod15.BuildRefine<{
|
|
7459
7504
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
7460
7505
|
name: "created_at";
|
|
7461
7506
|
tableName: "task_relations";
|
|
@@ -7677,7 +7722,7 @@ declare const McpToolDefinitionSchema: z.ZodObject<{
|
|
|
7677
7722
|
description: z.ZodOptional<z.ZodString>;
|
|
7678
7723
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7679
7724
|
}, z.core.$strip>;
|
|
7680
|
-
declare const ToolSelectSchema:
|
|
7725
|
+
declare const ToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
7681
7726
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
7682
7727
|
name: "created_at";
|
|
7683
7728
|
tableName: "tools";
|
|
@@ -7957,7 +8002,7 @@ declare const ToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
7957
8002
|
}, {}, {
|
|
7958
8003
|
length: 256;
|
|
7959
8004
|
}>;
|
|
7960
|
-
},
|
|
8005
|
+
}, drizzle_zod15.BuildRefine<{
|
|
7961
8006
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
7962
8007
|
name: "created_at";
|
|
7963
8008
|
tableName: "tools";
|
|
@@ -8242,9 +8287,9 @@ declare const ToolInsertSchema: z.ZodObject<{
|
|
|
8242
8287
|
id: z.ZodString;
|
|
8243
8288
|
name: z.ZodString;
|
|
8244
8289
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8290
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
8245
8291
|
projectId: z.ZodString;
|
|
8246
8292
|
tenantId: z.ZodString;
|
|
8247
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
8248
8293
|
config: z.ZodObject<{
|
|
8249
8294
|
type: z.ZodLiteral<"mcp">;
|
|
8250
8295
|
mcp: z.ZodObject<{
|
|
@@ -8382,9 +8427,9 @@ declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
|
8382
8427
|
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8383
8428
|
title: z.ZodNullable<z.ZodString>;
|
|
8384
8429
|
agentId: z.ZodNullable<z.ZodString>;
|
|
8385
|
-
userProperties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8386
8430
|
activeSubAgentId: z.ZodString;
|
|
8387
8431
|
lastContextResolution: z.ZodNullable<z.ZodString>;
|
|
8432
|
+
userProperties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8388
8433
|
}, z.core.$strip>;
|
|
8389
8434
|
declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
8390
8435
|
id: z.ZodString;
|
|
@@ -8405,9 +8450,9 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
8405
8450
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8406
8451
|
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8407
8452
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
8408
|
-
userProperties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8409
8453
|
activeSubAgentId: z.ZodString;
|
|
8410
8454
|
lastContextResolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8455
|
+
userProperties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8411
8456
|
}, z.core.$strip>;
|
|
8412
8457
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
8413
8458
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -8428,9 +8473,9 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
8428
8473
|
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8429
8474
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8430
8475
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8431
|
-
userProperties: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
8432
8476
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8433
8477
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8478
|
+
userProperties: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
8434
8479
|
}, z.core.$strip>;
|
|
8435
8480
|
declare const MessageSelectSchema: z.ZodObject<{
|
|
8436
8481
|
createdAt: z.ZodString;
|
|
@@ -8522,21 +8567,21 @@ declare const MessageApiSelectSchema: z.ZodObject<{
|
|
|
8522
8567
|
updatedAt: z.ZodString;
|
|
8523
8568
|
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
8524
8569
|
role: z.ZodString;
|
|
8525
|
-
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8526
8570
|
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8571
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8572
|
+
userProperties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8573
|
+
conversationId: z.ZodString;
|
|
8527
8574
|
fromSubAgentId: z.ZodNullable<z.ZodString>;
|
|
8528
8575
|
toSubAgentId: z.ZodNullable<z.ZodString>;
|
|
8529
8576
|
fromExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
8530
8577
|
toExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
8531
|
-
taskId: z.ZodNullable<z.ZodString>;
|
|
8532
|
-
a2aTaskId: z.ZodNullable<z.ZodString>;
|
|
8533
|
-
conversationId: z.ZodString;
|
|
8534
|
-
userProperties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8535
8578
|
fromTeamAgentId: z.ZodNullable<z.ZodString>;
|
|
8536
8579
|
toTeamAgentId: z.ZodNullable<z.ZodString>;
|
|
8537
8580
|
visibility: z.ZodString;
|
|
8538
8581
|
messageType: z.ZodString;
|
|
8582
|
+
taskId: z.ZodNullable<z.ZodString>;
|
|
8539
8583
|
parentMessageId: z.ZodNullable<z.ZodString>;
|
|
8584
|
+
a2aTaskId: z.ZodNullable<z.ZodString>;
|
|
8540
8585
|
a2aSessionId: z.ZodNullable<z.ZodString>;
|
|
8541
8586
|
}, z.core.$strip>;
|
|
8542
8587
|
declare const MessageApiInsertSchema: z.ZodObject<{
|
|
@@ -8545,21 +8590,21 @@ declare const MessageApiInsertSchema: z.ZodObject<{
|
|
|
8545
8590
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8546
8591
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
8547
8592
|
role: z.ZodString;
|
|
8548
|
-
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8549
8593
|
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8594
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8595
|
+
userProperties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8596
|
+
conversationId: z.ZodString;
|
|
8550
8597
|
fromSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8551
8598
|
toSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8552
8599
|
fromExternalAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8553
8600
|
toExternalAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8554
|
-
taskId: z.ZodOptional<z.ZodString>;
|
|
8555
|
-
a2aTaskId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8556
|
-
conversationId: z.ZodString;
|
|
8557
|
-
userProperties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8558
8601
|
fromTeamAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8559
8602
|
toTeamAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8560
8603
|
visibility: z.ZodOptional<z.ZodString>;
|
|
8561
8604
|
messageType: z.ZodOptional<z.ZodString>;
|
|
8605
|
+
taskId: z.ZodOptional<z.ZodString>;
|
|
8562
8606
|
parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8607
|
+
a2aTaskId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8563
8608
|
a2aSessionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8564
8609
|
}, z.core.$strip>;
|
|
8565
8610
|
declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
@@ -8568,24 +8613,24 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
8568
8613
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8569
8614
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
8570
8615
|
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8571
|
-
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8572
8616
|
properties: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
8617
|
+
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8618
|
+
userProperties: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
8619
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8573
8620
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8574
8621
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8575
8622
|
fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8576
8623
|
toExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8577
|
-
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8578
|
-
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8579
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8580
|
-
userProperties: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
8581
8624
|
fromTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8582
8625
|
toTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8583
8626
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8584
8627
|
messageType: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8628
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8585
8629
|
parentMessageId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8630
|
+
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8586
8631
|
a2aSessionId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8587
8632
|
}, z.core.$strip>;
|
|
8588
|
-
declare const FeedbackSelectSchema:
|
|
8633
|
+
declare const FeedbackSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
8589
8634
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
8590
8635
|
name: "created_at";
|
|
8591
8636
|
tableName: "feedback";
|
|
@@ -8752,7 +8797,7 @@ declare const FeedbackSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8752
8797
|
}, {}, {
|
|
8753
8798
|
length: 256;
|
|
8754
8799
|
}>;
|
|
8755
|
-
},
|
|
8800
|
+
}, drizzle_zod15.BuildRefine<{
|
|
8756
8801
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
8757
8802
|
name: "created_at";
|
|
8758
8803
|
tableName: "feedback";
|
|
@@ -8959,9 +9004,9 @@ declare const FeedbackApiSelectSchema: z.ZodObject<{
|
|
|
8959
9004
|
id: z.ZodString;
|
|
8960
9005
|
createdAt: z.ZodString;
|
|
8961
9006
|
updatedAt: z.ZodString;
|
|
8962
|
-
details: z.ZodNullable<z.ZodString>;
|
|
8963
9007
|
conversationId: z.ZodString;
|
|
8964
9008
|
messageId: z.ZodNullable<z.ZodString>;
|
|
9009
|
+
details: z.ZodNullable<z.ZodString>;
|
|
8965
9010
|
}, z.core.$strip>;
|
|
8966
9011
|
declare const FeedbackApiInsertSchema: z.ZodObject<{
|
|
8967
9012
|
type: z.ZodEnum<{
|
|
@@ -8970,9 +9015,9 @@ declare const FeedbackApiInsertSchema: z.ZodObject<{
|
|
|
8970
9015
|
}>;
|
|
8971
9016
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8972
9017
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8973
|
-
details: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8974
9018
|
conversationId: z.ZodString;
|
|
8975
9019
|
messageId: z.ZodOptional<z.ZodString>;
|
|
9020
|
+
details: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8976
9021
|
id: z.ZodOptional<z.ZodString>;
|
|
8977
9022
|
}, z.core.$strip>;
|
|
8978
9023
|
declare const FeedbackApiUpdateSchema: z.ZodObject<{
|
|
@@ -8990,9 +9035,9 @@ declare const WebhookFeedbackDataSchema: z.ZodObject<{
|
|
|
8990
9035
|
id: z.ZodString;
|
|
8991
9036
|
createdAt: z.ZodString;
|
|
8992
9037
|
updatedAt: z.ZodString;
|
|
8993
|
-
details: z.ZodNullable<z.ZodString>;
|
|
8994
9038
|
conversationId: z.ZodString;
|
|
8995
9039
|
messageId: z.ZodNullable<z.ZodString>;
|
|
9040
|
+
details: z.ZodNullable<z.ZodString>;
|
|
8996
9041
|
}, z.core.$strip>;
|
|
8997
9042
|
conversation: z.ZodObject<{
|
|
8998
9043
|
id: z.ZodString;
|
|
@@ -9013,7 +9058,7 @@ declare const WebhookFeedbackDataSchema: z.ZodObject<{
|
|
|
9013
9058
|
}, z.core.$strip>>;
|
|
9014
9059
|
}, z.core.$strip>;
|
|
9015
9060
|
}, z.core.$strip>;
|
|
9016
|
-
declare const EventSelectSchema:
|
|
9061
|
+
declare const EventSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
9017
9062
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
9018
9063
|
name: "created_at";
|
|
9019
9064
|
tableName: "events";
|
|
@@ -9263,7 +9308,7 @@ declare const EventSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
9263
9308
|
}, {}, {
|
|
9264
9309
|
length: 256;
|
|
9265
9310
|
}>;
|
|
9266
|
-
},
|
|
9311
|
+
}, drizzle_zod15.BuildRefine<{
|
|
9267
9312
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
9268
9313
|
name: "created_at";
|
|
9269
9314
|
tableName: "events";
|
|
@@ -9539,13 +9584,13 @@ declare const EventApiSelectSchema: z.ZodObject<{
|
|
|
9539
9584
|
id: z.ZodString;
|
|
9540
9585
|
createdAt: z.ZodString;
|
|
9541
9586
|
updatedAt: z.ZodString;
|
|
9542
|
-
metadata: z.ZodNullable<z.ZodType<
|
|
9543
|
-
properties: z.ZodNullable<z.ZodType<
|
|
9587
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
9588
|
+
properties: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
9544
9589
|
agentId: z.ZodNullable<z.ZodString>;
|
|
9590
|
+
userProperties: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
9545
9591
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
9546
|
-
userProperties: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
9547
9592
|
messageId: z.ZodNullable<z.ZodString>;
|
|
9548
|
-
serverMetadata: z.ZodNullable<z.ZodType<
|
|
9593
|
+
serverMetadata: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
9549
9594
|
}, z.core.$strip>;
|
|
9550
9595
|
declare const EventApiInsertSchema: z.ZodObject<{
|
|
9551
9596
|
type: z.ZodString;
|
|
@@ -9563,13 +9608,13 @@ declare const WebhookEventCreatedDataSchema: z.ZodObject<{
|
|
|
9563
9608
|
id: z.ZodString;
|
|
9564
9609
|
createdAt: z.ZodString;
|
|
9565
9610
|
updatedAt: z.ZodString;
|
|
9566
|
-
metadata: z.ZodNullable<z.ZodType<
|
|
9567
|
-
properties: z.ZodNullable<z.ZodType<
|
|
9611
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
9612
|
+
properties: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
9568
9613
|
agentId: z.ZodNullable<z.ZodString>;
|
|
9614
|
+
userProperties: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
9569
9615
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
9570
|
-
userProperties: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
9571
9616
|
messageId: z.ZodNullable<z.ZodString>;
|
|
9572
|
-
serverMetadata: z.ZodNullable<z.ZodType<
|
|
9617
|
+
serverMetadata: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
9573
9618
|
}, z.core.$strip>;
|
|
9574
9619
|
}, z.core.$strip>;
|
|
9575
9620
|
declare const ContextCacheSelectSchema: z.ZodObject<{
|
|
@@ -9578,7 +9623,7 @@ declare const ContextCacheSelectSchema: z.ZodObject<{
|
|
|
9578
9623
|
conversationId: z.ZodString;
|
|
9579
9624
|
contextConfigId: z.ZodString;
|
|
9580
9625
|
contextVariableKey: z.ZodString;
|
|
9581
|
-
value: z.ZodType<
|
|
9626
|
+
value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
9582
9627
|
requestHash: z.ZodNullable<z.ZodString>;
|
|
9583
9628
|
fetchedAt: z.ZodString;
|
|
9584
9629
|
fetchSource: z.ZodNullable<z.ZodString>;
|
|
@@ -9604,7 +9649,7 @@ declare const ContextCacheInsertSchema: z.ZodObject<{
|
|
|
9604
9649
|
conversationId: z.ZodString;
|
|
9605
9650
|
contextConfigId: z.ZodString;
|
|
9606
9651
|
contextVariableKey: z.ZodString;
|
|
9607
|
-
value: z.ZodType<
|
|
9652
|
+
value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
9608
9653
|
requestHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9609
9654
|
fetchedAt: z.ZodOptional<z.ZodString>;
|
|
9610
9655
|
fetchSource: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -9630,7 +9675,7 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
9630
9675
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
9631
9676
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
9632
9677
|
contextVariableKey: z.ZodOptional<z.ZodString>;
|
|
9633
|
-
value: z.ZodOptional<z.ZodType<
|
|
9678
|
+
value: z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
9634
9679
|
requestHash: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
9635
9680
|
fetchedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9636
9681
|
fetchSource: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -9663,7 +9708,7 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
9663
9708
|
name: z.ZodString;
|
|
9664
9709
|
hash: z.ZodString;
|
|
9665
9710
|
}, z.core.$strip>>>;
|
|
9666
|
-
value: z.ZodType<
|
|
9711
|
+
value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
9667
9712
|
contextConfigId: z.ZodString;
|
|
9668
9713
|
conversationId: z.ZodString;
|
|
9669
9714
|
contextVariableKey: z.ZodString;
|
|
@@ -9684,7 +9729,7 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
9684
9729
|
name: z.ZodString;
|
|
9685
9730
|
hash: z.ZodString;
|
|
9686
9731
|
}, z.core.$strip>;
|
|
9687
|
-
value: z.ZodType<
|
|
9732
|
+
value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
9688
9733
|
contextConfigId: z.ZodString;
|
|
9689
9734
|
conversationId: z.ZodString;
|
|
9690
9735
|
contextVariableKey: z.ZodString;
|
|
@@ -9705,7 +9750,7 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
9705
9750
|
name: z.ZodString;
|
|
9706
9751
|
hash: z.ZodString;
|
|
9707
9752
|
}, z.core.$strip>>>;
|
|
9708
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<
|
|
9753
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
9709
9754
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9710
9755
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9711
9756
|
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -9808,9 +9853,9 @@ declare const DatasetRunApiSelectSchema: z.ZodObject<{
|
|
|
9808
9853
|
name: z.ZodString;
|
|
9809
9854
|
hash: z.ZodString;
|
|
9810
9855
|
}, z.core.$strip>>>;
|
|
9811
|
-
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
9812
9856
|
datasetId: z.ZodString;
|
|
9813
9857
|
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
9858
|
+
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
9814
9859
|
}, z.core.$strip>;
|
|
9815
9860
|
declare const DatasetRunApiInsertSchema: z.ZodObject<{
|
|
9816
9861
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -9832,9 +9877,9 @@ declare const DatasetRunApiInsertSchema: z.ZodObject<{
|
|
|
9832
9877
|
name: string;
|
|
9833
9878
|
hash: string;
|
|
9834
9879
|
}>>>>;
|
|
9835
|
-
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9836
9880
|
datasetId: z.ZodString;
|
|
9837
9881
|
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9882
|
+
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9838
9883
|
}, z.core.$strip>;
|
|
9839
9884
|
declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
9840
9885
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
@@ -9856,11 +9901,11 @@ declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
|
9856
9901
|
name: string;
|
|
9857
9902
|
hash: string;
|
|
9858
9903
|
}>>>>>>;
|
|
9859
|
-
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9860
9904
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9861
9905
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9906
|
+
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9862
9907
|
}, z.core.$strip>;
|
|
9863
|
-
declare const DatasetRunConversationRelationSelectSchema:
|
|
9908
|
+
declare const DatasetRunConversationRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
9864
9909
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
9865
9910
|
name: "created_at";
|
|
9866
9911
|
tableName: "dataset_run_conversation_relations";
|
|
@@ -10003,7 +10048,7 @@ declare const DatasetRunConversationRelationSelectSchema: drizzle_zod19.BuildSch
|
|
|
10003
10048
|
}, {}, {
|
|
10004
10049
|
length: 256;
|
|
10005
10050
|
}>;
|
|
10006
|
-
},
|
|
10051
|
+
}, drizzle_zod15.BuildRefine<{
|
|
10007
10052
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
10008
10053
|
name: "created_at";
|
|
10009
10054
|
tableName: "dataset_run_conversation_relations";
|
|
@@ -10195,7 +10240,7 @@ declare const DatasetRunConversationRelationApiUpdateSchema: z.ZodObject<{
|
|
|
10195
10240
|
datasetRunId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10196
10241
|
datasetItemId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10197
10242
|
}, z.core.$strip>;
|
|
10198
|
-
declare const EvaluationResultSelectSchema:
|
|
10243
|
+
declare const EvaluationResultSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
10199
10244
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
10200
10245
|
name: "created_at";
|
|
10201
10246
|
tableName: "evaluation_result";
|
|
@@ -10357,7 +10402,7 @@ declare const EvaluationResultSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
10357
10402
|
}, {}, {
|
|
10358
10403
|
length: 256;
|
|
10359
10404
|
}>;
|
|
10360
|
-
},
|
|
10405
|
+
}, drizzle_zod15.BuildRefine<{
|
|
10361
10406
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
10362
10407
|
name: "created_at";
|
|
10363
10408
|
tableName: "evaluation_result";
|
|
@@ -10549,28 +10594,28 @@ declare const EvaluationResultUpdateSchema: z.ZodObject<{
|
|
|
10549
10594
|
in: {};
|
|
10550
10595
|
}>;
|
|
10551
10596
|
declare const EvaluationResultApiSelectSchema: z.ZodObject<{
|
|
10552
|
-
output: z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>;
|
|
10553
10597
|
id: z.ZodString;
|
|
10554
10598
|
createdAt: z.ZodString;
|
|
10555
10599
|
updatedAt: z.ZodString;
|
|
10556
|
-
|
|
10600
|
+
output: z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>;
|
|
10557
10601
|
evaluatorId: z.ZodString;
|
|
10602
|
+
conversationId: z.ZodString;
|
|
10558
10603
|
evaluationRunId: z.ZodNullable<z.ZodString>;
|
|
10559
10604
|
}, z.core.$strip>;
|
|
10560
10605
|
declare const EvaluationResultApiInsertSchema: z.ZodObject<{
|
|
10561
|
-
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
10562
10606
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10563
10607
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10564
|
-
|
|
10608
|
+
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
10565
10609
|
evaluatorId: z.ZodString;
|
|
10610
|
+
conversationId: z.ZodString;
|
|
10566
10611
|
evaluationRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10567
10612
|
}, z.core.$strip>;
|
|
10568
10613
|
declare const EvaluationResultApiUpdateSchema: z.ZodObject<{
|
|
10569
|
-
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
10570
10614
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10571
10615
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10572
|
-
|
|
10616
|
+
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
10573
10617
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10618
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10574
10619
|
evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10575
10620
|
}, z.core.$strip>;
|
|
10576
10621
|
declare const EvaluationRunSelectSchema: z.ZodObject<{
|
|
@@ -10665,8 +10710,8 @@ declare const EvaluationRunApiSelectSchema: z.ZodObject<{
|
|
|
10665
10710
|
name: z.ZodString;
|
|
10666
10711
|
hash: z.ZodString;
|
|
10667
10712
|
}, z.core.$strip>>>;
|
|
10668
|
-
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
10669
10713
|
evaluationRunConfigId: z.ZodNullable<z.ZodString>;
|
|
10714
|
+
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
10670
10715
|
}, z.core.$strip>;
|
|
10671
10716
|
declare const EvaluationRunApiInsertSchema: z.ZodObject<{
|
|
10672
10717
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -10688,8 +10733,8 @@ declare const EvaluationRunApiInsertSchema: z.ZodObject<{
|
|
|
10688
10733
|
name: string;
|
|
10689
10734
|
hash: string;
|
|
10690
10735
|
}>>>>;
|
|
10691
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10692
10736
|
evaluationRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10737
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10693
10738
|
}, z.core.$strip>;
|
|
10694
10739
|
declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
10695
10740
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
@@ -10711,10 +10756,10 @@ declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
|
10711
10756
|
name: string;
|
|
10712
10757
|
hash: string;
|
|
10713
10758
|
}>>>>>>;
|
|
10714
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10715
10759
|
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10760
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10716
10761
|
}, z.core.$strip>;
|
|
10717
|
-
declare const EvaluationRunConfigSelectSchema:
|
|
10762
|
+
declare const EvaluationRunConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
10718
10763
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
10719
10764
|
name: "created_at";
|
|
10720
10765
|
tableName: "evaluation_run_config";
|
|
@@ -10859,7 +10904,7 @@ declare const EvaluationRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select
|
|
|
10859
10904
|
}, {}, {
|
|
10860
10905
|
length: 256;
|
|
10861
10906
|
}>;
|
|
10862
|
-
},
|
|
10907
|
+
}, drizzle_zod15.BuildRefine<{
|
|
10863
10908
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
10864
10909
|
name: "created_at";
|
|
10865
10910
|
tableName: "evaluation_run_config";
|
|
@@ -11064,7 +11109,7 @@ declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
|
11064
11109
|
isActive: z.ZodBoolean;
|
|
11065
11110
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
11066
11111
|
}, z.core.$strip>;
|
|
11067
|
-
declare const EvaluationJobConfigSelectSchema:
|
|
11112
|
+
declare const EvaluationJobConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
11068
11113
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
11069
11114
|
name: "created_at";
|
|
11070
11115
|
tableName: "evaluation_job_config";
|
|
@@ -11189,7 +11234,7 @@ declare const EvaluationJobConfigSelectSchema: drizzle_zod19.BuildSchema<"select
|
|
|
11189
11234
|
}, {}, {
|
|
11190
11235
|
length: 256;
|
|
11191
11236
|
}>;
|
|
11192
|
-
},
|
|
11237
|
+
}, drizzle_zod15.BuildRefine<{
|
|
11193
11238
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
11194
11239
|
name: "created_at";
|
|
11195
11240
|
tableName: "evaluation_job_config";
|
|
@@ -11494,7 +11539,7 @@ declare const EvaluationJobConfigApiUpdateSchema: z.ZodObject<{
|
|
|
11494
11539
|
} | undefined;
|
|
11495
11540
|
}>>>>>>>;
|
|
11496
11541
|
}, z.core.$strip>;
|
|
11497
|
-
declare const EvaluationSuiteConfigSelectSchema:
|
|
11542
|
+
declare const EvaluationSuiteConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
11498
11543
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
11499
11544
|
name: "created_at";
|
|
11500
11545
|
tableName: "evaluation_suite_config";
|
|
@@ -11622,7 +11667,7 @@ declare const EvaluationSuiteConfigSelectSchema: drizzle_zod19.BuildSchema<"sele
|
|
|
11622
11667
|
}, {}, {
|
|
11623
11668
|
length: 256;
|
|
11624
11669
|
}>;
|
|
11625
|
-
},
|
|
11670
|
+
}, drizzle_zod15.BuildRefine<{
|
|
11626
11671
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
11627
11672
|
name: "created_at";
|
|
11628
11673
|
tableName: "evaluation_suite_config";
|
|
@@ -11796,7 +11841,7 @@ declare const EvaluationSuiteConfigApiUpdateSchema: z.ZodObject<{
|
|
|
11796
11841
|
sampleRate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>>;
|
|
11797
11842
|
evaluatorIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11798
11843
|
}, z.core.$strip>;
|
|
11799
|
-
declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema:
|
|
11844
|
+
declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
11800
11845
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
11801
11846
|
name: "created_at";
|
|
11802
11847
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
@@ -11926,7 +11971,7 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: driz
|
|
|
11926
11971
|
}, {}, {
|
|
11927
11972
|
length: 256;
|
|
11928
11973
|
}>;
|
|
11929
|
-
},
|
|
11974
|
+
}, drizzle_zod15.BuildRefine<{
|
|
11930
11975
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
11931
11976
|
name: "created_at";
|
|
11932
11977
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
@@ -12085,22 +12130,22 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiSelectSchema: z
|
|
|
12085
12130
|
id: z.ZodString;
|
|
12086
12131
|
createdAt: z.ZodString;
|
|
12087
12132
|
updatedAt: z.ZodString;
|
|
12088
|
-
evaluationRunConfigId: z.ZodString;
|
|
12089
12133
|
evaluationSuiteConfigId: z.ZodString;
|
|
12134
|
+
evaluationRunConfigId: z.ZodString;
|
|
12090
12135
|
}, z.core.$strip>;
|
|
12091
12136
|
declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiInsertSchema: z.ZodObject<{
|
|
12092
12137
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12093
12138
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12094
|
-
evaluationRunConfigId: z.ZodString;
|
|
12095
12139
|
evaluationSuiteConfigId: z.ZodString;
|
|
12140
|
+
evaluationRunConfigId: z.ZodString;
|
|
12096
12141
|
}, z.core.$strip>;
|
|
12097
12142
|
declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiUpdateSchema: z.ZodObject<{
|
|
12098
12143
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12099
12144
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12100
|
-
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12101
12145
|
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12146
|
+
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12102
12147
|
}, z.core.$strip>;
|
|
12103
|
-
declare const EvaluationJobConfigEvaluatorRelationSelectSchema:
|
|
12148
|
+
declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
12104
12149
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
12105
12150
|
name: "created_at";
|
|
12106
12151
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
@@ -12230,7 +12275,7 @@ declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod19.Bu
|
|
|
12230
12275
|
}, {}, {
|
|
12231
12276
|
length: 256;
|
|
12232
12277
|
}>;
|
|
12233
|
-
},
|
|
12278
|
+
}, drizzle_zod15.BuildRefine<{
|
|
12234
12279
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
12235
12280
|
name: "created_at";
|
|
12236
12281
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
@@ -12389,22 +12434,22 @@ declare const EvaluationJobConfigEvaluatorRelationApiSelectSchema: z.ZodObject<{
|
|
|
12389
12434
|
id: z.ZodString;
|
|
12390
12435
|
createdAt: z.ZodString;
|
|
12391
12436
|
updatedAt: z.ZodString;
|
|
12392
|
-
evaluationJobConfigId: z.ZodString;
|
|
12393
12437
|
evaluatorId: z.ZodString;
|
|
12438
|
+
evaluationJobConfigId: z.ZodString;
|
|
12394
12439
|
}, z.core.$strip>;
|
|
12395
12440
|
declare const EvaluationJobConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
12396
12441
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12397
12442
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12398
|
-
evaluationJobConfigId: z.ZodString;
|
|
12399
12443
|
evaluatorId: z.ZodString;
|
|
12444
|
+
evaluationJobConfigId: z.ZodString;
|
|
12400
12445
|
}, z.core.$strip>;
|
|
12401
12446
|
declare const EvaluationJobConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
|
|
12402
12447
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12403
12448
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12404
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12405
12449
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12450
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12406
12451
|
}, z.core.$strip>;
|
|
12407
|
-
declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema:
|
|
12452
|
+
declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
12408
12453
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
12409
12454
|
name: "created_at";
|
|
12410
12455
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
@@ -12534,7 +12579,7 @@ declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod19.
|
|
|
12534
12579
|
}, {}, {
|
|
12535
12580
|
length: 256;
|
|
12536
12581
|
}>;
|
|
12537
|
-
},
|
|
12582
|
+
}, drizzle_zod15.BuildRefine<{
|
|
12538
12583
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
12539
12584
|
name: "created_at";
|
|
12540
12585
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
@@ -12708,7 +12753,7 @@ declare const EvaluationSuiteConfigEvaluatorRelationApiUpdateSchema: z.ZodObject
|
|
|
12708
12753
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12709
12754
|
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12710
12755
|
}, z.core.$strip>;
|
|
12711
|
-
declare const EvaluatorSelectSchema:
|
|
12756
|
+
declare const EvaluatorSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
12712
12757
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
12713
12758
|
name: "created_at";
|
|
12714
12759
|
tableName: "evaluator";
|
|
@@ -12920,7 +12965,7 @@ declare const EvaluatorSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
12920
12965
|
}, {}, {
|
|
12921
12966
|
length: 256;
|
|
12922
12967
|
}>;
|
|
12923
|
-
},
|
|
12968
|
+
}, drizzle_zod15.BuildRefine<{
|
|
12924
12969
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
12925
12970
|
name: "created_at";
|
|
12926
12971
|
tableName: "evaluator";
|
|
@@ -13212,6 +13257,7 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<{
|
|
|
13212
13257
|
updatedAt: z.ZodString;
|
|
13213
13258
|
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
13214
13259
|
description: z.ZodNullable<z.ZodString>;
|
|
13260
|
+
prompt: z.ZodString;
|
|
13215
13261
|
model: z.ZodType<{
|
|
13216
13262
|
model?: string | undefined;
|
|
13217
13263
|
providerOptions?: Record<string, unknown> | undefined;
|
|
@@ -13233,7 +13279,6 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<{
|
|
|
13233
13279
|
fallbackModels?: string[] | undefined;
|
|
13234
13280
|
allowedProviders?: string[] | undefined;
|
|
13235
13281
|
}>>;
|
|
13236
|
-
prompt: z.ZodString;
|
|
13237
13282
|
passCriteria: z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>;
|
|
13238
13283
|
}, z.core.$strip>;
|
|
13239
13284
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
@@ -13242,6 +13287,7 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
13242
13287
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13243
13288
|
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
13244
13289
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13290
|
+
prompt: z.ZodString;
|
|
13245
13291
|
model: z.ZodType<{
|
|
13246
13292
|
model?: string | undefined;
|
|
13247
13293
|
providerOptions?: Record<string, unknown> | undefined;
|
|
@@ -13263,7 +13309,6 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
13263
13309
|
fallbackModels?: string[] | undefined;
|
|
13264
13310
|
allowedProviders?: string[] | undefined;
|
|
13265
13311
|
}>>;
|
|
13266
|
-
prompt: z.ZodString;
|
|
13267
13312
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, any, any>>>;
|
|
13268
13313
|
}, z.core.$strip>;
|
|
13269
13314
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
@@ -13272,6 +13317,7 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
13272
13317
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13273
13318
|
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
13274
13319
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13320
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13275
13321
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
13276
13322
|
model?: string | undefined;
|
|
13277
13323
|
providerOptions?: Record<string, unknown> | undefined;
|
|
@@ -13293,10 +13339,9 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
13293
13339
|
fallbackModels?: string[] | undefined;
|
|
13294
13340
|
allowedProviders?: string[] | undefined;
|
|
13295
13341
|
}>>>>;
|
|
13296
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13297
13342
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, any, any>>>>>;
|
|
13298
13343
|
}, z.core.$strip>;
|
|
13299
|
-
declare const DatasetSelectSchema:
|
|
13344
|
+
declare const DatasetSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
13300
13345
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
13301
13346
|
name: "created_at";
|
|
13302
13347
|
tableName: "dataset";
|
|
@@ -13407,7 +13452,7 @@ declare const DatasetSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
13407
13452
|
}, {}, {
|
|
13408
13453
|
length: 256;
|
|
13409
13454
|
}>;
|
|
13410
|
-
},
|
|
13455
|
+
}, drizzle_zod15.BuildRefine<{
|
|
13411
13456
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
13412
13457
|
name: "created_at";
|
|
13413
13458
|
tableName: "dataset";
|
|
@@ -13557,7 +13602,7 @@ declare const DatasetApiUpdateSchema: z.ZodObject<{
|
|
|
13557
13602
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13558
13603
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13559
13604
|
}, z.core.$strip>;
|
|
13560
|
-
declare const DatasetItemSelectSchema:
|
|
13605
|
+
declare const DatasetItemSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
13561
13606
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
13562
13607
|
name: "created_at";
|
|
13563
13608
|
tableName: "dataset_item";
|
|
@@ -13706,7 +13751,7 @@ declare const DatasetItemSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
13706
13751
|
}, {}, {
|
|
13707
13752
|
length: 256;
|
|
13708
13753
|
}>;
|
|
13709
|
-
},
|
|
13754
|
+
}, drizzle_zod15.BuildRefine<{
|
|
13710
13755
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
13711
13756
|
name: "created_at";
|
|
13712
13757
|
tableName: "dataset_item";
|
|
@@ -13883,28 +13928,28 @@ declare const DatasetItemUpdateSchema: z.ZodObject<{
|
|
|
13883
13928
|
in: {};
|
|
13884
13929
|
}>;
|
|
13885
13930
|
declare const DatasetItemApiSelectSchema: z.ZodObject<{
|
|
13886
|
-
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13887
13931
|
id: z.ZodString;
|
|
13888
13932
|
createdAt: z.ZodString;
|
|
13889
13933
|
updatedAt: z.ZodString;
|
|
13934
|
+
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13890
13935
|
datasetId: z.ZodString;
|
|
13891
13936
|
expectedOutput: z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>;
|
|
13892
13937
|
}, z.core.$strip>;
|
|
13893
13938
|
declare const DatasetItemApiInsertSchema: z.ZodObject<{
|
|
13894
|
-
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13895
13939
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13896
13940
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13941
|
+
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13897
13942
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13898
13943
|
}, z.core.$strip>;
|
|
13899
13944
|
declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
13900
|
-
input: z.ZodOptional<z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>>;
|
|
13901
13945
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13902
13946
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13947
|
+
input: z.ZodOptional<z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>>;
|
|
13903
13948
|
expectedOutput: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>>>;
|
|
13904
13949
|
}, z.core.$strip>;
|
|
13905
13950
|
declare const DatasetRunItemSchema: z.ZodObject<{
|
|
13906
|
-
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13907
13951
|
id: z.ZodOptional<z.ZodString>;
|
|
13952
|
+
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13908
13953
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13909
13954
|
agentId: z.ZodString;
|
|
13910
13955
|
}, z.core.$strip>;
|
|
@@ -13938,7 +13983,7 @@ declare const TriggerEvaluationJobSchema: z.ZodObject<{
|
|
|
13938
13983
|
}, z.core.$strip>>;
|
|
13939
13984
|
}, z.core.$strip>>>;
|
|
13940
13985
|
}, z.core.$strip>;
|
|
13941
|
-
declare const DatasetRunConfigSelectSchema:
|
|
13986
|
+
declare const DatasetRunConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
13942
13987
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
13943
13988
|
name: "created_at";
|
|
13944
13989
|
tableName: "dataset_run_config";
|
|
@@ -14102,7 +14147,7 @@ declare const DatasetRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
14102
14147
|
}, {}, {
|
|
14103
14148
|
length: 256;
|
|
14104
14149
|
}>;
|
|
14105
|
-
},
|
|
14150
|
+
}, drizzle_zod15.BuildRefine<{
|
|
14106
14151
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
14107
14152
|
name: "created_at";
|
|
14108
14153
|
tableName: "dataset_run_config";
|
|
@@ -14320,7 +14365,7 @@ declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
|
14320
14365
|
dispatchDelayMs: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodInt>>>>;
|
|
14321
14366
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14322
14367
|
}, z.core.$strip>;
|
|
14323
|
-
declare const AgentDatasetRelationSelectSchema:
|
|
14368
|
+
declare const AgentDatasetRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
14324
14369
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
14325
14370
|
name: "created_at";
|
|
14326
14371
|
tableName: "agent_dataset_relations";
|
|
@@ -14450,7 +14495,7 @@ declare const AgentDatasetRelationSelectSchema: drizzle_zod19.BuildSchema<"selec
|
|
|
14450
14495
|
}, {}, {
|
|
14451
14496
|
length: 256;
|
|
14452
14497
|
}>;
|
|
14453
|
-
},
|
|
14498
|
+
}, drizzle_zod15.BuildRefine<{
|
|
14454
14499
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
14455
14500
|
name: "created_at";
|
|
14456
14501
|
tableName: "agent_dataset_relations";
|
|
@@ -14618,7 +14663,7 @@ declare const AgentDatasetRelationApiInsertSchema: z.ZodObject<{
|
|
|
14618
14663
|
agentId: z.ZodString;
|
|
14619
14664
|
datasetId: z.ZodString;
|
|
14620
14665
|
}, z.core.$strip>;
|
|
14621
|
-
declare const AgentEvaluatorRelationSelectSchema:
|
|
14666
|
+
declare const AgentEvaluatorRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
14622
14667
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
14623
14668
|
name: "created_at";
|
|
14624
14669
|
tableName: "agent_evaluator_relations";
|
|
@@ -14748,7 +14793,7 @@ declare const AgentEvaluatorRelationSelectSchema: drizzle_zod19.BuildSchema<"sel
|
|
|
14748
14793
|
}, {}, {
|
|
14749
14794
|
length: 256;
|
|
14750
14795
|
}>;
|
|
14751
|
-
},
|
|
14796
|
+
}, drizzle_zod15.BuildRefine<{
|
|
14752
14797
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
14753
14798
|
name: "created_at";
|
|
14754
14799
|
tableName: "agent_evaluator_relations";
|
|
@@ -14916,7 +14961,7 @@ declare const AgentEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
|
14916
14961
|
agentId: z.ZodString;
|
|
14917
14962
|
evaluatorId: z.ZodString;
|
|
14918
14963
|
}, z.core.$strip>;
|
|
14919
|
-
declare const DatasetRunConfigAgentRelationSelectSchema:
|
|
14964
|
+
declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
14920
14965
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
14921
14966
|
name: "created_at";
|
|
14922
14967
|
tableName: "dataset_run_config_agent_relations";
|
|
@@ -15046,7 +15091,7 @@ declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSche
|
|
|
15046
15091
|
}, {}, {
|
|
15047
15092
|
length: 256;
|
|
15048
15093
|
}>;
|
|
15049
|
-
},
|
|
15094
|
+
}, drizzle_zod15.BuildRefine<{
|
|
15050
15095
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
15051
15096
|
name: "created_at";
|
|
15052
15097
|
tableName: "dataset_run_config_agent_relations";
|
|
@@ -15201,7 +15246,7 @@ declare const DatasetRunConfigAgentRelationUpdateSchema: z.ZodObject<{
|
|
|
15201
15246
|
out: {};
|
|
15202
15247
|
in: {};
|
|
15203
15248
|
}>;
|
|
15204
|
-
declare const DatasetRunConfigEvaluatorRelationSelectSchema:
|
|
15249
|
+
declare const DatasetRunConfigEvaluatorRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
15205
15250
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
15206
15251
|
name: "created_at";
|
|
15207
15252
|
tableName: "dataset_run_config_evaluator_relations";
|
|
@@ -15331,7 +15376,7 @@ declare const DatasetRunConfigEvaluatorRelationSelectSchema: drizzle_zod19.Build
|
|
|
15331
15376
|
}, {}, {
|
|
15332
15377
|
length: 256;
|
|
15333
15378
|
}>;
|
|
15334
|
-
},
|
|
15379
|
+
}, drizzle_zod15.BuildRefine<{
|
|
15335
15380
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
15336
15381
|
name: "created_at";
|
|
15337
15382
|
tableName: "dataset_run_config_evaluator_relations";
|
|
@@ -15486,7 +15531,7 @@ declare const DatasetRunConfigEvaluatorRelationUpdateSchema: z.ZodObject<{
|
|
|
15486
15531
|
out: {};
|
|
15487
15532
|
in: {};
|
|
15488
15533
|
}>;
|
|
15489
|
-
declare const DataComponentSelectSchema:
|
|
15534
|
+
declare const DataComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
15490
15535
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
15491
15536
|
name: "created_at";
|
|
15492
15537
|
tableName: "data_components";
|
|
@@ -15672,7 +15717,7 @@ declare const DataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
15672
15717
|
}, {}, {
|
|
15673
15718
|
length: 256;
|
|
15674
15719
|
}>;
|
|
15675
|
-
},
|
|
15720
|
+
}, drizzle_zod15.BuildRefine<{
|
|
15676
15721
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
15677
15722
|
name: "created_at";
|
|
15678
15723
|
tableName: "data_components";
|
|
@@ -16062,7 +16107,7 @@ declare const DataComponentApiUpdateSchema: z.ZodObject<{
|
|
|
16062
16107
|
description: z.ZodOptional<z.ZodString>;
|
|
16063
16108
|
}, z.core.$loose>>;
|
|
16064
16109
|
}, z.core.$strip>;
|
|
16065
|
-
declare const SubAgentDataComponentSelectSchema:
|
|
16110
|
+
declare const SubAgentDataComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
16066
16111
|
dataComponentId: drizzle_orm_pg_core297.PgColumn<{
|
|
16067
16112
|
name: "data_component_id";
|
|
16068
16113
|
tableName: "sub_agent_data_components";
|
|
@@ -16194,7 +16239,7 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod19.BuildSchema<"sele
|
|
|
16194
16239
|
}, {}, {
|
|
16195
16240
|
length: 256;
|
|
16196
16241
|
}>;
|
|
16197
|
-
},
|
|
16242
|
+
}, drizzle_zod15.BuildRefine<{
|
|
16198
16243
|
dataComponentId: drizzle_orm_pg_core297.PgColumn<{
|
|
16199
16244
|
name: "data_component_id";
|
|
16200
16245
|
tableName: "sub_agent_data_components";
|
|
@@ -16327,7 +16372,7 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod19.BuildSchema<"sele
|
|
|
16327
16372
|
length: 256;
|
|
16328
16373
|
}>;
|
|
16329
16374
|
}, undefined>, undefined>;
|
|
16330
|
-
declare const SubAgentDataComponentInsertSchema:
|
|
16375
|
+
declare const SubAgentDataComponentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
16331
16376
|
dataComponentId: drizzle_orm_pg_core297.PgColumn<{
|
|
16332
16377
|
name: "data_component_id";
|
|
16333
16378
|
tableName: "sub_agent_data_components";
|
|
@@ -16459,7 +16504,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"inse
|
|
|
16459
16504
|
}, {}, {
|
|
16460
16505
|
length: 256;
|
|
16461
16506
|
}>;
|
|
16462
|
-
},
|
|
16507
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
16463
16508
|
dataComponentId: drizzle_orm_pg_core297.PgColumn<{
|
|
16464
16509
|
name: "data_component_id";
|
|
16465
16510
|
tableName: "sub_agent_data_components";
|
|
@@ -16591,7 +16636,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"inse
|
|
|
16591
16636
|
}, {}, {
|
|
16592
16637
|
length: 256;
|
|
16593
16638
|
}>;
|
|
16594
|
-
}, "id" | "createdAt" | "
|
|
16639
|
+
}, "id" | "createdAt" | "agentId" | "projectId" | "tenantId" | "subAgentId" | "dataComponentId">, undefined>, undefined>;
|
|
16595
16640
|
declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
16596
16641
|
dataComponentId: z.ZodOptional<z.ZodString>;
|
|
16597
16642
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -16624,7 +16669,7 @@ declare const SubAgentDataComponentApiUpdateSchema: z.ZodObject<{
|
|
|
16624
16669
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16625
16670
|
dataComponentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16626
16671
|
}, z.core.$strip>;
|
|
16627
|
-
declare const ArtifactComponentSelectSchema:
|
|
16672
|
+
declare const ArtifactComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
16628
16673
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
16629
16674
|
name: "created_at";
|
|
16630
16675
|
tableName: "artifact_components";
|
|
@@ -16810,7 +16855,7 @@ declare const ArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
16810
16855
|
}, {}, {
|
|
16811
16856
|
length: 256;
|
|
16812
16857
|
}>;
|
|
16813
|
-
},
|
|
16858
|
+
}, drizzle_zod15.BuildRefine<{
|
|
16814
16859
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
16815
16860
|
name: "created_at";
|
|
16816
16861
|
tableName: "artifact_components";
|
|
@@ -17231,7 +17276,7 @@ declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
|
17231
17276
|
mockData: Record<string, unknown>;
|
|
17232
17277
|
}>>>>>>;
|
|
17233
17278
|
}, z.core.$strip>;
|
|
17234
|
-
declare const SubAgentArtifactComponentSelectSchema:
|
|
17279
|
+
declare const SubAgentArtifactComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
17235
17280
|
artifactComponentId: drizzle_orm_pg_core297.PgColumn<{
|
|
17236
17281
|
name: "artifact_component_id";
|
|
17237
17282
|
tableName: "sub_agent_artifact_components";
|
|
@@ -17363,7 +17408,7 @@ declare const SubAgentArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
17363
17408
|
}, {}, {
|
|
17364
17409
|
length: 256;
|
|
17365
17410
|
}>;
|
|
17366
|
-
},
|
|
17411
|
+
}, drizzle_zod15.BuildRefine<{
|
|
17367
17412
|
artifactComponentId: drizzle_orm_pg_core297.PgColumn<{
|
|
17368
17413
|
name: "artifact_component_id";
|
|
17369
17414
|
tableName: "sub_agent_artifact_components";
|
|
@@ -17607,6 +17652,7 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
17607
17652
|
createdAt: z.ZodString;
|
|
17608
17653
|
updatedAt: z.ZodString;
|
|
17609
17654
|
description: z.ZodNullable<z.ZodString>;
|
|
17655
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
17610
17656
|
models: z.ZodNullable<z.ZodType<{
|
|
17611
17657
|
base?: {
|
|
17612
17658
|
model?: string | undefined;
|
|
@@ -17693,7 +17739,6 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
17693
17739
|
}, {
|
|
17694
17740
|
stepCountIs?: number | undefined;
|
|
17695
17741
|
}>>>;
|
|
17696
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
17697
17742
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
17698
17743
|
outputContract: z.ZodNullable<z.ZodType<{
|
|
17699
17744
|
[x: string]: unknown;
|
|
@@ -17739,7 +17784,7 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
17739
17784
|
baseUrl: z.ZodString;
|
|
17740
17785
|
type: z.ZodLiteral<"external">;
|
|
17741
17786
|
}, z.core.$strip>], "type">;
|
|
17742
|
-
declare const ApiKeySelectSchema:
|
|
17787
|
+
declare const ApiKeySelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
17743
17788
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
17744
17789
|
name: "created_at";
|
|
17745
17790
|
tableName: "api_keys";
|
|
@@ -17960,7 +18005,7 @@ declare const ApiKeySelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
17960
18005
|
}, {}, {
|
|
17961
18006
|
length: 256;
|
|
17962
18007
|
}>;
|
|
17963
|
-
},
|
|
18008
|
+
}, drizzle_zod15.BuildRefine<{
|
|
17964
18009
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
17965
18010
|
name: "created_at";
|
|
17966
18011
|
tableName: "api_keys";
|
|
@@ -18487,7 +18532,7 @@ declare const AppConfigResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
18487
18532
|
}, z.core.$strip>>>;
|
|
18488
18533
|
}, z.core.$strip>;
|
|
18489
18534
|
}, z.core.$strip>], "type">;
|
|
18490
|
-
declare const AppSelectSchema:
|
|
18535
|
+
declare const AppSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
18491
18536
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
18492
18537
|
name: "created_at";
|
|
18493
18538
|
tableName: "apps";
|
|
@@ -18801,7 +18846,7 @@ declare const AppSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
18801
18846
|
identity: undefined;
|
|
18802
18847
|
generated: undefined;
|
|
18803
18848
|
}, {}, {}>;
|
|
18804
|
-
},
|
|
18849
|
+
}, drizzle_zod15.BuildRefine<{
|
|
18805
18850
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
18806
18851
|
name: "created_at";
|
|
18807
18852
|
tableName: "apps";
|
|
@@ -19183,9 +19228,9 @@ declare const AppUpdateSchema: z.ZodObject<{
|
|
|
19183
19228
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19184
19229
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19185
19230
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
19231
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19186
19232
|
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19187
19233
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19188
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19189
19234
|
config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
19190
19235
|
type: z.ZodLiteral<"web_client">;
|
|
19191
19236
|
webClient: z.ZodObject<{
|
|
@@ -19233,7 +19278,7 @@ declare const AppUpdateSchema: z.ZodObject<{
|
|
|
19233
19278
|
out: {};
|
|
19234
19279
|
in: {};
|
|
19235
19280
|
}>;
|
|
19236
|
-
declare const AppApiSelectSchema:
|
|
19281
|
+
declare const AppApiSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
19237
19282
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
19238
19283
|
name: "created_at";
|
|
19239
19284
|
tableName: "apps";
|
|
@@ -19547,7 +19592,7 @@ declare const AppApiSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
19547
19592
|
identity: undefined;
|
|
19548
19593
|
generated: undefined;
|
|
19549
19594
|
}, {}, {}>;
|
|
19550
|
-
},
|
|
19595
|
+
}, drizzle_zod15.BuildRefine<{
|
|
19551
19596
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
19552
19597
|
name: "created_at";
|
|
19553
19598
|
tableName: "apps";
|
|
@@ -19870,9 +19915,9 @@ declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
|
19870
19915
|
updatedAt: z.ZodString;
|
|
19871
19916
|
description: z.ZodNullable<z.ZodString>;
|
|
19872
19917
|
enabled: z.ZodBoolean;
|
|
19918
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
19873
19919
|
projectId: z.ZodNullable<z.ZodString>;
|
|
19874
19920
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
19875
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
19876
19921
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
19877
19922
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
19878
19923
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -19931,9 +19976,9 @@ declare const AppApiInsertSchema: z.ZodObject<{
|
|
|
19931
19976
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19932
19977
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19933
19978
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
19979
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19934
19980
|
projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19935
19981
|
tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19936
|
-
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19937
19982
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
19938
19983
|
type: z.ZodLiteral<"web_client">;
|
|
19939
19984
|
webClient: z.ZodObject<{
|
|
@@ -19985,9 +20030,9 @@ declare const AppApiUpdateSchema: z.ZodObject<{
|
|
|
19985
20030
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19986
20031
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19987
20032
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
20033
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19988
20034
|
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19989
20035
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19990
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19991
20036
|
config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
19992
20037
|
type: z.ZodLiteral<"web_client">;
|
|
19993
20038
|
webClient: z.ZodObject<{
|
|
@@ -20045,9 +20090,9 @@ declare const AppApiCreationResponseSchema: z.ZodObject<{
|
|
|
20045
20090
|
updatedAt: z.ZodString;
|
|
20046
20091
|
description: z.ZodNullable<z.ZodString>;
|
|
20047
20092
|
enabled: z.ZodBoolean;
|
|
20093
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
20048
20094
|
projectId: z.ZodNullable<z.ZodString>;
|
|
20049
20095
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
20050
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
20051
20096
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
20052
20097
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
20053
20098
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -20097,7 +20142,7 @@ declare const AppApiCreationResponseSchema: z.ZodObject<{
|
|
|
20097
20142
|
}>;
|
|
20098
20143
|
}, z.core.$strip>;
|
|
20099
20144
|
}, z.core.$strip>;
|
|
20100
|
-
declare const CredentialReferenceSelectSchema:
|
|
20145
|
+
declare const CredentialReferenceSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
20101
20146
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
20102
20147
|
name: "created_at";
|
|
20103
20148
|
tableName: "credential_references";
|
|
@@ -20322,7 +20367,7 @@ declare const CredentialReferenceSelectSchema: drizzle_zod19.BuildSchema<"select
|
|
|
20322
20367
|
}, {}, {
|
|
20323
20368
|
length: 256;
|
|
20324
20369
|
}>;
|
|
20325
|
-
},
|
|
20370
|
+
}, drizzle_zod15.BuildRefine<{
|
|
20326
20371
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
20327
20372
|
name: "created_at";
|
|
20328
20373
|
tableName: "credential_references";
|
|
@@ -20555,10 +20600,10 @@ declare const CredentialReferenceInsertSchema: z.ZodObject<{
|
|
|
20555
20600
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20556
20601
|
projectId: z.ZodString;
|
|
20557
20602
|
tenantId: z.ZodString;
|
|
20558
|
-
|
|
20603
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20559
20604
|
credentialStoreId: z.ZodString;
|
|
20560
20605
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20561
|
-
|
|
20606
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20562
20607
|
}, {
|
|
20563
20608
|
out: {};
|
|
20564
20609
|
in: {};
|
|
@@ -20570,10 +20615,10 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
|
20570
20615
|
userId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20571
20616
|
projectId: z.ZodOptional<z.ZodString>;
|
|
20572
20617
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
20573
|
-
|
|
20618
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20574
20619
|
credentialStoreId: z.ZodOptional<z.ZodString>;
|
|
20575
20620
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
20576
|
-
|
|
20621
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20577
20622
|
}, {
|
|
20578
20623
|
out: {};
|
|
20579
20624
|
in: {};
|
|
@@ -20584,17 +20629,17 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
20584
20629
|
createdAt: z.ZodString;
|
|
20585
20630
|
updatedAt: z.ZodString;
|
|
20586
20631
|
userId: z.ZodNullable<z.ZodString>;
|
|
20587
|
-
|
|
20632
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
20588
20633
|
credentialStoreId: z.ZodString;
|
|
20589
20634
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
20590
|
-
|
|
20635
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
20591
20636
|
type: z.ZodEnum<{
|
|
20592
20637
|
readonly memory: "memory";
|
|
20593
20638
|
readonly keychain: "keychain";
|
|
20594
20639
|
readonly nango: "nango";
|
|
20595
20640
|
readonly composio: "composio";
|
|
20596
20641
|
}>;
|
|
20597
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
20642
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
20598
20643
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
20599
20644
|
name: "created_at";
|
|
20600
20645
|
tableName: "tools";
|
|
@@ -20874,7 +20919,7 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
20874
20919
|
}, {}, {
|
|
20875
20920
|
length: 256;
|
|
20876
20921
|
}>;
|
|
20877
|
-
},
|
|
20922
|
+
}, drizzle_zod15.BuildRefine<{
|
|
20878
20923
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
20879
20924
|
name: "created_at";
|
|
20880
20925
|
tableName: "tools";
|
|
@@ -21174,10 +21219,10 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
21174
21219
|
id: z.ZodString;
|
|
21175
21220
|
name: z.ZodString;
|
|
21176
21221
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21177
|
-
|
|
21222
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21178
21223
|
credentialStoreId: z.ZodString;
|
|
21179
21224
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
21180
|
-
|
|
21225
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21181
21226
|
type: z.ZodEnum<{
|
|
21182
21227
|
readonly memory: "memory";
|
|
21183
21228
|
readonly keychain: "keychain";
|
|
@@ -21189,10 +21234,10 @@ declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
|
21189
21234
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21190
21235
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21191
21236
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21192
|
-
|
|
21237
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21193
21238
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21194
21239
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
21195
|
-
|
|
21240
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21196
21241
|
type: z.ZodOptional<z.ZodEnum<{
|
|
21197
21242
|
readonly memory: "memory";
|
|
21198
21243
|
readonly keychain: "keychain";
|
|
@@ -21260,9 +21305,9 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
21260
21305
|
id: z.ZodString;
|
|
21261
21306
|
name: z.ZodString;
|
|
21262
21307
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21308
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
21263
21309
|
projectId: z.ZodString;
|
|
21264
21310
|
tenantId: z.ZodString;
|
|
21265
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
21266
21311
|
config: z.ZodObject<{
|
|
21267
21312
|
type: z.ZodLiteral<"mcp">;
|
|
21268
21313
|
mcp: z.ZodObject<{
|
|
@@ -21320,12 +21365,12 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
21320
21365
|
name: z.ZodString;
|
|
21321
21366
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
21322
21367
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
21323
|
-
createdBy: z.ZodOptional<z.ZodString>;
|
|
21324
21368
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
21325
21369
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
21326
21370
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
21327
21371
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21328
21372
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
21373
|
+
createdBy: z.ZodOptional<z.ZodString>;
|
|
21329
21374
|
availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21330
21375
|
name: z.ZodString;
|
|
21331
21376
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -21355,10 +21400,10 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
21355
21400
|
id: z.ZodString;
|
|
21356
21401
|
name: z.ZodString;
|
|
21357
21402
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21358
|
-
|
|
21403
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21359
21404
|
credentialStoreId: z.ZodString;
|
|
21360
21405
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
21361
|
-
|
|
21406
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21362
21407
|
type: z.ZodEnum<{
|
|
21363
21408
|
readonly memory: "memory";
|
|
21364
21409
|
readonly keychain: "keychain";
|
|
@@ -21381,9 +21426,9 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
21381
21426
|
id: z.ZodOptional<z.ZodString>;
|
|
21382
21427
|
name: z.ZodOptional<z.ZodString>;
|
|
21383
21428
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21429
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
21384
21430
|
projectId: z.ZodOptional<z.ZodString>;
|
|
21385
21431
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
21386
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
21387
21432
|
config: z.ZodOptional<z.ZodObject<{
|
|
21388
21433
|
type: z.ZodLiteral<"mcp">;
|
|
21389
21434
|
mcp: z.ZodObject<{
|
|
@@ -21523,7 +21568,7 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
21523
21568
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21524
21569
|
isWorkApp: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
21525
21570
|
}, z.core.$strip>;
|
|
21526
|
-
declare const FunctionToolSelectSchema:
|
|
21571
|
+
declare const FunctionToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
21527
21572
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
21528
21573
|
name: "created_at";
|
|
21529
21574
|
tableName: "function_tools";
|
|
@@ -21689,7 +21734,7 @@ declare const FunctionToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
21689
21734
|
}, {}, {
|
|
21690
21735
|
length: 256;
|
|
21691
21736
|
}>;
|
|
21692
|
-
},
|
|
21737
|
+
}, drizzle_zod15.BuildRefine<{
|
|
21693
21738
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
21694
21739
|
name: "created_at";
|
|
21695
21740
|
tableName: "function_tools";
|
|
@@ -21860,9 +21905,9 @@ declare const FunctionToolInsertSchema: z.ZodObject<{
|
|
|
21860
21905
|
id: z.ZodString;
|
|
21861
21906
|
name: z.ZodString;
|
|
21862
21907
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21908
|
+
agentId: z.ZodString;
|
|
21863
21909
|
projectId: z.ZodString;
|
|
21864
21910
|
tenantId: z.ZodString;
|
|
21865
|
-
agentId: z.ZodString;
|
|
21866
21911
|
functionId: z.ZodString;
|
|
21867
21912
|
}, {
|
|
21868
21913
|
out: {};
|
|
@@ -21872,9 +21917,9 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
21872
21917
|
id: z.ZodOptional<z.ZodString>;
|
|
21873
21918
|
name: z.ZodOptional<z.ZodString>;
|
|
21874
21919
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21920
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
21875
21921
|
projectId: z.ZodOptional<z.ZodString>;
|
|
21876
21922
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
21877
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
21878
21923
|
functionId: z.ZodOptional<z.ZodString>;
|
|
21879
21924
|
}, {
|
|
21880
21925
|
out: {};
|
|
@@ -21903,7 +21948,7 @@ declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
|
21903
21948
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21904
21949
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21905
21950
|
}, z.core.$strip>;
|
|
21906
|
-
declare const SubAgentFunctionToolRelationSelectSchema:
|
|
21951
|
+
declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
21907
21952
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
21908
21953
|
name: "created_at";
|
|
21909
21954
|
tableName: "sub_agent_function_tool_relations";
|
|
@@ -22075,7 +22120,7 @@ declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod19.BuildSchem
|
|
|
22075
22120
|
}, {}, {
|
|
22076
22121
|
length: 256;
|
|
22077
22122
|
}>;
|
|
22078
|
-
},
|
|
22123
|
+
}, drizzle_zod15.BuildRefine<{
|
|
22079
22124
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
22080
22125
|
name: "created_at";
|
|
22081
22126
|
tableName: "sub_agent_function_tool_relations";
|
|
@@ -22251,7 +22296,7 @@ declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod19.BuildSchem
|
|
|
22251
22296
|
declare const SubAgentFunctionToolRelationInsertSchema: z.ZodObject<{
|
|
22252
22297
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22253
22298
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22254
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22299
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22255
22300
|
agentId: z.ZodString;
|
|
22256
22301
|
projectId: z.ZodString;
|
|
22257
22302
|
tenantId: z.ZodString;
|
|
@@ -22267,18 +22312,18 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<{
|
|
|
22267
22312
|
createdAt: z.ZodString;
|
|
22268
22313
|
updatedAt: z.ZodString;
|
|
22269
22314
|
subAgentId: z.ZodString;
|
|
22315
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
22270
22316
|
functionToolId: z.ZodString;
|
|
22271
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
22272
22317
|
}, z.core.$strip>;
|
|
22273
22318
|
declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
|
|
22274
22319
|
subAgentId: z.ZodString;
|
|
22320
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22275
22321
|
functionToolId: z.ZodString;
|
|
22276
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
22277
22322
|
}, {
|
|
22278
22323
|
out: {};
|
|
22279
22324
|
in: {};
|
|
22280
22325
|
}>;
|
|
22281
|
-
declare const FunctionSelectSchema:
|
|
22326
|
+
declare const FunctionSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
22282
22327
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
22283
22328
|
name: "created_at";
|
|
22284
22329
|
tableName: "functions";
|
|
@@ -22425,7 +22470,7 @@ declare const FunctionSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
22425
22470
|
}, {}, {
|
|
22426
22471
|
length: 256;
|
|
22427
22472
|
}>;
|
|
22428
|
-
},
|
|
22473
|
+
}, drizzle_zod15.BuildRefine<{
|
|
22429
22474
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
22430
22475
|
name: "created_at";
|
|
22431
22476
|
tableName: "functions";
|
|
@@ -22604,22 +22649,22 @@ declare const FunctionApiSelectSchema: z.ZodObject<{
|
|
|
22604
22649
|
createdAt: z.ZodString;
|
|
22605
22650
|
updatedAt: z.ZodString;
|
|
22606
22651
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
22607
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
22608
22652
|
executeCode: z.ZodString;
|
|
22653
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
22609
22654
|
}, z.core.$strip>;
|
|
22610
22655
|
declare const FunctionApiInsertSchema: z.ZodObject<{
|
|
22611
22656
|
id: z.ZodString;
|
|
22612
22657
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22613
|
-
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
22614
22658
|
executeCode: z.ZodString;
|
|
22659
|
+
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
22615
22660
|
}, z.core.$strip>;
|
|
22616
22661
|
declare const FunctionApiUpdateSchema: z.ZodObject<{
|
|
22617
22662
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22618
22663
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22619
22664
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22620
22665
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
22621
|
-
dependencies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22622
22666
|
executeCode: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22667
|
+
dependencies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22623
22668
|
}, z.core.$strip>;
|
|
22624
22669
|
declare const FetchConfigSchema: z.ZodObject<{
|
|
22625
22670
|
url: z.ZodString;
|
|
@@ -22664,10 +22709,10 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
22664
22709
|
id: z.ZodString;
|
|
22665
22710
|
name: z.ZodString;
|
|
22666
22711
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22667
|
-
|
|
22712
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22668
22713
|
credentialStoreId: z.ZodString;
|
|
22669
22714
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22670
|
-
|
|
22715
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22671
22716
|
type: z.ZodEnum<{
|
|
22672
22717
|
readonly memory: "memory";
|
|
22673
22718
|
readonly keychain: "keychain";
|
|
@@ -22691,22 +22736,22 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
22691
22736
|
}>;
|
|
22692
22737
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
22693
22738
|
id: z.ZodOptional<z.ZodString>;
|
|
22694
|
-
projectId: z.ZodString;
|
|
22695
|
-
tenantId: z.ZodString;
|
|
22696
|
-
agentId: z.ZodString;
|
|
22697
22739
|
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22698
22740
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22741
|
+
agentId: z.ZodString;
|
|
22742
|
+
projectId: z.ZodString;
|
|
22743
|
+
tenantId: z.ZodString;
|
|
22699
22744
|
}, {
|
|
22700
22745
|
out: {};
|
|
22701
22746
|
in: {};
|
|
22702
22747
|
}>;
|
|
22703
22748
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
22704
22749
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22705
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
22706
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
22707
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
22708
22750
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
22709
22751
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
22752
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
22753
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
22754
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
22710
22755
|
}, {
|
|
22711
22756
|
out: {};
|
|
22712
22757
|
in: {};
|
|
@@ -22728,7 +22773,7 @@ declare const ContextConfigApiUpdateSchema: z.ZodObject<{
|
|
|
22728
22773
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
22729
22774
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
22730
22775
|
}, z.core.$strip>;
|
|
22731
|
-
declare const SubAgentToolRelationSelectSchema:
|
|
22776
|
+
declare const SubAgentToolRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
22732
22777
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
22733
22778
|
name: "created_at";
|
|
22734
22779
|
tableName: "sub_agent_tool_relations";
|
|
@@ -22938,7 +22983,7 @@ declare const SubAgentToolRelationSelectSchema: drizzle_zod19.BuildSchema<"selec
|
|
|
22938
22983
|
}, {}, {
|
|
22939
22984
|
length: 256;
|
|
22940
22985
|
}>;
|
|
22941
|
-
},
|
|
22986
|
+
}, drizzle_zod15.BuildRefine<{
|
|
22942
22987
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
22943
22988
|
name: "created_at";
|
|
22944
22989
|
tableName: "sub_agent_tool_relations";
|
|
@@ -23189,11 +23234,11 @@ declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
|
23189
23234
|
id: z.ZodString;
|
|
23190
23235
|
createdAt: z.ZodString;
|
|
23191
23236
|
updatedAt: z.ZodString;
|
|
23192
|
-
headers: z.ZodNullable<z.ZodType<
|
|
23237
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
23193
23238
|
subAgentId: z.ZodString;
|
|
23194
23239
|
toolId: z.ZodString;
|
|
23195
|
-
|
|
23196
|
-
|
|
23240
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
23241
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
23197
23242
|
}, z.core.$strip>;
|
|
23198
23243
|
declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
23199
23244
|
id: z.ZodString;
|
|
@@ -23202,10 +23247,10 @@ declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
|
23202
23247
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
23203
23248
|
subAgentId: z.ZodString;
|
|
23204
23249
|
toolId: z.ZodString;
|
|
23250
|
+
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
23205
23251
|
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23206
23252
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
23207
23253
|
}, z.core.$strip>>>>;
|
|
23208
|
-
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
23209
23254
|
}, z.core.$strip>;
|
|
23210
23255
|
declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
23211
23256
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -23214,12 +23259,12 @@ declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
|
23214
23259
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
23215
23260
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23216
23261
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23262
|
+
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
23217
23263
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23218
23264
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
23219
23265
|
}, z.core.$strip>>>>>>;
|
|
23220
|
-
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
23221
23266
|
}, z.core.$strip>;
|
|
23222
|
-
declare const SubAgentExternalAgentRelationSelectSchema:
|
|
23267
|
+
declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
23223
23268
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
23224
23269
|
name: "created_at";
|
|
23225
23270
|
tableName: "sub_agent_external_agent_relations";
|
|
@@ -23387,7 +23432,7 @@ declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod19.BuildSche
|
|
|
23387
23432
|
}, {}, {
|
|
23388
23433
|
length: 256;
|
|
23389
23434
|
}>;
|
|
23390
|
-
},
|
|
23435
|
+
}, drizzle_zod15.BuildRefine<{
|
|
23391
23436
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
23392
23437
|
name: "created_at";
|
|
23393
23438
|
tableName: "sub_agent_external_agent_relations";
|
|
@@ -23588,7 +23633,7 @@ declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<{
|
|
|
23588
23633
|
id: z.ZodString;
|
|
23589
23634
|
createdAt: z.ZodString;
|
|
23590
23635
|
updatedAt: z.ZodString;
|
|
23591
|
-
headers: z.ZodNullable<z.ZodType<
|
|
23636
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
23592
23637
|
subAgentId: z.ZodString;
|
|
23593
23638
|
externalAgentId: z.ZodString;
|
|
23594
23639
|
}, z.core.$strip>;
|
|
@@ -23606,7 +23651,7 @@ declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
23606
23651
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23607
23652
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23608
23653
|
}, z.core.$strip>;
|
|
23609
|
-
declare const SubAgentTeamAgentRelationSelectSchema:
|
|
23654
|
+
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
23610
23655
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
23611
23656
|
name: "created_at";
|
|
23612
23657
|
tableName: "sub_agent_team_agent_relations";
|
|
@@ -23774,7 +23819,7 @@ declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
23774
23819
|
}, {}, {
|
|
23775
23820
|
length: 256;
|
|
23776
23821
|
}>;
|
|
23777
|
-
},
|
|
23822
|
+
}, drizzle_zod15.BuildRefine<{
|
|
23778
23823
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
23779
23824
|
name: "created_at";
|
|
23780
23825
|
tableName: "sub_agent_team_agent_relations";
|
|
@@ -23975,7 +24020,7 @@ declare const SubAgentTeamAgentRelationApiSelectSchema: z.ZodObject<{
|
|
|
23975
24020
|
id: z.ZodString;
|
|
23976
24021
|
createdAt: z.ZodString;
|
|
23977
24022
|
updatedAt: z.ZodString;
|
|
23978
|
-
headers: z.ZodNullable<z.ZodType<
|
|
24023
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
23979
24024
|
subAgentId: z.ZodString;
|
|
23980
24025
|
targetAgentId: z.ZodString;
|
|
23981
24026
|
}, z.core.$strip>;
|
|
@@ -23993,7 +24038,7 @@ declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
23993
24038
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23994
24039
|
targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23995
24040
|
}, z.core.$strip>;
|
|
23996
|
-
declare const LedgerArtifactSelectSchema:
|
|
24041
|
+
declare const LedgerArtifactSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
23997
24042
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
23998
24043
|
name: "created_at";
|
|
23999
24044
|
tableName: "ledger_artifacts";
|
|
@@ -24328,7 +24373,7 @@ declare const LedgerArtifactSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
24328
24373
|
}, {}, {
|
|
24329
24374
|
length: 256;
|
|
24330
24375
|
}>;
|
|
24331
|
-
},
|
|
24376
|
+
}, drizzle_zod15.BuildRefine<{
|
|
24332
24377
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
24333
24378
|
name: "created_at";
|
|
24334
24379
|
tableName: "ledger_artifacts";
|
|
@@ -24664,7 +24709,7 @@ declare const LedgerArtifactSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
24664
24709
|
length: 256;
|
|
24665
24710
|
}>;
|
|
24666
24711
|
}, undefined>, undefined>;
|
|
24667
|
-
declare const LedgerArtifactInsertSchema:
|
|
24712
|
+
declare const LedgerArtifactInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
24668
24713
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
24669
24714
|
name: "created_at";
|
|
24670
24715
|
tableName: "ledger_artifacts";
|
|
@@ -24999,7 +25044,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
24999
25044
|
}, {}, {
|
|
25000
25045
|
length: 256;
|
|
25001
25046
|
}>;
|
|
25002
|
-
},
|
|
25047
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
25003
25048
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
25004
25049
|
name: "created_at";
|
|
25005
25050
|
tableName: "ledger_artifacts";
|
|
@@ -25334,7 +25379,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
25334
25379
|
}, {}, {
|
|
25335
25380
|
length: 256;
|
|
25336
25381
|
}>;
|
|
25337
|
-
}, "type" | "id" | "name" | "createdAt" | "updatedAt" | "metadata" | "description" | "projectId" | "tenantId" | "
|
|
25382
|
+
}, "type" | "id" | "name" | "createdAt" | "updatedAt" | "metadata" | "description" | "projectId" | "tenantId" | "contextId" | "toolCallId" | "visibility" | "taskId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
25338
25383
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
25339
25384
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
25340
25385
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -25344,12 +25389,12 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
25344
25389
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
25345
25390
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25346
25391
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25347
|
-
parts: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25348
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25392
|
+
parts: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
25393
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
25349
25394
|
summary: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25350
|
-
mime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25395
|
+
mime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
25351
25396
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25352
|
-
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25397
|
+
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
25353
25398
|
derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25354
25399
|
projectId: z.ZodOptional<z.ZodString>;
|
|
25355
25400
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
@@ -25364,16 +25409,16 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
|
25364
25409
|
name: z.ZodNullable<z.ZodString>;
|
|
25365
25410
|
createdAt: z.ZodString;
|
|
25366
25411
|
updatedAt: z.ZodString;
|
|
25367
|
-
metadata: z.ZodNullable<z.ZodType<
|
|
25412
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
25368
25413
|
description: z.ZodNullable<z.ZodString>;
|
|
25369
|
-
taskId: z.ZodString;
|
|
25370
|
-
toolCallId: z.ZodNullable<z.ZodString>;
|
|
25371
25414
|
contextId: z.ZodString;
|
|
25415
|
+
toolCallId: z.ZodNullable<z.ZodString>;
|
|
25372
25416
|
visibility: z.ZodNullable<z.ZodString>;
|
|
25373
|
-
|
|
25417
|
+
taskId: z.ZodString;
|
|
25418
|
+
parts: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
25374
25419
|
summary: z.ZodNullable<z.ZodString>;
|
|
25375
|
-
mime: z.ZodNullable<z.ZodType<
|
|
25376
|
-
allowedAgents: z.ZodNullable<z.ZodType<
|
|
25420
|
+
mime: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
25421
|
+
allowedAgents: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
25377
25422
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
25378
25423
|
}, z.core.$strip>;
|
|
25379
25424
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
@@ -25382,16 +25427,16 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
|
25382
25427
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25383
25428
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25384
25429
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25385
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25430
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25386
25431
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25387
|
-
taskId: z.ZodString;
|
|
25388
|
-
toolCallId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25389
25432
|
contextId: z.ZodString;
|
|
25433
|
+
toolCallId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25390
25434
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25391
|
-
|
|
25435
|
+
taskId: z.ZodString;
|
|
25436
|
+
parts: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25392
25437
|
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25393
|
-
mime: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25394
|
-
allowedAgents: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25438
|
+
mime: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25439
|
+
allowedAgents: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25395
25440
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25396
25441
|
}, z.core.$strip>;
|
|
25397
25442
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
@@ -25400,16 +25445,16 @@ declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
|
25400
25445
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25401
25446
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
25402
25447
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
25403
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25448
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
25404
25449
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25405
|
-
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
25406
|
-
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25407
25450
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
25451
|
+
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25408
25452
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25409
|
-
|
|
25453
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
25454
|
+
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
25410
25455
|
summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25411
|
-
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25412
|
-
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25456
|
+
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
25457
|
+
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
25413
25458
|
derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25414
25459
|
}, z.core.$strip>;
|
|
25415
25460
|
declare const StatusComponentSchema: z.ZodObject<{
|
|
@@ -25682,23 +25727,23 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
25682
25727
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25683
25728
|
id: z.ZodString;
|
|
25684
25729
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
25685
|
-
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25686
25730
|
executeCode: z.ZodString;
|
|
25731
|
+
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25687
25732
|
}, z.core.$strip>>>;
|
|
25688
25733
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25689
25734
|
id: z.ZodOptional<z.ZodString>;
|
|
25690
25735
|
name: z.ZodString;
|
|
25691
25736
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25692
25737
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25693
|
-
|
|
25694
|
-
|
|
25738
|
+
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25739
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25740
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25741
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25695
25742
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25696
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25743
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25697
25744
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25698
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25699
|
-
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25745
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25700
25746
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
25701
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25702
25747
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
25703
25748
|
}, z.core.$strip>>>;
|
|
25704
25749
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -25883,23 +25928,23 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25883
25928
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25884
25929
|
id: z.ZodString;
|
|
25885
25930
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
25886
|
-
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25887
25931
|
executeCode: z.ZodString;
|
|
25932
|
+
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25888
25933
|
}, z.core.$strip>>>;
|
|
25889
25934
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25890
25935
|
id: z.ZodOptional<z.ZodString>;
|
|
25891
25936
|
name: z.ZodString;
|
|
25892
25937
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25893
25938
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25894
|
-
|
|
25895
|
-
|
|
25939
|
+
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25940
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25941
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25942
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25896
25943
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25897
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25944
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25898
25945
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25899
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25900
|
-
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25946
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25901
25947
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
25902
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25903
25948
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
25904
25949
|
}, z.core.$strip>>>;
|
|
25905
25950
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -26333,23 +26378,23 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26333
26378
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26334
26379
|
id: z.ZodString;
|
|
26335
26380
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
26336
|
-
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
26337
26381
|
executeCode: z.ZodString;
|
|
26382
|
+
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
26338
26383
|
}, z.core.$strip>>>;
|
|
26339
26384
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26340
26385
|
id: z.ZodOptional<z.ZodString>;
|
|
26341
26386
|
name: z.ZodString;
|
|
26342
26387
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26343
26388
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
26344
|
-
|
|
26345
|
-
|
|
26389
|
+
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26390
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26391
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
26392
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
26346
26393
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26347
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
26394
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
26348
26395
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26349
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
26350
|
-
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26396
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
26351
26397
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
26352
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26353
26398
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
26354
26399
|
}, z.core.$strip>>>;
|
|
26355
26400
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -26444,8 +26489,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26444
26489
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26445
26490
|
id: z.ZodString;
|
|
26446
26491
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
26447
|
-
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
26448
26492
|
executeCode: z.ZodString;
|
|
26493
|
+
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
26449
26494
|
}, z.core.$strip>>>;
|
|
26450
26495
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
26451
26496
|
files: z.ZodArray<z.ZodObject<{
|
|
@@ -26555,10 +26600,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26555
26600
|
id: z.ZodString;
|
|
26556
26601
|
name: z.ZodString;
|
|
26557
26602
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26558
|
-
|
|
26603
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26559
26604
|
credentialStoreId: z.ZodString;
|
|
26560
26605
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
26561
|
-
|
|
26606
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26562
26607
|
type: z.ZodEnum<{
|
|
26563
26608
|
readonly memory: "memory";
|
|
26564
26609
|
readonly keychain: "keychain";
|
|
@@ -27093,8 +27138,8 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
27093
27138
|
createdAt: z.ZodString;
|
|
27094
27139
|
updatedAt: z.ZodString;
|
|
27095
27140
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27096
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27097
27141
|
executeCode: z.ZodString;
|
|
27142
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27098
27143
|
}, z.core.$strip>>>;
|
|
27099
27144
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
27100
27145
|
id: z.ZodString;
|
|
@@ -27208,8 +27253,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
27208
27253
|
createdAt: z.ZodString;
|
|
27209
27254
|
updatedAt: z.ZodString;
|
|
27210
27255
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27211
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27212
27256
|
executeCode: z.ZodString;
|
|
27257
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27213
27258
|
}, z.core.$strip>>>;
|
|
27214
27259
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
27215
27260
|
id: z.ZodString;
|
|
@@ -27659,8 +27704,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27659
27704
|
createdAt: z.ZodString;
|
|
27660
27705
|
updatedAt: z.ZodString;
|
|
27661
27706
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27662
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27663
27707
|
executeCode: z.ZodString;
|
|
27708
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27664
27709
|
}, z.core.$strip>>>;
|
|
27665
27710
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
27666
27711
|
id: z.ZodString;
|
|
@@ -27751,8 +27796,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27751
27796
|
createdAt: z.ZodString;
|
|
27752
27797
|
updatedAt: z.ZodString;
|
|
27753
27798
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27754
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27755
27799
|
executeCode: z.ZodString;
|
|
27800
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27756
27801
|
}, z.core.$strip>>>;
|
|
27757
27802
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27758
27803
|
id: z.ZodString;
|
|
@@ -27882,17 +27927,17 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27882
27927
|
createdAt: z.ZodString;
|
|
27883
27928
|
updatedAt: z.ZodString;
|
|
27884
27929
|
userId: z.ZodNullable<z.ZodString>;
|
|
27885
|
-
|
|
27930
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
27886
27931
|
credentialStoreId: z.ZodString;
|
|
27887
27932
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27888
|
-
|
|
27933
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
27889
27934
|
type: z.ZodEnum<{
|
|
27890
27935
|
readonly memory: "memory";
|
|
27891
27936
|
readonly keychain: "keychain";
|
|
27892
27937
|
readonly nango: "nango";
|
|
27893
27938
|
readonly composio: "composio";
|
|
27894
27939
|
}>;
|
|
27895
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
27940
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
27896
27941
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
27897
27942
|
name: "created_at";
|
|
27898
27943
|
tableName: "tools";
|
|
@@ -28172,7 +28217,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
28172
28217
|
}, {}, {
|
|
28173
28218
|
length: 256;
|
|
28174
28219
|
}>;
|
|
28175
|
-
},
|
|
28220
|
+
}, drizzle_zod15.BuildRefine<{
|
|
28176
28221
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
28177
28222
|
name: "created_at";
|
|
28178
28223
|
tableName: "tools";
|
|
@@ -28544,8 +28589,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28544
28589
|
createdAt: z.ZodString;
|
|
28545
28590
|
updatedAt: z.ZodString;
|
|
28546
28591
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28547
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
28548
28592
|
executeCode: z.ZodString;
|
|
28593
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
28549
28594
|
}, z.core.$strip>>>;
|
|
28550
28595
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28551
28596
|
id: z.ZodString;
|
|
@@ -28675,17 +28720,17 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28675
28720
|
createdAt: z.ZodString;
|
|
28676
28721
|
updatedAt: z.ZodString;
|
|
28677
28722
|
userId: z.ZodNullable<z.ZodString>;
|
|
28678
|
-
|
|
28723
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
28679
28724
|
credentialStoreId: z.ZodString;
|
|
28680
28725
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28681
|
-
|
|
28726
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
28682
28727
|
type: z.ZodEnum<{
|
|
28683
28728
|
readonly memory: "memory";
|
|
28684
28729
|
readonly keychain: "keychain";
|
|
28685
28730
|
readonly nango: "nango";
|
|
28686
28731
|
readonly composio: "composio";
|
|
28687
28732
|
}>;
|
|
28688
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
28733
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
28689
28734
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
28690
28735
|
name: "created_at";
|
|
28691
28736
|
tableName: "tools";
|
|
@@ -28965,7 +29010,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28965
29010
|
}, {}, {
|
|
28966
29011
|
length: 256;
|
|
28967
29012
|
}>;
|
|
28968
|
-
},
|
|
29013
|
+
}, drizzle_zod15.BuildRefine<{
|
|
28969
29014
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
28970
29015
|
name: "created_at";
|
|
28971
29016
|
tableName: "tools";
|
|
@@ -29326,8 +29371,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
29326
29371
|
createdAt: z.ZodString;
|
|
29327
29372
|
updatedAt: z.ZodString;
|
|
29328
29373
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29329
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
29330
29374
|
executeCode: z.ZodString;
|
|
29375
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
29331
29376
|
}, z.core.$strip>>>;
|
|
29332
29377
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
29333
29378
|
id: z.ZodString;
|
|
@@ -29579,6 +29624,7 @@ declare const SubAgentResponse: z.ZodObject<{
|
|
|
29579
29624
|
createdAt: z.ZodString;
|
|
29580
29625
|
updatedAt: z.ZodString;
|
|
29581
29626
|
description: z.ZodNullable<z.ZodString>;
|
|
29627
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
29582
29628
|
models: z.ZodNullable<z.ZodType<{
|
|
29583
29629
|
base?: {
|
|
29584
29630
|
model?: string | undefined;
|
|
@@ -29665,7 +29711,6 @@ declare const SubAgentResponse: z.ZodObject<{
|
|
|
29665
29711
|
}, {
|
|
29666
29712
|
stepCountIs?: number | undefined;
|
|
29667
29713
|
}>>>;
|
|
29668
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
29669
29714
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
29670
29715
|
outputContract: z.ZodNullable<z.ZodType<{
|
|
29671
29716
|
[x: string]: unknown;
|
|
@@ -29709,6 +29754,9 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
29709
29754
|
createdAt: z.ZodString;
|
|
29710
29755
|
updatedAt: z.ZodString;
|
|
29711
29756
|
description: z.ZodNullable<z.ZodString>;
|
|
29757
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
29758
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
29759
|
+
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
29712
29760
|
models: z.ZodNullable<z.ZodType<{
|
|
29713
29761
|
base?: {
|
|
29714
29762
|
model?: string | undefined;
|
|
@@ -29786,18 +29834,6 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
29786
29834
|
allowedProviders?: string[] | undefined;
|
|
29787
29835
|
} | undefined;
|
|
29788
29836
|
}>>>;
|
|
29789
|
-
stopWhen: z.ZodNullable<z.ZodType<{
|
|
29790
|
-
transferCountIs?: number | undefined;
|
|
29791
|
-
}, {
|
|
29792
|
-
transferCountIs?: number | undefined;
|
|
29793
|
-
}, z.core.$ZodTypeInternals<{
|
|
29794
|
-
transferCountIs?: number | undefined;
|
|
29795
|
-
}, {
|
|
29796
|
-
transferCountIs?: number | undefined;
|
|
29797
|
-
}>>>;
|
|
29798
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
29799
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
29800
|
-
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
29801
29837
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
29802
29838
|
enabled?: boolean | undefined;
|
|
29803
29839
|
numEvents?: number | undefined;
|
|
@@ -29855,6 +29891,15 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
29855
29891
|
} | undefined;
|
|
29856
29892
|
}[] | undefined;
|
|
29857
29893
|
}>>>;
|
|
29894
|
+
stopWhen: z.ZodNullable<z.ZodType<{
|
|
29895
|
+
transferCountIs?: number | undefined;
|
|
29896
|
+
}, {
|
|
29897
|
+
transferCountIs?: number | undefined;
|
|
29898
|
+
}, z.core.$ZodTypeInternals<{
|
|
29899
|
+
transferCountIs?: number | undefined;
|
|
29900
|
+
}, {
|
|
29901
|
+
transferCountIs?: number | undefined;
|
|
29902
|
+
}>>>;
|
|
29858
29903
|
executionMode: z.ZodString;
|
|
29859
29904
|
}, z.core.$strip>;
|
|
29860
29905
|
}, z.core.$strip>;
|
|
@@ -29901,17 +29946,17 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
29901
29946
|
createdAt: z.ZodString;
|
|
29902
29947
|
updatedAt: z.ZodString;
|
|
29903
29948
|
userId: z.ZodNullable<z.ZodString>;
|
|
29904
|
-
|
|
29949
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
29905
29950
|
credentialStoreId: z.ZodString;
|
|
29906
29951
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29907
|
-
|
|
29952
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
29908
29953
|
type: z.ZodEnum<{
|
|
29909
29954
|
readonly memory: "memory";
|
|
29910
29955
|
readonly keychain: "keychain";
|
|
29911
29956
|
readonly nango: "nango";
|
|
29912
29957
|
readonly composio: "composio";
|
|
29913
29958
|
}>;
|
|
29914
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
29959
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
29915
29960
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
29916
29961
|
name: "created_at";
|
|
29917
29962
|
tableName: "tools";
|
|
@@ -30191,7 +30236,7 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
30191
30236
|
}, {}, {
|
|
30192
30237
|
length: 256;
|
|
30193
30238
|
}>;
|
|
30194
|
-
},
|
|
30239
|
+
}, drizzle_zod15.BuildRefine<{
|
|
30195
30240
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
30196
30241
|
name: "created_at";
|
|
30197
30242
|
tableName: "tools";
|
|
@@ -30494,8 +30539,8 @@ declare const FunctionResponse: z.ZodObject<{
|
|
|
30494
30539
|
createdAt: z.ZodString;
|
|
30495
30540
|
updatedAt: z.ZodString;
|
|
30496
30541
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
30497
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
30498
30542
|
executeCode: z.ZodString;
|
|
30543
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
30499
30544
|
}, z.core.$strip>;
|
|
30500
30545
|
}, z.core.$strip>;
|
|
30501
30546
|
declare const FunctionToolResponse: z.ZodObject<{
|
|
@@ -30516,8 +30561,8 @@ declare const SubAgentFunctionToolRelationResponse: z.ZodObject<{
|
|
|
30516
30561
|
createdAt: z.ZodString;
|
|
30517
30562
|
updatedAt: z.ZodString;
|
|
30518
30563
|
subAgentId: z.ZodString;
|
|
30564
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30519
30565
|
functionToolId: z.ZodString;
|
|
30520
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30521
30566
|
}, z.core.$strip>;
|
|
30522
30567
|
}, z.core.$strip>;
|
|
30523
30568
|
declare const DataComponentResponse: z.ZodObject<{
|
|
@@ -30637,11 +30682,11 @@ declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
|
30637
30682
|
id: z.ZodString;
|
|
30638
30683
|
createdAt: z.ZodString;
|
|
30639
30684
|
updatedAt: z.ZodString;
|
|
30640
|
-
headers: z.ZodNullable<z.ZodType<
|
|
30685
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30641
30686
|
subAgentId: z.ZodString;
|
|
30642
30687
|
toolId: z.ZodString;
|
|
30643
|
-
|
|
30644
|
-
|
|
30688
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30689
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30645
30690
|
}, z.core.$strip>;
|
|
30646
30691
|
}, z.core.$strip>;
|
|
30647
30692
|
declare const TriggerResponse: z.ZodObject<{
|
|
@@ -30652,22 +30697,24 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
30652
30697
|
updatedAt: z.ZodString;
|
|
30653
30698
|
description: z.ZodNullable<z.ZodString>;
|
|
30654
30699
|
enabled: z.ZodBoolean;
|
|
30655
|
-
|
|
30656
|
-
|
|
30700
|
+
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30701
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30702
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30703
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30657
30704
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30658
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
30705
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30659
30706
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30660
30707
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30661
30708
|
algorithm: z.ZodEnum<{
|
|
30709
|
+
md5: "md5";
|
|
30662
30710
|
sha256: "sha256";
|
|
30663
30711
|
sha512: "sha512";
|
|
30664
30712
|
sha384: "sha384";
|
|
30665
30713
|
sha1: "sha1";
|
|
30666
|
-
md5: "md5";
|
|
30667
30714
|
}>;
|
|
30668
30715
|
encoding: z.ZodEnum<{
|
|
30669
|
-
hex: "hex";
|
|
30670
30716
|
base64: "base64";
|
|
30717
|
+
hex: "hex";
|
|
30671
30718
|
}>;
|
|
30672
30719
|
signature: z.ZodObject<{
|
|
30673
30720
|
source: z.ZodEnum<{
|
|
@@ -30702,9 +30749,7 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
30702
30749
|
normalizeUnicode: z.ZodDefault<z.ZodBoolean>;
|
|
30703
30750
|
}, z.core.$strip>>;
|
|
30704
30751
|
}, z.core.$strip>>>;
|
|
30705
|
-
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30706
30752
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
30707
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30708
30753
|
}, z.core.$strip>;
|
|
30709
30754
|
}, z.core.$strip>;
|
|
30710
30755
|
declare const TriggerInvocationResponse: z.ZodObject<{
|
|
@@ -30725,8 +30770,8 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
30725
30770
|
triggerId: z.ZodString;
|
|
30726
30771
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
30727
30772
|
batchId: z.ZodNullable<z.ZodString>;
|
|
30728
|
-
requestPayload: z.ZodType<
|
|
30729
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
30773
|
+
requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
30774
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30730
30775
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
30731
30776
|
}, z.core.$strip>;
|
|
30732
30777
|
}, z.core.$strip>;
|
|
@@ -30736,9 +30781,9 @@ declare const FeedbackResponse: z.ZodObject<{
|
|
|
30736
30781
|
id: z.ZodString;
|
|
30737
30782
|
createdAt: z.ZodString;
|
|
30738
30783
|
updatedAt: z.ZodString;
|
|
30739
|
-
details: z.ZodNullable<z.ZodString>;
|
|
30740
30784
|
conversationId: z.ZodString;
|
|
30741
30785
|
messageId: z.ZodNullable<z.ZodString>;
|
|
30786
|
+
details: z.ZodNullable<z.ZodString>;
|
|
30742
30787
|
}, z.core.$strip>;
|
|
30743
30788
|
}, z.core.$strip>;
|
|
30744
30789
|
declare const EventResponse: z.ZodObject<{
|
|
@@ -30747,13 +30792,13 @@ declare const EventResponse: z.ZodObject<{
|
|
|
30747
30792
|
id: z.ZodString;
|
|
30748
30793
|
createdAt: z.ZodString;
|
|
30749
30794
|
updatedAt: z.ZodString;
|
|
30750
|
-
metadata: z.ZodNullable<z.ZodType<
|
|
30751
|
-
properties: z.ZodNullable<z.ZodType<
|
|
30795
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30796
|
+
properties: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30752
30797
|
agentId: z.ZodNullable<z.ZodString>;
|
|
30798
|
+
userProperties: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30753
30799
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
30754
|
-
userProperties: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30755
30800
|
messageId: z.ZodNullable<z.ZodString>;
|
|
30756
|
-
serverMetadata: z.ZodNullable<z.ZodType<
|
|
30801
|
+
serverMetadata: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30757
30802
|
}, z.core.$strip>;
|
|
30758
30803
|
}, z.core.$strip>;
|
|
30759
30804
|
declare const BulkFeedbackResponseSchema: z.ZodObject<{
|
|
@@ -30762,9 +30807,9 @@ declare const BulkFeedbackResponseSchema: z.ZodObject<{
|
|
|
30762
30807
|
id: z.ZodString;
|
|
30763
30808
|
createdAt: z.ZodString;
|
|
30764
30809
|
updatedAt: z.ZodString;
|
|
30765
|
-
details: z.ZodNullable<z.ZodString>;
|
|
30766
30810
|
conversationId: z.ZodString;
|
|
30767
30811
|
messageId: z.ZodNullable<z.ZodString>;
|
|
30812
|
+
details: z.ZodNullable<z.ZodString>;
|
|
30768
30813
|
}, z.core.$strip>>;
|
|
30769
30814
|
errors: z.ZodArray<z.ZodObject<{
|
|
30770
30815
|
index: z.ZodNumber;
|
|
@@ -30822,6 +30867,7 @@ declare const SubAgentListResponse: z.ZodObject<{
|
|
|
30822
30867
|
createdAt: z.ZodString;
|
|
30823
30868
|
updatedAt: z.ZodString;
|
|
30824
30869
|
description: z.ZodNullable<z.ZodString>;
|
|
30870
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
30825
30871
|
models: z.ZodNullable<z.ZodType<{
|
|
30826
30872
|
base?: {
|
|
30827
30873
|
model?: string | undefined;
|
|
@@ -30908,7 +30954,6 @@ declare const SubAgentListResponse: z.ZodObject<{
|
|
|
30908
30954
|
}, {
|
|
30909
30955
|
stepCountIs?: number | undefined;
|
|
30910
30956
|
}>>>;
|
|
30911
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
30912
30957
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
30913
30958
|
outputContract: z.ZodNullable<z.ZodType<{
|
|
30914
30959
|
[x: string]: unknown;
|
|
@@ -30959,6 +31004,9 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
30959
31004
|
createdAt: z.ZodString;
|
|
30960
31005
|
updatedAt: z.ZodString;
|
|
30961
31006
|
description: z.ZodNullable<z.ZodString>;
|
|
31007
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
31008
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
31009
|
+
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
30962
31010
|
models: z.ZodNullable<z.ZodType<{
|
|
30963
31011
|
base?: {
|
|
30964
31012
|
model?: string | undefined;
|
|
@@ -31036,18 +31084,6 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
31036
31084
|
allowedProviders?: string[] | undefined;
|
|
31037
31085
|
} | undefined;
|
|
31038
31086
|
}>>>;
|
|
31039
|
-
stopWhen: z.ZodNullable<z.ZodType<{
|
|
31040
|
-
transferCountIs?: number | undefined;
|
|
31041
|
-
}, {
|
|
31042
|
-
transferCountIs?: number | undefined;
|
|
31043
|
-
}, z.core.$ZodTypeInternals<{
|
|
31044
|
-
transferCountIs?: number | undefined;
|
|
31045
|
-
}, {
|
|
31046
|
-
transferCountIs?: number | undefined;
|
|
31047
|
-
}>>>;
|
|
31048
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
31049
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
31050
|
-
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
31051
31087
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
31052
31088
|
enabled?: boolean | undefined;
|
|
31053
31089
|
numEvents?: number | undefined;
|
|
@@ -31105,6 +31141,15 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
31105
31141
|
} | undefined;
|
|
31106
31142
|
}[] | undefined;
|
|
31107
31143
|
}>>>;
|
|
31144
|
+
stopWhen: z.ZodNullable<z.ZodType<{
|
|
31145
|
+
transferCountIs?: number | undefined;
|
|
31146
|
+
}, {
|
|
31147
|
+
transferCountIs?: number | undefined;
|
|
31148
|
+
}, z.core.$ZodTypeInternals<{
|
|
31149
|
+
transferCountIs?: number | undefined;
|
|
31150
|
+
}, {
|
|
31151
|
+
transferCountIs?: number | undefined;
|
|
31152
|
+
}>>>;
|
|
31108
31153
|
executionMode: z.ZodString;
|
|
31109
31154
|
}, z.core.$strip>>;
|
|
31110
31155
|
pagination: z.ZodObject<{
|
|
@@ -31181,9 +31226,9 @@ declare const AppResponse: z.ZodObject<{
|
|
|
31181
31226
|
updatedAt: z.ZodString;
|
|
31182
31227
|
description: z.ZodNullable<z.ZodString>;
|
|
31183
31228
|
enabled: z.ZodBoolean;
|
|
31229
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
31184
31230
|
projectId: z.ZodNullable<z.ZodString>;
|
|
31185
31231
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
31186
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
31187
31232
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
31188
31233
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
31189
31234
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -31241,9 +31286,9 @@ declare const AppListResponse: z.ZodObject<{
|
|
|
31241
31286
|
updatedAt: z.ZodString;
|
|
31242
31287
|
description: z.ZodNullable<z.ZodString>;
|
|
31243
31288
|
enabled: z.ZodBoolean;
|
|
31289
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
31244
31290
|
projectId: z.ZodNullable<z.ZodString>;
|
|
31245
31291
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
31246
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
31247
31292
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
31248
31293
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
31249
31294
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -31312,17 +31357,17 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
31312
31357
|
createdAt: z.ZodString;
|
|
31313
31358
|
updatedAt: z.ZodString;
|
|
31314
31359
|
userId: z.ZodNullable<z.ZodString>;
|
|
31315
|
-
|
|
31360
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
31316
31361
|
credentialStoreId: z.ZodString;
|
|
31317
31362
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
31318
|
-
|
|
31363
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
31319
31364
|
type: z.ZodEnum<{
|
|
31320
31365
|
readonly memory: "memory";
|
|
31321
31366
|
readonly keychain: "keychain";
|
|
31322
31367
|
readonly nango: "nango";
|
|
31323
31368
|
readonly composio: "composio";
|
|
31324
31369
|
}>;
|
|
31325
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
31370
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
31326
31371
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
31327
31372
|
name: "created_at";
|
|
31328
31373
|
tableName: "tools";
|
|
@@ -31602,7 +31647,7 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
31602
31647
|
}, {}, {
|
|
31603
31648
|
length: 256;
|
|
31604
31649
|
}>;
|
|
31605
|
-
},
|
|
31650
|
+
}, drizzle_zod15.BuildRefine<{
|
|
31606
31651
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
31607
31652
|
name: "created_at";
|
|
31608
31653
|
tableName: "tools";
|
|
@@ -31912,8 +31957,8 @@ declare const FunctionListResponse: z.ZodObject<{
|
|
|
31912
31957
|
createdAt: z.ZodString;
|
|
31913
31958
|
updatedAt: z.ZodString;
|
|
31914
31959
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
31915
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31916
31960
|
executeCode: z.ZodString;
|
|
31961
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31917
31962
|
}, z.core.$strip>>;
|
|
31918
31963
|
pagination: z.ZodObject<{
|
|
31919
31964
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -31948,8 +31993,8 @@ declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
|
|
|
31948
31993
|
createdAt: z.ZodString;
|
|
31949
31994
|
updatedAt: z.ZodString;
|
|
31950
31995
|
subAgentId: z.ZodString;
|
|
31996
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
31951
31997
|
functionToolId: z.ZodString;
|
|
31952
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
31953
31998
|
}, z.core.$strip>>;
|
|
31954
31999
|
pagination: z.ZodObject<{
|
|
31955
32000
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -31965,9 +32010,9 @@ declare const FeedbackListResponse: z.ZodObject<{
|
|
|
31965
32010
|
id: z.ZodString;
|
|
31966
32011
|
createdAt: z.ZodString;
|
|
31967
32012
|
updatedAt: z.ZodString;
|
|
31968
|
-
details: z.ZodNullable<z.ZodString>;
|
|
31969
32013
|
conversationId: z.ZodString;
|
|
31970
32014
|
messageId: z.ZodNullable<z.ZodString>;
|
|
32015
|
+
details: z.ZodNullable<z.ZodString>;
|
|
31971
32016
|
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31972
32017
|
}, z.core.$strip>>;
|
|
31973
32018
|
pagination: z.ZodObject<{
|
|
@@ -32116,11 +32161,11 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
|
32116
32161
|
id: z.ZodString;
|
|
32117
32162
|
createdAt: z.ZodString;
|
|
32118
32163
|
updatedAt: z.ZodString;
|
|
32119
|
-
headers: z.ZodNullable<z.ZodType<
|
|
32164
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
32120
32165
|
subAgentId: z.ZodString;
|
|
32121
32166
|
toolId: z.ZodString;
|
|
32122
|
-
|
|
32123
|
-
|
|
32167
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
32168
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
32124
32169
|
}, z.core.$strip>>;
|
|
32125
32170
|
pagination: z.ZodObject<{
|
|
32126
32171
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -32138,22 +32183,24 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
32138
32183
|
updatedAt: z.ZodString;
|
|
32139
32184
|
description: z.ZodNullable<z.ZodString>;
|
|
32140
32185
|
enabled: z.ZodBoolean;
|
|
32141
|
-
|
|
32142
|
-
|
|
32186
|
+
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32187
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32188
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
32189
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
32143
32190
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
32144
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
32191
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
32145
32192
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32146
32193
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32147
32194
|
algorithm: z.ZodEnum<{
|
|
32195
|
+
md5: "md5";
|
|
32148
32196
|
sha256: "sha256";
|
|
32149
32197
|
sha512: "sha512";
|
|
32150
32198
|
sha384: "sha384";
|
|
32151
32199
|
sha1: "sha1";
|
|
32152
|
-
md5: "md5";
|
|
32153
32200
|
}>;
|
|
32154
32201
|
encoding: z.ZodEnum<{
|
|
32155
|
-
hex: "hex";
|
|
32156
32202
|
base64: "base64";
|
|
32203
|
+
hex: "hex";
|
|
32157
32204
|
}>;
|
|
32158
32205
|
signature: z.ZodObject<{
|
|
32159
32206
|
source: z.ZodEnum<{
|
|
@@ -32188,9 +32235,7 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
32188
32235
|
normalizeUnicode: z.ZodDefault<z.ZodBoolean>;
|
|
32189
32236
|
}, z.core.$strip>>;
|
|
32190
32237
|
}, z.core.$strip>>>;
|
|
32191
|
-
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32192
32238
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
32193
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32194
32239
|
}, z.core.$strip>>;
|
|
32195
32240
|
pagination: z.ZodObject<{
|
|
32196
32241
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -32218,8 +32263,8 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
32218
32263
|
triggerId: z.ZodString;
|
|
32219
32264
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
32220
32265
|
batchId: z.ZodNullable<z.ZodString>;
|
|
32221
|
-
requestPayload: z.ZodType<
|
|
32222
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
32266
|
+
requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
32267
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
32223
32268
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
32224
32269
|
}, z.core.$strip>>;
|
|
32225
32270
|
pagination: z.ZodObject<{
|
|
@@ -32238,22 +32283,24 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
32238
32283
|
updatedAt: z.ZodString;
|
|
32239
32284
|
description: z.ZodNullable<z.ZodString>;
|
|
32240
32285
|
enabled: z.ZodBoolean;
|
|
32241
|
-
|
|
32242
|
-
|
|
32286
|
+
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32287
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32288
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
32289
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
32243
32290
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
32244
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
32291
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
32245
32292
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32246
32293
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32247
32294
|
algorithm: z.ZodEnum<{
|
|
32295
|
+
md5: "md5";
|
|
32248
32296
|
sha256: "sha256";
|
|
32249
32297
|
sha512: "sha512";
|
|
32250
32298
|
sha384: "sha384";
|
|
32251
32299
|
sha1: "sha1";
|
|
32252
|
-
md5: "md5";
|
|
32253
32300
|
}>;
|
|
32254
32301
|
encoding: z.ZodEnum<{
|
|
32255
|
-
hex: "hex";
|
|
32256
32302
|
base64: "base64";
|
|
32303
|
+
hex: "hex";
|
|
32257
32304
|
}>;
|
|
32258
32305
|
signature: z.ZodObject<{
|
|
32259
32306
|
source: z.ZodEnum<{
|
|
@@ -32288,9 +32335,7 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
32288
32335
|
normalizeUnicode: z.ZodDefault<z.ZodBoolean>;
|
|
32289
32336
|
}, z.core.$strip>>;
|
|
32290
32337
|
}, z.core.$strip>>>;
|
|
32291
|
-
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32292
32338
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
32293
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32294
32339
|
runAsUserIds: z.ZodArray<z.ZodString>;
|
|
32295
32340
|
userCount: z.ZodNumber;
|
|
32296
32341
|
webhookUrl: z.ZodString;
|
|
@@ -32304,22 +32349,24 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
32304
32349
|
updatedAt: z.ZodString;
|
|
32305
32350
|
description: z.ZodNullable<z.ZodString>;
|
|
32306
32351
|
enabled: z.ZodBoolean;
|
|
32307
|
-
|
|
32308
|
-
|
|
32352
|
+
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32353
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32354
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
32355
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
32309
32356
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
32310
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
32357
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
32311
32358
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32312
32359
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32313
32360
|
algorithm: z.ZodEnum<{
|
|
32361
|
+
md5: "md5";
|
|
32314
32362
|
sha256: "sha256";
|
|
32315
32363
|
sha512: "sha512";
|
|
32316
32364
|
sha384: "sha384";
|
|
32317
32365
|
sha1: "sha1";
|
|
32318
|
-
md5: "md5";
|
|
32319
32366
|
}>;
|
|
32320
32367
|
encoding: z.ZodEnum<{
|
|
32321
|
-
hex: "hex";
|
|
32322
32368
|
base64: "base64";
|
|
32369
|
+
hex: "hex";
|
|
32323
32370
|
}>;
|
|
32324
32371
|
signature: z.ZodObject<{
|
|
32325
32372
|
source: z.ZodEnum<{
|
|
@@ -32354,9 +32401,7 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
32354
32401
|
normalizeUnicode: z.ZodDefault<z.ZodBoolean>;
|
|
32355
32402
|
}, z.core.$strip>>;
|
|
32356
32403
|
}, z.core.$strip>>>;
|
|
32357
|
-
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32358
32404
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
32359
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32360
32405
|
runAsUserIds: z.ZodArray<z.ZodString>;
|
|
32361
32406
|
userCount: z.ZodNumber;
|
|
32362
32407
|
webhookUrl: z.ZodString;
|
|
@@ -32371,22 +32416,24 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
32371
32416
|
updatedAt: z.ZodString;
|
|
32372
32417
|
description: z.ZodNullable<z.ZodString>;
|
|
32373
32418
|
enabled: z.ZodBoolean;
|
|
32374
|
-
|
|
32375
|
-
|
|
32419
|
+
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32420
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32421
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
32422
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
32376
32423
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
32377
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
32424
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
32378
32425
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32379
32426
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32380
32427
|
algorithm: z.ZodEnum<{
|
|
32428
|
+
md5: "md5";
|
|
32381
32429
|
sha256: "sha256";
|
|
32382
32430
|
sha512: "sha512";
|
|
32383
32431
|
sha384: "sha384";
|
|
32384
32432
|
sha1: "sha1";
|
|
32385
|
-
md5: "md5";
|
|
32386
32433
|
}>;
|
|
32387
32434
|
encoding: z.ZodEnum<{
|
|
32388
|
-
hex: "hex";
|
|
32389
32435
|
base64: "base64";
|
|
32436
|
+
hex: "hex";
|
|
32390
32437
|
}>;
|
|
32391
32438
|
signature: z.ZodObject<{
|
|
32392
32439
|
source: z.ZodEnum<{
|
|
@@ -32421,9 +32468,7 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
32421
32468
|
normalizeUnicode: z.ZodDefault<z.ZodBoolean>;
|
|
32422
32469
|
}, z.core.$strip>>;
|
|
32423
32470
|
}, z.core.$strip>>>;
|
|
32424
|
-
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32425
32471
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
32426
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32427
32472
|
runAsUserIds: z.ZodArray<z.ZodString>;
|
|
32428
32473
|
userCount: z.ZodNumber;
|
|
32429
32474
|
webhookUrl: z.ZodString;
|
|
@@ -32452,21 +32497,21 @@ declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
|
32452
32497
|
description: z.ZodNullable<z.ZodString>;
|
|
32453
32498
|
enabled: z.ZodBoolean;
|
|
32454
32499
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
32455
|
-
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
32456
32500
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
32457
|
-
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
32458
32501
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
32502
|
+
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
32503
|
+
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
32504
|
+
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
32459
32505
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
32460
32506
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
32461
32507
|
runAt: z.ZodNullable<z.ZodString>;
|
|
32462
32508
|
maxRetries: z.ZodInt;
|
|
32463
32509
|
retryDelaySeconds: z.ZodInt;
|
|
32464
32510
|
timeoutSeconds: z.ZodInt;
|
|
32465
|
-
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
32466
32511
|
lastRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
32467
32512
|
lastRunStatus: z.ZodNullable<z.ZodEnum<{
|
|
32468
|
-
failed: "failed";
|
|
32469
32513
|
completed: "completed";
|
|
32514
|
+
failed: "failed";
|
|
32470
32515
|
}>>;
|
|
32471
32516
|
lastRunConversationIds: z.ZodArray<z.ZodString>;
|
|
32472
32517
|
nextRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -32491,10 +32536,11 @@ declare const ScheduledTriggerResponse: z.ZodObject<{
|
|
|
32491
32536
|
description: z.ZodNullable<z.ZodString>;
|
|
32492
32537
|
enabled: z.ZodBoolean;
|
|
32493
32538
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
32494
|
-
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
32495
32539
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
32496
|
-
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
32497
32540
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
32541
|
+
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
32542
|
+
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
32543
|
+
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
32498
32544
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
32499
32545
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
32500
32546
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -32502,7 +32548,6 @@ declare const ScheduledTriggerResponse: z.ZodObject<{
|
|
|
32502
32548
|
retryDelaySeconds: z.ZodInt;
|
|
32503
32549
|
timeoutSeconds: z.ZodInt;
|
|
32504
32550
|
nextRunAt: z.ZodNullable<z.ZodString>;
|
|
32505
|
-
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
32506
32551
|
}, z.core.$strip>;
|
|
32507
32552
|
}, z.core.$strip>;
|
|
32508
32553
|
declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
@@ -32515,10 +32560,11 @@ declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
|
32515
32560
|
description: z.ZodNullable<z.ZodString>;
|
|
32516
32561
|
enabled: z.ZodBoolean;
|
|
32517
32562
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
32518
|
-
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
32519
32563
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
32520
|
-
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
32521
32564
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
32565
|
+
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
32566
|
+
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
32567
|
+
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
32522
32568
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
32523
32569
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
32524
32570
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -32526,7 +32572,6 @@ declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
|
32526
32572
|
retryDelaySeconds: z.ZodInt;
|
|
32527
32573
|
timeoutSeconds: z.ZodInt;
|
|
32528
32574
|
nextRunAt: z.ZodNullable<z.ZodString>;
|
|
32529
|
-
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
32530
32575
|
}, z.core.$strip>>;
|
|
32531
32576
|
pagination: z.ZodObject<{
|
|
32532
32577
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -32546,21 +32591,21 @@ declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
|
32546
32591
|
description: z.ZodNullable<z.ZodString>;
|
|
32547
32592
|
enabled: z.ZodBoolean;
|
|
32548
32593
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
32549
|
-
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
32550
32594
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
32551
|
-
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
32552
32595
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
32596
|
+
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
32597
|
+
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
32598
|
+
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
32553
32599
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
32554
32600
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
32555
32601
|
runAt: z.ZodNullable<z.ZodString>;
|
|
32556
32602
|
maxRetries: z.ZodInt;
|
|
32557
32603
|
retryDelaySeconds: z.ZodInt;
|
|
32558
32604
|
timeoutSeconds: z.ZodInt;
|
|
32559
|
-
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
32560
32605
|
lastRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
32561
32606
|
lastRunStatus: z.ZodNullable<z.ZodEnum<{
|
|
32562
|
-
failed: "failed";
|
|
32563
32607
|
completed: "completed";
|
|
32608
|
+
failed: "failed";
|
|
32564
32609
|
}>>;
|
|
32565
32610
|
lastRunConversationIds: z.ZodArray<z.ZodString>;
|
|
32566
32611
|
nextRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -32597,12 +32642,11 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
32597
32642
|
}, z.core.$strip>>>;
|
|
32598
32643
|
status: z.ZodEnum<{
|
|
32599
32644
|
pending: "pending";
|
|
32600
|
-
failed: "failed";
|
|
32601
32645
|
running: "running";
|
|
32602
32646
|
completed: "completed";
|
|
32647
|
+
failed: "failed";
|
|
32603
32648
|
cancelled: "cancelled";
|
|
32604
32649
|
}>;
|
|
32605
|
-
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
32606
32650
|
scheduledTriggerId: z.ZodString;
|
|
32607
32651
|
scheduledFor: z.ZodString;
|
|
32608
32652
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -32611,6 +32655,7 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
32611
32655
|
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
32612
32656
|
attemptNumber: z.ZodInt;
|
|
32613
32657
|
idempotencyKey: z.ZodString;
|
|
32658
|
+
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
32614
32659
|
}, z.core.$strip>;
|
|
32615
32660
|
}, z.core.$strip>;
|
|
32616
32661
|
declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
@@ -32628,12 +32673,11 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
32628
32673
|
}, z.core.$strip>>>;
|
|
32629
32674
|
status: z.ZodEnum<{
|
|
32630
32675
|
pending: "pending";
|
|
32631
|
-
failed: "failed";
|
|
32632
32676
|
running: "running";
|
|
32633
32677
|
completed: "completed";
|
|
32678
|
+
failed: "failed";
|
|
32634
32679
|
cancelled: "cancelled";
|
|
32635
32680
|
}>;
|
|
32636
|
-
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
32637
32681
|
scheduledTriggerId: z.ZodString;
|
|
32638
32682
|
scheduledFor: z.ZodString;
|
|
32639
32683
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -32642,6 +32686,7 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
32642
32686
|
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
32643
32687
|
attemptNumber: z.ZodInt;
|
|
32644
32688
|
idempotencyKey: z.ZodString;
|
|
32689
|
+
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
32645
32690
|
}, z.core.$strip>>;
|
|
32646
32691
|
pagination: z.ZodObject<{
|
|
32647
32692
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -32833,23 +32878,23 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32833
32878
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32834
32879
|
id: z.ZodString;
|
|
32835
32880
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
32836
|
-
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
32837
32881
|
executeCode: z.ZodString;
|
|
32882
|
+
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
32838
32883
|
}, z.core.$strip>>>;
|
|
32839
32884
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32840
32885
|
id: z.ZodOptional<z.ZodString>;
|
|
32841
32886
|
name: z.ZodString;
|
|
32842
32887
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32843
32888
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
32844
|
-
|
|
32845
|
-
|
|
32889
|
+
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32890
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32891
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
32892
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
32846
32893
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32847
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
32894
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
32848
32895
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32849
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
32850
|
-
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32896
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
32851
32897
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
32852
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32853
32898
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
32854
32899
|
}, z.core.$strip>>>;
|
|
32855
32900
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -32944,8 +32989,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32944
32989
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32945
32990
|
id: z.ZodString;
|
|
32946
32991
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
32947
|
-
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
32948
32992
|
executeCode: z.ZodString;
|
|
32993
|
+
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
32949
32994
|
}, z.core.$strip>>>;
|
|
32950
32995
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
32951
32996
|
files: z.ZodArray<z.ZodObject<{
|
|
@@ -33055,10 +33100,10 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
33055
33100
|
id: z.ZodString;
|
|
33056
33101
|
name: z.ZodString;
|
|
33057
33102
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33058
|
-
|
|
33103
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33059
33104
|
credentialStoreId: z.ZodString;
|
|
33060
33105
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
33061
|
-
|
|
33106
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33062
33107
|
type: z.ZodEnum<{
|
|
33063
33108
|
readonly memory: "memory";
|
|
33064
33109
|
readonly keychain: "keychain";
|
|
@@ -33319,8 +33364,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33319
33364
|
createdAt: z.ZodString;
|
|
33320
33365
|
updatedAt: z.ZodString;
|
|
33321
33366
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
33322
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33323
33367
|
executeCode: z.ZodString;
|
|
33368
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33324
33369
|
}, z.core.$strip>>>;
|
|
33325
33370
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
33326
33371
|
id: z.ZodString;
|
|
@@ -33411,8 +33456,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33411
33456
|
createdAt: z.ZodString;
|
|
33412
33457
|
updatedAt: z.ZodString;
|
|
33413
33458
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
33414
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33415
33459
|
executeCode: z.ZodString;
|
|
33460
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33416
33461
|
}, z.core.$strip>>>;
|
|
33417
33462
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33418
33463
|
id: z.ZodString;
|
|
@@ -33542,17 +33587,17 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33542
33587
|
createdAt: z.ZodString;
|
|
33543
33588
|
updatedAt: z.ZodString;
|
|
33544
33589
|
userId: z.ZodNullable<z.ZodString>;
|
|
33545
|
-
|
|
33590
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
33546
33591
|
credentialStoreId: z.ZodString;
|
|
33547
33592
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
33548
|
-
|
|
33593
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
33549
33594
|
type: z.ZodEnum<{
|
|
33550
33595
|
readonly memory: "memory";
|
|
33551
33596
|
readonly keychain: "keychain";
|
|
33552
33597
|
readonly nango: "nango";
|
|
33553
33598
|
readonly composio: "composio";
|
|
33554
33599
|
}>;
|
|
33555
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
33600
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
33556
33601
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
33557
33602
|
name: "created_at";
|
|
33558
33603
|
tableName: "tools";
|
|
@@ -33832,7 +33877,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33832
33877
|
}, {}, {
|
|
33833
33878
|
length: 256;
|
|
33834
33879
|
}>;
|
|
33835
|
-
},
|
|
33880
|
+
}, drizzle_zod15.BuildRefine<{
|
|
33836
33881
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
33837
33882
|
name: "created_at";
|
|
33838
33883
|
tableName: "tools";
|
|
@@ -34206,8 +34251,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34206
34251
|
createdAt: z.ZodString;
|
|
34207
34252
|
updatedAt: z.ZodString;
|
|
34208
34253
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
34209
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
34210
34254
|
executeCode: z.ZodString;
|
|
34255
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
34211
34256
|
}, z.core.$strip>>>;
|
|
34212
34257
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34213
34258
|
id: z.ZodString;
|
|
@@ -34337,17 +34382,17 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34337
34382
|
createdAt: z.ZodString;
|
|
34338
34383
|
updatedAt: z.ZodString;
|
|
34339
34384
|
userId: z.ZodNullable<z.ZodString>;
|
|
34340
|
-
|
|
34385
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
34341
34386
|
credentialStoreId: z.ZodString;
|
|
34342
34387
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
34343
|
-
|
|
34388
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
34344
34389
|
type: z.ZodEnum<{
|
|
34345
34390
|
readonly memory: "memory";
|
|
34346
34391
|
readonly keychain: "keychain";
|
|
34347
34392
|
readonly nango: "nango";
|
|
34348
34393
|
readonly composio: "composio";
|
|
34349
34394
|
}>;
|
|
34350
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
34395
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
34351
34396
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
34352
34397
|
name: "created_at";
|
|
34353
34398
|
tableName: "tools";
|
|
@@ -34627,7 +34672,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34627
34672
|
}, {}, {
|
|
34628
34673
|
length: 256;
|
|
34629
34674
|
}>;
|
|
34630
|
-
},
|
|
34675
|
+
}, drizzle_zod15.BuildRefine<{
|
|
34631
34676
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
34632
34677
|
name: "created_at";
|
|
34633
34678
|
tableName: "tools";
|
|
@@ -34988,8 +35033,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34988
35033
|
createdAt: z.ZodString;
|
|
34989
35034
|
updatedAt: z.ZodString;
|
|
34990
35035
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
34991
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
34992
35036
|
executeCode: z.ZodString;
|
|
35037
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
34993
35038
|
}, z.core.$strip>>>;
|
|
34994
35039
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
34995
35040
|
id: z.ZodString;
|
|
@@ -35337,23 +35382,23 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
35337
35382
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
35338
35383
|
id: z.ZodString;
|
|
35339
35384
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
35340
|
-
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
35341
35385
|
executeCode: z.ZodString;
|
|
35386
|
+
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
35342
35387
|
}, z.core.$strip>>>;
|
|
35343
35388
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
35344
35389
|
id: z.ZodOptional<z.ZodString>;
|
|
35345
35390
|
name: z.ZodString;
|
|
35346
35391
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35347
35392
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
35348
|
-
|
|
35349
|
-
|
|
35393
|
+
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35394
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35395
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
35396
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
35350
35397
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35351
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
35398
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
35352
35399
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35353
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
35354
|
-
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35400
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
35355
35401
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
35356
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35357
35402
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
35358
35403
|
}, z.core.$strip>>>;
|
|
35359
35404
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -35618,8 +35663,8 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
35618
35663
|
createdAt: z.ZodString;
|
|
35619
35664
|
updatedAt: z.ZodString;
|
|
35620
35665
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
35621
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
35622
35666
|
executeCode: z.ZodString;
|
|
35667
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
35623
35668
|
}, z.core.$strip>>>;
|
|
35624
35669
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
35625
35670
|
id: z.ZodString;
|
|
@@ -35694,9 +35739,9 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
35694
35739
|
id: z.ZodString;
|
|
35695
35740
|
name: z.ZodString;
|
|
35696
35741
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35742
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
35697
35743
|
projectId: z.ZodString;
|
|
35698
35744
|
tenantId: z.ZodString;
|
|
35699
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
35700
35745
|
config: z.ZodObject<{
|
|
35701
35746
|
type: z.ZodLiteral<"mcp">;
|
|
35702
35747
|
mcp: z.ZodObject<{
|
|
@@ -35755,9 +35800,9 @@ declare const McpToolListResponse: z.ZodObject<{
|
|
|
35755
35800
|
id: z.ZodString;
|
|
35756
35801
|
name: z.ZodString;
|
|
35757
35802
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35803
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
35758
35804
|
projectId: z.ZodString;
|
|
35759
35805
|
tenantId: z.ZodString;
|
|
35760
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
35761
35806
|
config: z.ZodObject<{
|
|
35762
35807
|
type: z.ZodLiteral<"mcp">;
|
|
35763
35808
|
mcp: z.ZodObject<{
|
|
@@ -35823,7 +35868,7 @@ declare const SubAgentTeamAgentRelationResponse: z.ZodObject<{
|
|
|
35823
35868
|
id: z.ZodString;
|
|
35824
35869
|
createdAt: z.ZodString;
|
|
35825
35870
|
updatedAt: z.ZodString;
|
|
35826
|
-
headers: z.ZodNullable<z.ZodType<
|
|
35871
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
35827
35872
|
subAgentId: z.ZodString;
|
|
35828
35873
|
targetAgentId: z.ZodString;
|
|
35829
35874
|
}, z.core.$strip>;
|
|
@@ -35833,7 +35878,7 @@ declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
|
|
|
35833
35878
|
id: z.ZodString;
|
|
35834
35879
|
createdAt: z.ZodString;
|
|
35835
35880
|
updatedAt: z.ZodString;
|
|
35836
|
-
headers: z.ZodNullable<z.ZodType<
|
|
35881
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
35837
35882
|
subAgentId: z.ZodString;
|
|
35838
35883
|
targetAgentId: z.ZodString;
|
|
35839
35884
|
}, z.core.$strip>>;
|
|
@@ -35850,7 +35895,7 @@ declare const SubAgentExternalAgentRelationResponse: z.ZodObject<{
|
|
|
35850
35895
|
id: z.ZodString;
|
|
35851
35896
|
createdAt: z.ZodString;
|
|
35852
35897
|
updatedAt: z.ZodString;
|
|
35853
|
-
headers: z.ZodNullable<z.ZodType<
|
|
35898
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
35854
35899
|
subAgentId: z.ZodString;
|
|
35855
35900
|
externalAgentId: z.ZodString;
|
|
35856
35901
|
}, z.core.$strip>;
|
|
@@ -35860,7 +35905,7 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
|
35860
35905
|
id: z.ZodString;
|
|
35861
35906
|
createdAt: z.ZodString;
|
|
35862
35907
|
updatedAt: z.ZodString;
|
|
35863
|
-
headers: z.ZodNullable<z.ZodType<
|
|
35908
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
35864
35909
|
subAgentId: z.ZodString;
|
|
35865
35910
|
externalAgentId: z.ZodString;
|
|
35866
35911
|
}, z.core.$strip>>;
|
|
@@ -36091,7 +36136,7 @@ declare const PaginationWithRefQueryParamsSchema: z.ZodObject<{
|
|
|
36091
36136
|
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
36092
36137
|
ref: z.ZodOptional<z.ZodString>;
|
|
36093
36138
|
}, z.core.$strip>;
|
|
36094
|
-
declare const ProjectMetadataSelectSchema:
|
|
36139
|
+
declare const ProjectMetadataSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
36095
36140
|
id: drizzle_orm_pg_core297.PgColumn<{
|
|
36096
36141
|
name: "id";
|
|
36097
36142
|
tableName: "project_metadata";
|
|
@@ -36185,7 +36230,7 @@ declare const ProjectMetadataSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
36185
36230
|
}, {}, {
|
|
36186
36231
|
length: 512;
|
|
36187
36232
|
}>;
|
|
36188
|
-
},
|
|
36233
|
+
}, drizzle_zod15.BuildRefine<{
|
|
36189
36234
|
id: drizzle_orm_pg_core297.PgColumn<{
|
|
36190
36235
|
name: "id";
|
|
36191
36236
|
tableName: "project_metadata";
|
|
@@ -36296,10 +36341,10 @@ declare const WorkAppGitHubInstallationStatusSchema: z.ZodEnum<{
|
|
|
36296
36341
|
disconnected: "disconnected";
|
|
36297
36342
|
}>;
|
|
36298
36343
|
declare const WorkAppGitHubAccountTypeSchema: z.ZodEnum<{
|
|
36299
|
-
Organization: "Organization";
|
|
36300
36344
|
User: "User";
|
|
36345
|
+
Organization: "Organization";
|
|
36301
36346
|
}>;
|
|
36302
|
-
declare const WorkAppGitHubInstallationSelectSchema:
|
|
36347
|
+
declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
36303
36348
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
36304
36349
|
name: "created_at";
|
|
36305
36350
|
tableName: "work_app_github_installations";
|
|
@@ -36392,7 +36437,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
36392
36437
|
tableName: "work_app_github_installations";
|
|
36393
36438
|
dataType: "string";
|
|
36394
36439
|
columnType: "PgVarchar";
|
|
36395
|
-
data: "
|
|
36440
|
+
data: "User" | "Organization";
|
|
36396
36441
|
driverParam: string;
|
|
36397
36442
|
notNull: true;
|
|
36398
36443
|
hasDefault: false;
|
|
@@ -36405,7 +36450,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
36405
36450
|
generated: undefined;
|
|
36406
36451
|
}, {}, {
|
|
36407
36452
|
length: 20;
|
|
36408
|
-
$type: "
|
|
36453
|
+
$type: "User" | "Organization";
|
|
36409
36454
|
}>;
|
|
36410
36455
|
status: drizzle_orm_pg_core297.PgColumn<{
|
|
36411
36456
|
name: "status";
|
|
@@ -36465,7 +36510,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
36465
36510
|
}, {}, {
|
|
36466
36511
|
length: 256;
|
|
36467
36512
|
}>;
|
|
36468
|
-
},
|
|
36513
|
+
}, drizzle_zod15.BuildRefine<{
|
|
36469
36514
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
36470
36515
|
name: "created_at";
|
|
36471
36516
|
tableName: "work_app_github_installations";
|
|
@@ -36558,7 +36603,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
36558
36603
|
tableName: "work_app_github_installations";
|
|
36559
36604
|
dataType: "string";
|
|
36560
36605
|
columnType: "PgVarchar";
|
|
36561
|
-
data: "
|
|
36606
|
+
data: "User" | "Organization";
|
|
36562
36607
|
driverParam: string;
|
|
36563
36608
|
notNull: true;
|
|
36564
36609
|
hasDefault: false;
|
|
@@ -36571,7 +36616,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
36571
36616
|
generated: undefined;
|
|
36572
36617
|
}, {}, {
|
|
36573
36618
|
length: 20;
|
|
36574
|
-
$type: "
|
|
36619
|
+
$type: "User" | "Organization";
|
|
36575
36620
|
}>;
|
|
36576
36621
|
status: drizzle_orm_pg_core297.PgColumn<{
|
|
36577
36622
|
name: "status";
|
|
@@ -36639,8 +36684,8 @@ declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
|
|
|
36639
36684
|
installationId: z.ZodString;
|
|
36640
36685
|
accountLogin: z.ZodString;
|
|
36641
36686
|
accountType: z.ZodEnum<{
|
|
36642
|
-
Organization: "Organization";
|
|
36643
36687
|
User: "User";
|
|
36688
|
+
Organization: "Organization";
|
|
36644
36689
|
}>;
|
|
36645
36690
|
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
36646
36691
|
pending: "pending";
|
|
@@ -36674,11 +36719,11 @@ declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<{
|
|
|
36674
36719
|
installationId: z.ZodString;
|
|
36675
36720
|
accountLogin: z.ZodString;
|
|
36676
36721
|
accountType: z.ZodEnum<{
|
|
36677
|
-
Organization: "Organization";
|
|
36678
36722
|
User: "User";
|
|
36723
|
+
Organization: "Organization";
|
|
36679
36724
|
}>;
|
|
36680
36725
|
}, z.core.$strip>;
|
|
36681
|
-
declare const WorkAppGitHubRepositorySelectSchema:
|
|
36726
|
+
declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
36682
36727
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
36683
36728
|
name: "created_at";
|
|
36684
36729
|
tableName: "work_app_github_repositories";
|
|
@@ -36823,7 +36868,7 @@ declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod19.BuildSchema<"se
|
|
|
36823
36868
|
identity: undefined;
|
|
36824
36869
|
generated: undefined;
|
|
36825
36870
|
}, {}, {}>;
|
|
36826
|
-
},
|
|
36871
|
+
}, drizzle_zod15.BuildRefine<{
|
|
36827
36872
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
36828
36873
|
name: "created_at";
|
|
36829
36874
|
tableName: "work_app_github_repositories";
|
|
@@ -36984,7 +37029,7 @@ declare const WorkAppGitHubRepositoryApiInsertSchema: z.ZodObject<{
|
|
|
36984
37029
|
repositoryFullName: z.ZodString;
|
|
36985
37030
|
private: z.ZodOptional<z.ZodBoolean>;
|
|
36986
37031
|
}, z.core.$strip>;
|
|
36987
|
-
declare const WorkAppGitHubProjectRepositoryAccessSelectSchema:
|
|
37032
|
+
declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
36988
37033
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
36989
37034
|
name: "created_at";
|
|
36990
37035
|
tableName: "work_app_github_project_repository_access";
|
|
@@ -37095,7 +37140,7 @@ declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod19.Bu
|
|
|
37095
37140
|
}, {}, {
|
|
37096
37141
|
length: 256;
|
|
37097
37142
|
}>;
|
|
37098
|
-
},
|
|
37143
|
+
}, drizzle_zod15.BuildRefine<{
|
|
37099
37144
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
37100
37145
|
name: "created_at";
|
|
37101
37146
|
tableName: "work_app_github_project_repository_access";
|
|
@@ -37207,7 +37252,7 @@ declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod19.Bu
|
|
|
37207
37252
|
length: 256;
|
|
37208
37253
|
}>;
|
|
37209
37254
|
}, undefined>, undefined>;
|
|
37210
|
-
declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema:
|
|
37255
|
+
declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
37211
37256
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
37212
37257
|
name: "created_at";
|
|
37213
37258
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
@@ -37337,7 +37382,7 @@ declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema: drizzle_zod19.Bu
|
|
|
37337
37382
|
}, {}, {
|
|
37338
37383
|
length: 256;
|
|
37339
37384
|
}>;
|
|
37340
|
-
},
|
|
37385
|
+
}, drizzle_zod15.BuildRefine<{
|
|
37341
37386
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
37342
37387
|
name: "created_at";
|
|
37343
37388
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
@@ -37491,7 +37536,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
37491
37536
|
selected: "selected";
|
|
37492
37537
|
all: "all";
|
|
37493
37538
|
}>;
|
|
37494
|
-
repositories: z.ZodArray<
|
|
37539
|
+
repositories: z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
37495
37540
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
37496
37541
|
name: "created_at";
|
|
37497
37542
|
tableName: "work_app_github_repositories";
|
|
@@ -37636,7 +37681,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
37636
37681
|
identity: undefined;
|
|
37637
37682
|
generated: undefined;
|
|
37638
37683
|
}, {}, {}>;
|
|
37639
|
-
},
|
|
37684
|
+
}, drizzle_zod15.BuildRefine<{
|
|
37640
37685
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
37641
37686
|
name: "created_at";
|
|
37642
37687
|
tableName: "work_app_github_repositories";
|
|
@@ -37783,7 +37828,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
37783
37828
|
}, {}, {}>;
|
|
37784
37829
|
}, undefined>, undefined>>;
|
|
37785
37830
|
}, z.core.$strip>;
|
|
37786
|
-
declare const WorkAppSlackChannelAgentConfigSelectSchema:
|
|
37831
|
+
declare const WorkAppSlackChannelAgentConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
37787
37832
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
37788
37833
|
name: "created_at";
|
|
37789
37834
|
tableName: "work_app_slack_channel_agent_configs";
|
|
@@ -38021,7 +38066,7 @@ declare const WorkAppSlackChannelAgentConfigSelectSchema: drizzle_zod19.BuildSch
|
|
|
38021
38066
|
identity: undefined;
|
|
38022
38067
|
generated: undefined;
|
|
38023
38068
|
}, {}, {}>;
|
|
38024
|
-
},
|
|
38069
|
+
}, drizzle_zod15.BuildRefine<{
|
|
38025
38070
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
38026
38071
|
name: "created_at";
|
|
38027
38072
|
tableName: "work_app_slack_channel_agent_configs";
|
|
@@ -38260,7 +38305,7 @@ declare const WorkAppSlackChannelAgentConfigSelectSchema: drizzle_zod19.BuildSch
|
|
|
38260
38305
|
generated: undefined;
|
|
38261
38306
|
}, {}, {}>;
|
|
38262
38307
|
}, undefined>, undefined>;
|
|
38263
|
-
declare const WorkAppSlackWorkspaceSelectSchema:
|
|
38308
|
+
declare const WorkAppSlackWorkspaceSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
38264
38309
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
38265
38310
|
name: "created_at";
|
|
38266
38311
|
tableName: "work_app_slack_workspaces";
|
|
@@ -38555,7 +38600,7 @@ declare const WorkAppSlackWorkspaceSelectSchema: drizzle_zod19.BuildSchema<"sele
|
|
|
38555
38600
|
identity: undefined;
|
|
38556
38601
|
generated: undefined;
|
|
38557
38602
|
}, {}, {}>;
|
|
38558
|
-
},
|
|
38603
|
+
}, drizzle_zod15.BuildRefine<{
|
|
38559
38604
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
38560
38605
|
name: "created_at";
|
|
38561
38606
|
tableName: "work_app_slack_workspaces";
|
|
@@ -38852,16 +38897,16 @@ declare const WorkAppSlackWorkspaceSelectSchema: drizzle_zod19.BuildSchema<"sele
|
|
|
38852
38897
|
}, {}, {}>;
|
|
38853
38898
|
}, undefined>, undefined>;
|
|
38854
38899
|
declare const WorkAppSlackAgentConfigRequestSchema: z.ZodObject<{
|
|
38855
|
-
projectId: z.ZodString;
|
|
38856
38900
|
agentId: z.ZodString;
|
|
38901
|
+
projectId: z.ZodString;
|
|
38857
38902
|
grantAccessToMembers: z.ZodOptional<z.ZodBoolean>;
|
|
38858
38903
|
}, {
|
|
38859
38904
|
out: {};
|
|
38860
38905
|
in: {};
|
|
38861
38906
|
}>;
|
|
38862
38907
|
declare const WorkAppSlackAgentConfigResponseSchema: z.ZodObject<{
|
|
38863
|
-
projectId: z.ZodString;
|
|
38864
38908
|
agentId: z.ZodString;
|
|
38909
|
+
projectId: z.ZodString;
|
|
38865
38910
|
grantAccessToMembers: z.ZodOptional<z.ZodBoolean>;
|
|
38866
38911
|
agentName: z.ZodString;
|
|
38867
38912
|
projectName: z.ZodOptional<z.ZodString>;
|
|
@@ -38895,7 +38940,7 @@ declare const WorkAppSlackMcpToolAccessConfigApiInsertSchema: z.ZodObject<{
|
|
|
38895
38940
|
dmEnabled: z.ZodBoolean;
|
|
38896
38941
|
channelIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
38897
38942
|
}, z.core.$strip>;
|
|
38898
|
-
declare const UserProfileSelectSchema:
|
|
38943
|
+
declare const UserProfileSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
38899
38944
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
38900
38945
|
name: "created_at";
|
|
38901
38946
|
tableName: "user_profile";
|
|
@@ -39000,7 +39045,7 @@ declare const UserProfileSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
39000
39045
|
}, {}, {
|
|
39001
39046
|
$type: Record<string, unknown>;
|
|
39002
39047
|
}>;
|
|
39003
|
-
},
|
|
39048
|
+
}, drizzle_zod15.BuildRefine<{
|
|
39004
39049
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
39005
39050
|
name: "created_at";
|
|
39006
39051
|
tableName: "user_profile";
|
|
@@ -39141,9 +39186,9 @@ declare const AnonymousSessionResponseSchema: z.ZodObject<{
|
|
|
39141
39186
|
expiresAt: z.ZodString;
|
|
39142
39187
|
}, z.core.$strip>;
|
|
39143
39188
|
declare const WorkflowExecutionStatusEnum: z.ZodEnum<{
|
|
39144
|
-
failed: "failed";
|
|
39145
39189
|
running: "running";
|
|
39146
39190
|
completed: "completed";
|
|
39191
|
+
failed: "failed";
|
|
39147
39192
|
suspended: "suspended";
|
|
39148
39193
|
}>;
|
|
39149
39194
|
declare const WorkflowExecutionSelectSchema: z.ZodObject<{
|
|
@@ -39157,9 +39202,9 @@ declare const WorkflowExecutionSelectSchema: z.ZodObject<{
|
|
|
39157
39202
|
tenantId: z.ZodString;
|
|
39158
39203
|
id: z.ZodString;
|
|
39159
39204
|
status: z.ZodEnum<{
|
|
39160
|
-
failed: "failed";
|
|
39161
39205
|
running: "running";
|
|
39162
39206
|
completed: "completed";
|
|
39207
|
+
failed: "failed";
|
|
39163
39208
|
suspended: "suspended";
|
|
39164
39209
|
}>;
|
|
39165
39210
|
}, {
|
|
@@ -39169,15 +39214,15 @@ declare const WorkflowExecutionSelectSchema: z.ZodObject<{
|
|
|
39169
39214
|
declare const WorkflowExecutionInsertSchema: z.ZodObject<{
|
|
39170
39215
|
id: z.ZodString;
|
|
39171
39216
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
39217
|
+
agentId: z.ZodString;
|
|
39172
39218
|
projectId: z.ZodString;
|
|
39173
39219
|
tenantId: z.ZodString;
|
|
39174
|
-
agentId: z.ZodString;
|
|
39175
39220
|
conversationId: z.ZodString;
|
|
39176
39221
|
requestId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
39177
39222
|
status: z.ZodDefault<z.ZodEnum<{
|
|
39178
|
-
failed: "failed";
|
|
39179
39223
|
running: "running";
|
|
39180
39224
|
completed: "completed";
|
|
39225
|
+
failed: "failed";
|
|
39181
39226
|
suspended: "suspended";
|
|
39182
39227
|
}>>;
|
|
39183
39228
|
}, {
|
|
@@ -39187,15 +39232,15 @@ declare const WorkflowExecutionInsertSchema: z.ZodObject<{
|
|
|
39187
39232
|
declare const WorkflowExecutionUpdateSchema: z.ZodObject<{
|
|
39188
39233
|
id: z.ZodOptional<z.ZodString>;
|
|
39189
39234
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>;
|
|
39235
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
39190
39236
|
projectId: z.ZodOptional<z.ZodString>;
|
|
39191
39237
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
39192
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
39193
39238
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
39194
39239
|
requestId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
39195
39240
|
status: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
39196
|
-
failed: "failed";
|
|
39197
39241
|
running: "running";
|
|
39198
39242
|
completed: "completed";
|
|
39243
|
+
failed: "failed";
|
|
39199
39244
|
suspended: "suspended";
|
|
39200
39245
|
}>>>;
|
|
39201
39246
|
}, {
|