@inkeep/agents-core 0.0.0-dev-20260210125604 → 0.0.0-dev-20260210145845
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/auth.d.ts +4 -4
- package/dist/client-exports.d.ts +5 -5
- package/dist/client-exports.js +4 -4
- package/dist/data-access/manage/agents.d.ts +43 -43
- package/dist/data-access/manage/artifactComponents.d.ts +14 -14
- package/dist/data-access/manage/contextConfigs.d.ts +20 -20
- package/dist/data-access/manage/dataComponents.d.ts +6 -6
- package/dist/data-access/manage/functionTools.d.ts +16 -16
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgents.d.ts +21 -21
- package/dist/data-access/manage/tools.d.ts +21 -21
- package/dist/data-access/manage/triggers.d.ts +2 -2
- package/dist/data-access/runtime/apiKeys.d.ts +16 -16
- package/dist/data-access/runtime/conversations.d.ts +16 -16
- package/dist/data-access/runtime/messages.d.ts +15 -15
- package/dist/data-access/runtime/tasks.d.ts +4 -4
- package/dist/db/manage/manage-schema.d.ts +4 -4
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/index.d.ts +2 -2
- package/dist/validation/index.js +2 -2
- package/dist/validation/schemas.d.ts +549 -549
- package/dist/validation/schemas.js +3 -3
- package/package.json +1 -1
|
@@ -3,9 +3,10 @@ import { ContextFetchDefinition, ConversationHistoryConfig, ConversationMetadata
|
|
|
3
3
|
import "../index.js";
|
|
4
4
|
import { z } from "@hono/zod-openapi";
|
|
5
5
|
import * as drizzle_orm_pg_core211 from "drizzle-orm/pg-core";
|
|
6
|
-
import * as
|
|
6
|
+
import * as drizzle_zod15 from "drizzle-zod";
|
|
7
7
|
|
|
8
8
|
//#region src/validation/schemas.d.ts
|
|
9
|
+
declare const StringRecordSchema: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
9
10
|
declare const TextPartSchema: z.ZodObject<{
|
|
10
11
|
kind: z.ZodLiteral<"text">;
|
|
11
12
|
text: z.ZodString;
|
|
@@ -128,7 +129,7 @@ type OmitAgentScope<T> = Omit<T, 'tenantId' | 'projectId' | 'agentId'>;
|
|
|
128
129
|
type OmitTenantScope<T> = Omit<T, 'tenantId'>;
|
|
129
130
|
type OmitTimestamps<T> = Omit<T, 'createdAt' | 'updatedAt'>;
|
|
130
131
|
type OmitGeneratedFields<T> = Omit<T, 'id' | 'createdAt' | 'updatedAt'>;
|
|
131
|
-
declare const SubAgentSelectSchema:
|
|
132
|
+
declare const SubAgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
132
133
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
133
134
|
name: "created_at";
|
|
134
135
|
tableName: "sub_agents";
|
|
@@ -379,7 +380,7 @@ declare const SubAgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
379
380
|
}, {}, {
|
|
380
381
|
length: 256;
|
|
381
382
|
}>;
|
|
382
|
-
},
|
|
383
|
+
}, drizzle_zod15.BuildRefine<{
|
|
383
384
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
384
385
|
name: "created_at";
|
|
385
386
|
tableName: "sub_agents";
|
|
@@ -818,10 +819,10 @@ declare const SubAgentApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
|
818
819
|
}>, z.core.$strip>;
|
|
819
820
|
declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
820
821
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
822
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
821
823
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
824
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
822
825
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
823
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
824
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
825
826
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
826
827
|
base: z.ZodOptional<z.ZodObject<{
|
|
827
828
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -836,6 +837,7 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
836
837
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
837
838
|
}, z.core.$strip>>;
|
|
838
839
|
}, z.core.$strip>>>>;
|
|
840
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
839
841
|
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
840
842
|
stepCountIs?: number | undefined;
|
|
841
843
|
}, {
|
|
@@ -845,10 +847,9 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
845
847
|
}, {
|
|
846
848
|
stepCountIs?: number | undefined;
|
|
847
849
|
}>>>>>>;
|
|
848
|
-
|
|
849
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
850
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
850
851
|
}, z.core.$strip>;
|
|
851
|
-
declare const SubAgentRelationSelectSchema:
|
|
852
|
+
declare const SubAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
852
853
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
853
854
|
name: "created_at";
|
|
854
855
|
tableName: "sub_agent_relations";
|
|
@@ -1016,7 +1017,7 @@ declare const SubAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
1016
1017
|
}, {}, {
|
|
1017
1018
|
length: 256;
|
|
1018
1019
|
}>;
|
|
1019
|
-
},
|
|
1020
|
+
}, drizzle_zod15.BuildRefine<{
|
|
1020
1021
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
1021
1022
|
name: "created_at";
|
|
1022
1023
|
tableName: "sub_agent_relations";
|
|
@@ -1287,7 +1288,7 @@ declare const ExternalSubAgentRelationApiInsertSchema: z.ZodObject<OmitProjectSc
|
|
|
1287
1288
|
sourceSubAgentId: z.ZodString;
|
|
1288
1289
|
externalSubAgentId: z.ZodString;
|
|
1289
1290
|
}>, z.core.$strip>;
|
|
1290
|
-
declare const AgentSelectSchema:
|
|
1291
|
+
declare const AgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
1291
1292
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
1292
1293
|
name: "created_at";
|
|
1293
1294
|
tableName: "agent";
|
|
@@ -1585,7 +1586,7 @@ declare const AgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
1585
1586
|
}, {}, {
|
|
1586
1587
|
length: 256;
|
|
1587
1588
|
}>;
|
|
1588
|
-
},
|
|
1589
|
+
}, drizzle_zod15.BuildRefine<{
|
|
1589
1590
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
1590
1591
|
name: "created_at";
|
|
1591
1592
|
tableName: "agent";
|
|
@@ -1884,7 +1885,7 @@ declare const AgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
1884
1885
|
length: 256;
|
|
1885
1886
|
}>;
|
|
1886
1887
|
}, undefined>, undefined>;
|
|
1887
|
-
declare const AgentInsertSchema:
|
|
1888
|
+
declare const AgentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
1888
1889
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
1889
1890
|
name: "created_at";
|
|
1890
1891
|
tableName: "agent";
|
|
@@ -2182,7 +2183,7 @@ declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
2182
2183
|
}, {}, {
|
|
2183
2184
|
length: 256;
|
|
2184
2185
|
}>;
|
|
2185
|
-
},
|
|
2186
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
2186
2187
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
2187
2188
|
name: "created_at";
|
|
2188
2189
|
tableName: "agent";
|
|
@@ -2480,7 +2481,7 @@ declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
2480
2481
|
}, {}, {
|
|
2481
2482
|
length: 256;
|
|
2482
2483
|
}>;
|
|
2483
|
-
}, "id" | "
|
|
2484
|
+
}, "id" | "createdAt" | "name" | "updatedAt" | "projectId" | "tenantId" | "description" | "defaultSubAgentId" | "contextConfigId" | "models" | "prompt" | "statusUpdates" | "stopWhen">, undefined>, undefined>;
|
|
2484
2485
|
declare const AgentUpdateSchema: z.ZodObject<{
|
|
2485
2486
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2486
2487
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2747,10 +2748,12 @@ declare const AgentApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
2747
2748
|
id: z.ZodString;
|
|
2748
2749
|
}>, z.core.$strip>;
|
|
2749
2750
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
2751
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2750
2752
|
name: z.ZodString;
|
|
2753
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2751
2754
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2752
2755
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2753
|
-
|
|
2756
|
+
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2754
2757
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2755
2758
|
base?: {
|
|
2756
2759
|
model?: string | undefined;
|
|
@@ -2804,18 +2807,7 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2804
2807
|
providerOptions?: Record<string, any> | undefined;
|
|
2805
2808
|
} | undefined;
|
|
2806
2809
|
}>>>>;
|
|
2807
|
-
|
|
2808
|
-
transferCountIs?: number | undefined;
|
|
2809
|
-
}, {
|
|
2810
|
-
transferCountIs?: number | undefined;
|
|
2811
|
-
}, z.core.$ZodTypeInternals<{
|
|
2812
|
-
transferCountIs?: number | undefined;
|
|
2813
|
-
}, {
|
|
2814
|
-
transferCountIs?: number | undefined;
|
|
2815
|
-
}>>>>;
|
|
2816
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
2817
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2818
|
-
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2810
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2819
2811
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2820
2812
|
enabled?: boolean | undefined;
|
|
2821
2813
|
numEvents?: number | undefined;
|
|
@@ -2873,14 +2865,25 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2873
2865
|
} | undefined;
|
|
2874
2866
|
}[] | undefined;
|
|
2875
2867
|
}>>>>;
|
|
2868
|
+
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2869
|
+
transferCountIs?: number | undefined;
|
|
2870
|
+
}, {
|
|
2871
|
+
transferCountIs?: number | undefined;
|
|
2872
|
+
}, z.core.$ZodTypeInternals<{
|
|
2873
|
+
transferCountIs?: number | undefined;
|
|
2874
|
+
}, {
|
|
2875
|
+
transferCountIs?: number | undefined;
|
|
2876
|
+
}>>>>;
|
|
2876
2877
|
id: z.ZodString;
|
|
2877
2878
|
}, z.core.$strip>;
|
|
2878
2879
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
2879
2880
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2881
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2880
2882
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2883
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2881
2884
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2882
2885
|
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2883
|
-
|
|
2886
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2884
2887
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2885
2888
|
base?: {
|
|
2886
2889
|
model?: string | undefined;
|
|
@@ -2934,18 +2937,7 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
2934
2937
|
providerOptions?: Record<string, any> | undefined;
|
|
2935
2938
|
} | undefined;
|
|
2936
2939
|
}>>>>>>;
|
|
2937
|
-
|
|
2938
|
-
transferCountIs?: number | undefined;
|
|
2939
|
-
}, {
|
|
2940
|
-
transferCountIs?: number | undefined;
|
|
2941
|
-
}, z.core.$ZodTypeInternals<{
|
|
2942
|
-
transferCountIs?: number | undefined;
|
|
2943
|
-
}, {
|
|
2944
|
-
transferCountIs?: number | undefined;
|
|
2945
|
-
}>>>>>>;
|
|
2946
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2947
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2948
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2940
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2949
2941
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2950
2942
|
enabled?: boolean | undefined;
|
|
2951
2943
|
numEvents?: number | undefined;
|
|
@@ -3003,6 +2995,15 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
3003
2995
|
} | undefined;
|
|
3004
2996
|
}[] | undefined;
|
|
3005
2997
|
}>>>>>>;
|
|
2998
|
+
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2999
|
+
transferCountIs?: number | undefined;
|
|
3000
|
+
}, {
|
|
3001
|
+
transferCountIs?: number | undefined;
|
|
3002
|
+
}, z.core.$ZodTypeInternals<{
|
|
3003
|
+
transferCountIs?: number | undefined;
|
|
3004
|
+
}, {
|
|
3005
|
+
transferCountIs?: number | undefined;
|
|
3006
|
+
}>>>>>>;
|
|
3006
3007
|
}, z.core.$strip>;
|
|
3007
3008
|
declare const TriggerAuthHeaderInputSchema: z.ZodObject<{
|
|
3008
3009
|
name: z.ZodString;
|
|
@@ -3069,8 +3070,8 @@ declare const TriggerOutputTransformSchema: z.ZodObject<{
|
|
|
3069
3070
|
declare const SignatureSourceSchema: z.ZodObject<{
|
|
3070
3071
|
source: z.ZodEnum<{
|
|
3071
3072
|
query: "query";
|
|
3072
|
-
header: "header";
|
|
3073
3073
|
body: "body";
|
|
3074
|
+
header: "header";
|
|
3074
3075
|
}>;
|
|
3075
3076
|
key: z.ZodString;
|
|
3076
3077
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3099,8 +3100,8 @@ declare const SignatureSourceSchema: z.ZodObject<{
|
|
|
3099
3100
|
declare const SignedComponentSchema: z.ZodObject<{
|
|
3100
3101
|
source: z.ZodEnum<{
|
|
3101
3102
|
literal: "literal";
|
|
3102
|
-
header: "header";
|
|
3103
3103
|
body: "body";
|
|
3104
|
+
header: "header";
|
|
3104
3105
|
}>;
|
|
3105
3106
|
key: z.ZodOptional<z.ZodString>;
|
|
3106
3107
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3209,8 +3210,8 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
|
3209
3210
|
signature: z.ZodObject<{
|
|
3210
3211
|
source: z.ZodEnum<{
|
|
3211
3212
|
query: "query";
|
|
3212
|
-
header: "header";
|
|
3213
3213
|
body: "body";
|
|
3214
|
+
header: "header";
|
|
3214
3215
|
}>;
|
|
3215
3216
|
key: z.ZodString;
|
|
3216
3217
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3219,8 +3220,8 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
|
3219
3220
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
3220
3221
|
source: z.ZodEnum<{
|
|
3221
3222
|
literal: "literal";
|
|
3222
|
-
header: "header";
|
|
3223
3223
|
body: "body";
|
|
3224
|
+
header: "header";
|
|
3224
3225
|
}>;
|
|
3225
3226
|
key: z.ZodOptional<z.ZodString>;
|
|
3226
3227
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3279,10 +3280,10 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3279
3280
|
createdAt: z.ZodString;
|
|
3280
3281
|
updatedAt: z.ZodString;
|
|
3281
3282
|
enabled: z.ZodBoolean;
|
|
3282
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
3283
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
3283
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
3284
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
3284
3285
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
3285
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
3286
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
3286
3287
|
name: z.ZodString;
|
|
3287
3288
|
description: z.ZodNullable<z.ZodString>;
|
|
3288
3289
|
agentId: z.ZodString;
|
|
@@ -3305,8 +3306,8 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3305
3306
|
signature: z.ZodObject<{
|
|
3306
3307
|
source: z.ZodEnum<{
|
|
3307
3308
|
query: "query";
|
|
3308
|
-
header: "header";
|
|
3309
3309
|
body: "body";
|
|
3310
|
+
header: "header";
|
|
3310
3311
|
}>;
|
|
3311
3312
|
key: z.ZodString;
|
|
3312
3313
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3315,8 +3316,8 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3315
3316
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
3316
3317
|
source: z.ZodEnum<{
|
|
3317
3318
|
literal: "literal";
|
|
3318
|
-
header: "header";
|
|
3319
3319
|
body: "body";
|
|
3320
|
+
header: "header";
|
|
3320
3321
|
}>;
|
|
3321
3322
|
key: z.ZodOptional<z.ZodString>;
|
|
3322
3323
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3339,7 +3340,7 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3339
3340
|
out: {};
|
|
3340
3341
|
in: {};
|
|
3341
3342
|
}>;
|
|
3342
|
-
declare const TriggerInsertSchema:
|
|
3343
|
+
declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
3343
3344
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
3344
3345
|
name: "created_at";
|
|
3345
3346
|
tableName: "triggers";
|
|
@@ -3499,13 +3500,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3499
3500
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3500
3501
|
encoding: "hex" | "base64";
|
|
3501
3502
|
signature: {
|
|
3502
|
-
source: "query" | "
|
|
3503
|
+
source: "query" | "body" | "header";
|
|
3503
3504
|
key: string;
|
|
3504
3505
|
prefix?: string | undefined;
|
|
3505
3506
|
regex?: string | undefined;
|
|
3506
3507
|
};
|
|
3507
3508
|
signedComponents: {
|
|
3508
|
-
source: "literal" | "
|
|
3509
|
+
source: "literal" | "body" | "header";
|
|
3509
3510
|
required: boolean;
|
|
3510
3511
|
key?: string | undefined;
|
|
3511
3512
|
value?: string | undefined;
|
|
@@ -3536,13 +3537,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3536
3537
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3537
3538
|
encoding: "hex" | "base64";
|
|
3538
3539
|
signature: {
|
|
3539
|
-
source: "query" | "
|
|
3540
|
+
source: "query" | "body" | "header";
|
|
3540
3541
|
key: string;
|
|
3541
3542
|
prefix?: string | undefined;
|
|
3542
3543
|
regex?: string | undefined;
|
|
3543
3544
|
};
|
|
3544
3545
|
signedComponents: {
|
|
3545
|
-
source: "literal" | "
|
|
3546
|
+
source: "literal" | "body" | "header";
|
|
3546
3547
|
required: boolean;
|
|
3547
3548
|
key?: string | undefined;
|
|
3548
3549
|
value?: string | undefined;
|
|
@@ -3671,7 +3672,7 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3671
3672
|
}, {}, {
|
|
3672
3673
|
length: 256;
|
|
3673
3674
|
}>;
|
|
3674
|
-
},
|
|
3675
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
3675
3676
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
3676
3677
|
name: "created_at";
|
|
3677
3678
|
tableName: "triggers";
|
|
@@ -3831,13 +3832,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3831
3832
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3832
3833
|
encoding: "hex" | "base64";
|
|
3833
3834
|
signature: {
|
|
3834
|
-
source: "query" | "
|
|
3835
|
+
source: "query" | "body" | "header";
|
|
3835
3836
|
key: string;
|
|
3836
3837
|
prefix?: string | undefined;
|
|
3837
3838
|
regex?: string | undefined;
|
|
3838
3839
|
};
|
|
3839
3840
|
signedComponents: {
|
|
3840
|
-
source: "literal" | "
|
|
3841
|
+
source: "literal" | "body" | "header";
|
|
3841
3842
|
required: boolean;
|
|
3842
3843
|
key?: string | undefined;
|
|
3843
3844
|
value?: string | undefined;
|
|
@@ -3868,13 +3869,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3868
3869
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3869
3870
|
encoding: "hex" | "base64";
|
|
3870
3871
|
signature: {
|
|
3871
|
-
source: "query" | "
|
|
3872
|
+
source: "query" | "body" | "header";
|
|
3872
3873
|
key: string;
|
|
3873
3874
|
prefix?: string | undefined;
|
|
3874
3875
|
regex?: string | undefined;
|
|
3875
3876
|
};
|
|
3876
3877
|
signedComponents: {
|
|
3877
|
-
source: "literal" | "
|
|
3878
|
+
source: "literal" | "body" | "header";
|
|
3878
3879
|
required: boolean;
|
|
3879
3880
|
key?: string | undefined;
|
|
3880
3881
|
value?: string | undefined;
|
|
@@ -4003,16 +4004,16 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
4003
4004
|
}, {}, {
|
|
4004
4005
|
length: 256;
|
|
4005
4006
|
}>;
|
|
4006
|
-
}, "id" | "
|
|
4007
|
+
}, "id" | "createdAt" | "name" | "updatedAt" | "agentId" | "projectId" | "tenantId" | "description" | "enabled" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification">, undefined>, undefined>;
|
|
4007
4008
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
4008
4009
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4009
4010
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4010
|
-
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4011
|
-
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4011
|
+
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
4012
|
+
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
4012
4013
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4013
|
-
authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4014
|
+
authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
4014
4015
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4015
|
-
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4016
|
+
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
4016
4017
|
name: z.ZodOptional<z.ZodString>;
|
|
4017
4018
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4018
4019
|
agentId: z.ZodOptional<z.ZodString>;
|
|
@@ -4028,10 +4029,10 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4028
4029
|
createdAt: z.ZodString;
|
|
4029
4030
|
updatedAt: z.ZodString;
|
|
4030
4031
|
enabled: z.ZodBoolean;
|
|
4031
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
4032
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
4032
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4033
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4033
4034
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4034
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
4035
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4035
4036
|
name: z.ZodString;
|
|
4036
4037
|
description: z.ZodNullable<z.ZodString>;
|
|
4037
4038
|
agentId: z.ZodString;
|
|
@@ -4054,8 +4055,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4054
4055
|
signature: z.ZodObject<{
|
|
4055
4056
|
source: z.ZodEnum<{
|
|
4056
4057
|
query: "query";
|
|
4057
|
-
header: "header";
|
|
4058
4058
|
body: "body";
|
|
4059
|
+
header: "header";
|
|
4059
4060
|
}>;
|
|
4060
4061
|
key: z.ZodString;
|
|
4061
4062
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -4064,8 +4065,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4064
4065
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4065
4066
|
source: z.ZodEnum<{
|
|
4066
4067
|
literal: "literal";
|
|
4067
|
-
header: "header";
|
|
4068
4068
|
body: "body";
|
|
4069
|
+
header: "header";
|
|
4069
4070
|
}>;
|
|
4070
4071
|
key: z.ZodOptional<z.ZodString>;
|
|
4071
4072
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -4086,28 +4087,28 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4086
4087
|
}, z.core.$strip>>>;
|
|
4087
4088
|
}>, z.core.$strip>;
|
|
4088
4089
|
declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
4089
|
-
name: z.ZodString;
|
|
4090
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4091
4090
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4091
|
+
name: z.ZodString;
|
|
4092
4092
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4093
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4093
4094
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4094
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4095
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4095
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4096
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4096
4097
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4097
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4098
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4098
4099
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4099
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4100
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4100
4101
|
id: z.ZodOptional<z.ZodString>;
|
|
4101
4102
|
}, z.core.$strip>;
|
|
4102
4103
|
declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
4103
4104
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4104
4105
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4105
|
-
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4106
|
-
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4106
|
+
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
4107
|
+
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
4107
4108
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4108
|
-
authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4109
|
+
authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
4109
4110
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4110
|
-
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4111
|
+
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
4111
4112
|
name: z.ZodOptional<z.ZodString>;
|
|
4112
4113
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4113
4114
|
agentId: z.ZodOptional<z.ZodString>;
|
|
@@ -4121,15 +4122,15 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4121
4122
|
}>;
|
|
4122
4123
|
declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
4123
4124
|
id: z.ZodString;
|
|
4124
|
-
name: z.ZodString;
|
|
4125
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4126
4125
|
createdAt: z.ZodString;
|
|
4126
|
+
name: z.ZodString;
|
|
4127
4127
|
updatedAt: z.ZodString;
|
|
4128
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4128
4129
|
enabled: z.ZodBoolean;
|
|
4129
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
4130
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
4130
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4131
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4131
4132
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4132
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
4133
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4133
4134
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4134
4135
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4135
4136
|
algorithm: z.ZodEnum<{
|
|
@@ -4146,8 +4147,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4146
4147
|
signature: z.ZodObject<{
|
|
4147
4148
|
source: z.ZodEnum<{
|
|
4148
4149
|
query: "query";
|
|
4149
|
-
header: "header";
|
|
4150
4150
|
body: "body";
|
|
4151
|
+
header: "header";
|
|
4151
4152
|
}>;
|
|
4152
4153
|
key: z.ZodString;
|
|
4153
4154
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -4156,8 +4157,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4156
4157
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4157
4158
|
source: z.ZodEnum<{
|
|
4158
4159
|
literal: "literal";
|
|
4159
|
-
header: "header";
|
|
4160
4160
|
body: "body";
|
|
4161
|
+
header: "header";
|
|
4161
4162
|
}>;
|
|
4162
4163
|
key: z.ZodOptional<z.ZodString>;
|
|
4163
4164
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -4178,7 +4179,7 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4178
4179
|
}, z.core.$strip>>>;
|
|
4179
4180
|
webhookUrl: z.ZodString;
|
|
4180
4181
|
}, z.core.$strip>;
|
|
4181
|
-
declare const TriggerInvocationSelectSchema:
|
|
4182
|
+
declare const TriggerInvocationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
4182
4183
|
triggerId: drizzle_orm_pg_core211.PgColumn<{
|
|
4183
4184
|
name: "trigger_id";
|
|
4184
4185
|
tableName: "trigger_invocations";
|
|
@@ -4380,7 +4381,7 @@ declare const TriggerInvocationSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
4380
4381
|
}, {}, {
|
|
4381
4382
|
length: 256;
|
|
4382
4383
|
}>;
|
|
4383
|
-
},
|
|
4384
|
+
}, drizzle_zod15.BuildRefine<{
|
|
4384
4385
|
triggerId: drizzle_orm_pg_core211.PgColumn<{
|
|
4385
4386
|
name: "trigger_id";
|
|
4386
4387
|
tableName: "trigger_invocations";
|
|
@@ -4583,7 +4584,7 @@ declare const TriggerInvocationSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
4583
4584
|
length: 256;
|
|
4584
4585
|
}>;
|
|
4585
4586
|
}, undefined>, undefined>;
|
|
4586
|
-
declare const TriggerInvocationInsertSchema:
|
|
4587
|
+
declare const TriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
4587
4588
|
triggerId: drizzle_orm_pg_core211.PgColumn<{
|
|
4588
4589
|
name: "trigger_id";
|
|
4589
4590
|
tableName: "trigger_invocations";
|
|
@@ -4785,7 +4786,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
4785
4786
|
}, {}, {
|
|
4786
4787
|
length: 256;
|
|
4787
4788
|
}>;
|
|
4788
|
-
},
|
|
4789
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
4789
4790
|
triggerId: drizzle_orm_pg_core211.PgColumn<{
|
|
4790
4791
|
name: "trigger_id";
|
|
4791
4792
|
tableName: "trigger_invocations";
|
|
@@ -4987,13 +4988,13 @@ declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
4987
4988
|
}, {}, {
|
|
4988
4989
|
length: 256;
|
|
4989
4990
|
}>;
|
|
4990
|
-
}, "id" | "
|
|
4991
|
+
}, "id" | "createdAt" | "agentId" | "projectId" | "tenantId" | "status" | "triggerId" | "conversationId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
4991
4992
|
declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
4992
4993
|
triggerId: z.ZodOptional<z.ZodString>;
|
|
4993
4994
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4994
4995
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4995
|
-
requestPayload: z.ZodOptional<z.ZodType<
|
|
4996
|
-
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4996
|
+
requestPayload: z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4997
|
+
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
4997
4998
|
errorMessage: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4998
4999
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4999
5000
|
agentId: z.ZodOptional<z.ZodString>;
|
|
@@ -5008,8 +5009,8 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
5008
5009
|
triggerId: z.ZodString;
|
|
5009
5010
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
5010
5011
|
status: z.ZodString;
|
|
5011
|
-
requestPayload: z.ZodType<
|
|
5012
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
5012
|
+
requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
5013
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
5013
5014
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
5014
5015
|
createdAt: z.ZodString;
|
|
5015
5016
|
agentId: z.ZodString;
|
|
@@ -5022,8 +5023,8 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
5022
5023
|
status: z.ZodOptional<z.ZodString>;
|
|
5023
5024
|
triggerId: z.ZodString;
|
|
5024
5025
|
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5025
|
-
requestPayload: z.ZodType<
|
|
5026
|
-
transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5026
|
+
requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
5027
|
+
transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
5027
5028
|
errorMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5028
5029
|
id: z.ZodString;
|
|
5029
5030
|
}, z.core.$strip>;
|
|
@@ -5033,11 +5034,11 @@ declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
5033
5034
|
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5034
5035
|
triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5035
5036
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5036
|
-
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<
|
|
5037
|
-
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5037
|
+
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
5038
|
+
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
5038
5039
|
errorMessage: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5039
5040
|
}, z.core.$strip>;
|
|
5040
|
-
declare const TaskSelectSchema:
|
|
5041
|
+
declare const TaskSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
5041
5042
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
5042
5043
|
name: "created_at";
|
|
5043
5044
|
tableName: "tasks";
|
|
@@ -5251,7 +5252,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
5251
5252
|
}, {}, {
|
|
5252
5253
|
length: 256;
|
|
5253
5254
|
}>;
|
|
5254
|
-
},
|
|
5255
|
+
}, drizzle_zod15.BuildRefine<{
|
|
5255
5256
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
5256
5257
|
name: "created_at";
|
|
5257
5258
|
tableName: "tasks";
|
|
@@ -5569,9 +5570,9 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
5569
5570
|
}>, z.core.$strip>;
|
|
5570
5571
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
5571
5572
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5572
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5573
5573
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5574
5574
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5575
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5575
5576
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
5576
5577
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
5577
5578
|
type: z.ZodEnum<{
|
|
@@ -5583,11 +5584,11 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
5583
5584
|
hash: z.ZodString;
|
|
5584
5585
|
}, z.core.$strip>>>;
|
|
5585
5586
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5586
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5587
|
-
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5588
5587
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5588
|
+
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5589
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5589
5590
|
}, z.core.$strip>;
|
|
5590
|
-
declare const TaskRelationSelectSchema:
|
|
5591
|
+
declare const TaskRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
5591
5592
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
5592
5593
|
name: "created_at";
|
|
5593
5594
|
tableName: "task_relations";
|
|
@@ -5736,7 +5737,7 @@ declare const TaskRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
5736
5737
|
}, {}, {
|
|
5737
5738
|
length: 256;
|
|
5738
5739
|
}>;
|
|
5739
|
-
},
|
|
5740
|
+
}, drizzle_zod15.BuildRefine<{
|
|
5740
5741
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
5741
5742
|
name: "created_at";
|
|
5742
5743
|
tableName: "task_relations";
|
|
@@ -5962,7 +5963,7 @@ declare const McpToolDefinitionSchema: z.ZodObject<{
|
|
|
5962
5963
|
description: z.ZodOptional<z.ZodString>;
|
|
5963
5964
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5964
5965
|
}, z.core.$strip>;
|
|
5965
|
-
declare const ToolSelectSchema:
|
|
5966
|
+
declare const ToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
5966
5967
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
5967
5968
|
name: "created_at";
|
|
5968
5969
|
tableName: "tools";
|
|
@@ -6242,7 +6243,7 @@ declare const ToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
6242
6243
|
}, {}, {
|
|
6243
6244
|
length: 256;
|
|
6244
6245
|
}>;
|
|
6245
|
-
},
|
|
6246
|
+
}, drizzle_zod15.BuildRefine<{
|
|
6246
6247
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
6247
6248
|
name: "created_at";
|
|
6248
6249
|
tableName: "tools";
|
|
@@ -6568,7 +6569,7 @@ declare const ToolInsertSchema: z.ZodObject<{
|
|
|
6568
6569
|
out: {};
|
|
6569
6570
|
in: {};
|
|
6570
6571
|
}>;
|
|
6571
|
-
declare const ConversationSelectSchema:
|
|
6572
|
+
declare const ConversationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
6572
6573
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
6573
6574
|
name: "created_at";
|
|
6574
6575
|
tableName: "conversations";
|
|
@@ -6797,7 +6798,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
6797
6798
|
}, {}, {
|
|
6798
6799
|
length: 256;
|
|
6799
6800
|
}>;
|
|
6800
|
-
},
|
|
6801
|
+
}, drizzle_zod15.BuildRefine<{
|
|
6801
6802
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
6802
6803
|
name: "created_at";
|
|
6803
6804
|
tableName: "conversations";
|
|
@@ -7134,11 +7135,11 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
7134
7135
|
}>, z.core.$strip>;
|
|
7135
7136
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
7136
7137
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7137
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7138
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7139
7138
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7140
7139
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7140
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7141
7141
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7142
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7142
7143
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
7143
7144
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7144
7145
|
type: z.ZodEnum<{
|
|
@@ -7153,7 +7154,7 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
7153
7154
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7154
7155
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7155
7156
|
}, z.core.$strip>;
|
|
7156
|
-
declare const MessageSelectSchema:
|
|
7157
|
+
declare const MessageSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
7157
7158
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
7158
7159
|
name: "created_at";
|
|
7159
7160
|
tableName: "messages";
|
|
@@ -7549,7 +7550,7 @@ declare const MessageSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
7549
7550
|
}, {}, {
|
|
7550
7551
|
length: 256;
|
|
7551
7552
|
}>;
|
|
7552
|
-
},
|
|
7553
|
+
}, drizzle_zod15.BuildRefine<{
|
|
7553
7554
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
7554
7555
|
name: "created_at";
|
|
7555
7556
|
tableName: "messages";
|
|
@@ -8051,21 +8052,21 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
8051
8052
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
8052
8053
|
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8053
8054
|
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8055
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8054
8056
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8055
8057
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8056
8058
|
fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8057
8059
|
toExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8058
|
-
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8059
|
-
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8060
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8061
8060
|
fromTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8062
8061
|
toTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8063
8062
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8064
8063
|
messageType: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8064
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8065
8065
|
parentMessageId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8066
|
+
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8066
8067
|
a2aSessionId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8067
8068
|
}, z.core.$strip>;
|
|
8068
|
-
declare const ContextCacheSelectSchema:
|
|
8069
|
+
declare const ContextCacheSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
8069
8070
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
8070
8071
|
name: "created_at";
|
|
8071
8072
|
tableName: "context_cache";
|
|
@@ -8315,7 +8316,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8315
8316
|
}, {}, {
|
|
8316
8317
|
length: 256;
|
|
8317
8318
|
}>;
|
|
8318
|
-
},
|
|
8319
|
+
}, drizzle_zod15.BuildRefine<{
|
|
8319
8320
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
8320
8321
|
name: "created_at";
|
|
8321
8322
|
tableName: "context_cache";
|
|
@@ -8572,7 +8573,7 @@ declare const ContextCacheInsertSchema: z.ZodObject<{
|
|
|
8572
8573
|
conversationId: z.ZodString;
|
|
8573
8574
|
contextConfigId: z.ZodString;
|
|
8574
8575
|
contextVariableKey: z.ZodString;
|
|
8575
|
-
value: z.ZodType<
|
|
8576
|
+
value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
8576
8577
|
requestHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8577
8578
|
fetchedAt: z.ZodOptional<z.ZodString>;
|
|
8578
8579
|
fetchSource: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8598,7 +8599,7 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
8598
8599
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
8599
8600
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
8600
8601
|
contextVariableKey: z.ZodOptional<z.ZodString>;
|
|
8601
|
-
value: z.ZodOptional<z.ZodType<
|
|
8602
|
+
value: z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
8602
8603
|
requestHash: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
8603
8604
|
fetchedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8604
8605
|
fetchSource: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -8641,7 +8642,7 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8641
8642
|
name: string;
|
|
8642
8643
|
hash: string;
|
|
8643
8644
|
}>>>;
|
|
8644
|
-
value: z.ZodType<
|
|
8645
|
+
value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
8645
8646
|
requestHash: z.ZodNullable<z.ZodString>;
|
|
8646
8647
|
fetchedAt: z.ZodString;
|
|
8647
8648
|
fetchSource: z.ZodNullable<z.ZodString>;
|
|
@@ -8655,7 +8656,7 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8655
8656
|
conversationId: z.ZodString;
|
|
8656
8657
|
contextConfigId: z.ZodString;
|
|
8657
8658
|
contextVariableKey: z.ZodString;
|
|
8658
|
-
value: z.ZodType<
|
|
8659
|
+
value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
8659
8660
|
requestHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8660
8661
|
fetchedAt: z.ZodOptional<z.ZodString>;
|
|
8661
8662
|
fetchSource: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8674,10 +8675,10 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8674
8675
|
}>, z.core.$strip>;
|
|
8675
8676
|
declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
8676
8677
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8677
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
8678
8678
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8679
8679
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8680
8680
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8681
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
8681
8682
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
8682
8683
|
type: z.ZodEnum<{
|
|
8683
8684
|
tag: "tag";
|
|
@@ -8693,7 +8694,7 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
8693
8694
|
fetchedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8694
8695
|
fetchSource: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8695
8696
|
}, z.core.$strip>;
|
|
8696
|
-
declare const DatasetRunSelectSchema:
|
|
8697
|
+
declare const DatasetRunSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
8697
8698
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
8698
8699
|
name: "created_at";
|
|
8699
8700
|
tableName: "dataset_run";
|
|
@@ -8836,7 +8837,7 @@ declare const DatasetRunSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8836
8837
|
}, {}, {
|
|
8837
8838
|
length: 256;
|
|
8838
8839
|
}>;
|
|
8839
|
-
},
|
|
8840
|
+
}, drizzle_zod15.BuildRefine<{
|
|
8840
8841
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
8841
8842
|
name: "created_at";
|
|
8842
8843
|
tableName: "dataset_run";
|
|
@@ -9020,17 +9021,17 @@ declare const DatasetRunApiInsertSchema: z.ZodObject<{
|
|
|
9020
9021
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9021
9022
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9022
9023
|
datasetId: z.ZodString;
|
|
9023
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9024
9024
|
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9025
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9025
9026
|
}, z.core.$strip>;
|
|
9026
9027
|
declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
9027
9028
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9028
9029
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9029
9030
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9030
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9031
9031
|
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9032
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9032
9033
|
}, z.core.$strip>;
|
|
9033
|
-
declare const DatasetRunConversationRelationSelectSchema:
|
|
9034
|
+
declare const DatasetRunConversationRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
9034
9035
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
9035
9036
|
name: "created_at";
|
|
9036
9037
|
tableName: "dataset_run_conversation_relations";
|
|
@@ -9173,7 +9174,7 @@ declare const DatasetRunConversationRelationSelectSchema: drizzle_zod19.BuildSch
|
|
|
9173
9174
|
}, {}, {
|
|
9174
9175
|
length: 256;
|
|
9175
9176
|
}>;
|
|
9176
|
-
},
|
|
9177
|
+
}, drizzle_zod15.BuildRefine<{
|
|
9177
9178
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
9178
9179
|
name: "created_at";
|
|
9179
9180
|
tableName: "dataset_run_conversation_relations";
|
|
@@ -9367,7 +9368,7 @@ declare const DatasetRunConversationRelationApiUpdateSchema: z.ZodObject<{
|
|
|
9367
9368
|
datasetRunId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9368
9369
|
datasetItemId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9369
9370
|
}, z.core.$strip>;
|
|
9370
|
-
declare const EvaluationResultSelectSchema:
|
|
9371
|
+
declare const EvaluationResultSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
9371
9372
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
9372
9373
|
name: "created_at";
|
|
9373
9374
|
tableName: "evaluation_result";
|
|
@@ -9529,7 +9530,7 @@ declare const EvaluationResultSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
9529
9530
|
}, {}, {
|
|
9530
9531
|
length: 256;
|
|
9531
9532
|
}>;
|
|
9532
|
-
},
|
|
9533
|
+
}, drizzle_zod15.BuildRefine<{
|
|
9533
9534
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
9534
9535
|
name: "created_at";
|
|
9535
9536
|
tableName: "evaluation_result";
|
|
@@ -9732,22 +9733,22 @@ declare const EvaluationResultApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
9732
9733
|
id: z.ZodString;
|
|
9733
9734
|
}>, z.core.$strip>;
|
|
9734
9735
|
declare const EvaluationResultApiInsertSchema: z.ZodObject<{
|
|
9735
|
-
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
9736
9736
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9737
9737
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9738
|
-
|
|
9738
|
+
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
9739
9739
|
conversationId: z.ZodString;
|
|
9740
|
+
evaluatorId: z.ZodString;
|
|
9740
9741
|
evaluationRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9741
9742
|
}, z.core.$strip>;
|
|
9742
9743
|
declare const EvaluationResultApiUpdateSchema: z.ZodObject<{
|
|
9743
|
-
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
9744
9744
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9745
9745
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9746
|
-
|
|
9746
|
+
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
9747
9747
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9748
|
+
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9748
9749
|
evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9749
9750
|
}, z.core.$strip>;
|
|
9750
|
-
declare const EvaluationRunSelectSchema:
|
|
9751
|
+
declare const EvaluationRunSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
9751
9752
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
9752
9753
|
name: "created_at";
|
|
9753
9754
|
tableName: "evaluation_run";
|
|
@@ -9873,7 +9874,7 @@ declare const EvaluationRunSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
9873
9874
|
}, {}, {
|
|
9874
9875
|
length: 256;
|
|
9875
9876
|
}>;
|
|
9876
|
-
},
|
|
9877
|
+
}, drizzle_zod15.BuildRefine<{
|
|
9877
9878
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
9878
9879
|
name: "created_at";
|
|
9879
9880
|
tableName: "evaluation_run";
|
|
@@ -10036,16 +10037,16 @@ declare const EvaluationRunApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
10036
10037
|
declare const EvaluationRunApiInsertSchema: z.ZodObject<{
|
|
10037
10038
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10038
10039
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10039
|
-
evaluationRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10040
10040
|
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10041
|
+
evaluationRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10041
10042
|
}, z.core.$strip>;
|
|
10042
10043
|
declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
10043
10044
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10044
10045
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10045
|
-
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10046
10046
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10047
|
+
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10047
10048
|
}, z.core.$strip>;
|
|
10048
|
-
declare const EvaluationRunConfigSelectSchema:
|
|
10049
|
+
declare const EvaluationRunConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
10049
10050
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
10050
10051
|
name: "created_at";
|
|
10051
10052
|
tableName: "evaluation_run_config";
|
|
@@ -10190,7 +10191,7 @@ declare const EvaluationRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select
|
|
|
10190
10191
|
}, {}, {
|
|
10191
10192
|
length: 256;
|
|
10192
10193
|
}>;
|
|
10193
|
-
},
|
|
10194
|
+
}, drizzle_zod15.BuildRefine<{
|
|
10194
10195
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
10195
10196
|
name: "created_at";
|
|
10196
10197
|
tableName: "evaluation_run_config";
|
|
@@ -10373,31 +10374,31 @@ declare const EvaluationRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
10373
10374
|
id: z.ZodString;
|
|
10374
10375
|
}>, z.core.$strip>;
|
|
10375
10376
|
declare const EvaluationRunConfigApiInsertSchema: z.ZodObject<{
|
|
10376
|
-
name: z.ZodString;
|
|
10377
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10378
10377
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10378
|
+
name: z.ZodString;
|
|
10379
10379
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10380
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10380
10381
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
10381
10382
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
10382
10383
|
}, z.core.$strip>;
|
|
10383
10384
|
declare const EvaluationRunConfigApiUpdateSchema: z.ZodObject<{
|
|
10384
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10385
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10386
10385
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10386
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10387
10387
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10388
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10388
10389
|
isActive: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
10389
10390
|
suiteConfigIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10390
10391
|
}, z.core.$strip>;
|
|
10391
10392
|
declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
10392
10393
|
id: z.ZodString;
|
|
10393
|
-
name: z.ZodString;
|
|
10394
|
-
description: z.ZodNullable<z.ZodString>;
|
|
10395
10394
|
createdAt: z.ZodString;
|
|
10395
|
+
name: z.ZodString;
|
|
10396
10396
|
updatedAt: z.ZodString;
|
|
10397
|
+
description: z.ZodNullable<z.ZodString>;
|
|
10397
10398
|
isActive: z.ZodBoolean;
|
|
10398
10399
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
10399
10400
|
}, z.core.$strip>;
|
|
10400
|
-
declare const EvaluationJobConfigSelectSchema:
|
|
10401
|
+
declare const EvaluationJobConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
10401
10402
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
10402
10403
|
name: "created_at";
|
|
10403
10404
|
tableName: "evaluation_job_config";
|
|
@@ -10522,7 +10523,7 @@ declare const EvaluationJobConfigSelectSchema: drizzle_zod19.BuildSchema<"select
|
|
|
10522
10523
|
}, {}, {
|
|
10523
10524
|
length: 256;
|
|
10524
10525
|
}>;
|
|
10525
|
-
},
|
|
10526
|
+
}, drizzle_zod15.BuildRefine<{
|
|
10526
10527
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
10527
10528
|
name: "created_at";
|
|
10528
10529
|
tableName: "evaluation_job_config";
|
|
@@ -10829,7 +10830,7 @@ declare const EvaluationJobConfigApiUpdateSchema: z.ZodObject<{
|
|
|
10829
10830
|
} | undefined;
|
|
10830
10831
|
}>>>>>>>;
|
|
10831
10832
|
}, z.core.$strip>;
|
|
10832
|
-
declare const EvaluationSuiteConfigSelectSchema:
|
|
10833
|
+
declare const EvaluationSuiteConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
10833
10834
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
10834
10835
|
name: "created_at";
|
|
10835
10836
|
tableName: "evaluation_suite_config";
|
|
@@ -10957,7 +10958,7 @@ declare const EvaluationSuiteConfigSelectSchema: drizzle_zod19.BuildSchema<"sele
|
|
|
10957
10958
|
}, {}, {
|
|
10958
10959
|
length: 256;
|
|
10959
10960
|
}>;
|
|
10960
|
-
},
|
|
10961
|
+
}, drizzle_zod15.BuildRefine<{
|
|
10961
10962
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
10962
10963
|
name: "created_at";
|
|
10963
10964
|
tableName: "evaluation_suite_config";
|
|
@@ -11133,7 +11134,7 @@ declare const EvaluationSuiteConfigApiUpdateSchema: z.ZodObject<{
|
|
|
11133
11134
|
sampleRate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>>;
|
|
11134
11135
|
evaluatorIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11135
11136
|
}, z.core.$strip>;
|
|
11136
|
-
declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema:
|
|
11137
|
+
declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
11137
11138
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11138
11139
|
name: "created_at";
|
|
11139
11140
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
@@ -11263,7 +11264,7 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: driz
|
|
|
11263
11264
|
}, {}, {
|
|
11264
11265
|
length: 256;
|
|
11265
11266
|
}>;
|
|
11266
|
-
},
|
|
11267
|
+
}, drizzle_zod15.BuildRefine<{
|
|
11267
11268
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11268
11269
|
name: "created_at";
|
|
11269
11270
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
@@ -11430,16 +11431,16 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiSelectSchema: z
|
|
|
11430
11431
|
declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiInsertSchema: z.ZodObject<{
|
|
11431
11432
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11432
11433
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11433
|
-
evaluationSuiteConfigId: z.ZodString;
|
|
11434
11434
|
evaluationRunConfigId: z.ZodString;
|
|
11435
|
+
evaluationSuiteConfigId: z.ZodString;
|
|
11435
11436
|
}, z.core.$strip>;
|
|
11436
11437
|
declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiUpdateSchema: z.ZodObject<{
|
|
11437
11438
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11438
11439
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11439
|
-
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11440
11440
|
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11441
|
+
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11441
11442
|
}, z.core.$strip>;
|
|
11442
|
-
declare const EvaluationJobConfigEvaluatorRelationSelectSchema:
|
|
11443
|
+
declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
11443
11444
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11444
11445
|
name: "created_at";
|
|
11445
11446
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
@@ -11569,7 +11570,7 @@ declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod19.Bu
|
|
|
11569
11570
|
}, {}, {
|
|
11570
11571
|
length: 256;
|
|
11571
11572
|
}>;
|
|
11572
|
-
},
|
|
11573
|
+
}, drizzle_zod15.BuildRefine<{
|
|
11573
11574
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11574
11575
|
name: "created_at";
|
|
11575
11576
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
@@ -11736,16 +11737,16 @@ declare const EvaluationJobConfigEvaluatorRelationApiSelectSchema: z.ZodObject<O
|
|
|
11736
11737
|
declare const EvaluationJobConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
11737
11738
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11738
11739
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11739
|
-
evaluatorId: z.ZodString;
|
|
11740
11740
|
evaluationJobConfigId: z.ZodString;
|
|
11741
|
+
evaluatorId: z.ZodString;
|
|
11741
11742
|
}, z.core.$strip>;
|
|
11742
11743
|
declare const EvaluationJobConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
|
|
11743
11744
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11744
11745
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11745
|
-
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11746
11746
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11747
|
+
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11747
11748
|
}, z.core.$strip>;
|
|
11748
|
-
declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema:
|
|
11749
|
+
declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
11749
11750
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11750
11751
|
name: "created_at";
|
|
11751
11752
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
@@ -11875,7 +11876,7 @@ declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod19.
|
|
|
11875
11876
|
}, {}, {
|
|
11876
11877
|
length: 256;
|
|
11877
11878
|
}>;
|
|
11878
|
-
},
|
|
11879
|
+
}, drizzle_zod15.BuildRefine<{
|
|
11879
11880
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11880
11881
|
name: "created_at";
|
|
11881
11882
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
@@ -12042,16 +12043,16 @@ declare const EvaluationSuiteConfigEvaluatorRelationApiSelectSchema: z.ZodObject
|
|
|
12042
12043
|
declare const EvaluationSuiteConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
12043
12044
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12044
12045
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12045
|
-
evaluationSuiteConfigId: z.ZodString;
|
|
12046
12046
|
evaluatorId: z.ZodString;
|
|
12047
|
+
evaluationSuiteConfigId: z.ZodString;
|
|
12047
12048
|
}, z.core.$strip>;
|
|
12048
12049
|
declare const EvaluationSuiteConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
|
|
12049
12050
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12050
12051
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12051
|
-
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12052
12052
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12053
|
+
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12053
12054
|
}, z.core.$strip>;
|
|
12054
|
-
declare const EvaluatorSelectSchema:
|
|
12055
|
+
declare const EvaluatorSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
12055
12056
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
12056
12057
|
name: "created_at";
|
|
12057
12058
|
tableName: "evaluator";
|
|
@@ -12259,7 +12260,7 @@ declare const EvaluatorSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
12259
12260
|
}, {}, {
|
|
12260
12261
|
length: 256;
|
|
12261
12262
|
}>;
|
|
12262
|
-
},
|
|
12263
|
+
}, drizzle_zod15.BuildRefine<{
|
|
12263
12264
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
12264
12265
|
name: "created_at";
|
|
12265
12266
|
tableName: "evaluator";
|
|
@@ -12550,9 +12551,10 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
12550
12551
|
id: z.ZodString;
|
|
12551
12552
|
}>, z.core.$strip>;
|
|
12552
12553
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
12554
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
12553
12555
|
name: z.ZodString;
|
|
12556
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12554
12557
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12555
|
-
prompt: z.ZodString;
|
|
12556
12558
|
model: z.ZodType<{
|
|
12557
12559
|
model?: string | undefined;
|
|
12558
12560
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -12566,15 +12568,15 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
12566
12568
|
model?: string | undefined;
|
|
12567
12569
|
providerOptions?: Record<string, any> | undefined;
|
|
12568
12570
|
}>>;
|
|
12569
|
-
|
|
12570
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12571
|
+
prompt: z.ZodString;
|
|
12571
12572
|
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
12572
12573
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
|
|
12573
12574
|
}, z.core.$strip>;
|
|
12574
12575
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
12576
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12575
12577
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12578
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12576
12579
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12577
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12578
12580
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
12579
12581
|
model?: string | undefined;
|
|
12580
12582
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -12588,12 +12590,11 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
12588
12590
|
model?: string | undefined;
|
|
12589
12591
|
providerOptions?: Record<string, any> | undefined;
|
|
12590
12592
|
}>>>>;
|
|
12591
|
-
|
|
12592
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12593
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12593
12594
|
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
12594
12595
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
|
|
12595
12596
|
}, z.core.$strip>;
|
|
12596
|
-
declare const DatasetSelectSchema:
|
|
12597
|
+
declare const DatasetSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
12597
12598
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
12598
12599
|
name: "created_at";
|
|
12599
12600
|
tableName: "dataset";
|
|
@@ -12704,7 +12705,7 @@ declare const DatasetSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
12704
12705
|
}, {}, {
|
|
12705
12706
|
length: 256;
|
|
12706
12707
|
}>;
|
|
12707
|
-
},
|
|
12708
|
+
}, drizzle_zod15.BuildRefine<{
|
|
12708
12709
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
12709
12710
|
name: "created_at";
|
|
12710
12711
|
tableName: "dataset";
|
|
@@ -12847,16 +12848,16 @@ declare const DatasetApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
12847
12848
|
id: z.ZodString;
|
|
12848
12849
|
}>, z.core.$strip>;
|
|
12849
12850
|
declare const DatasetApiInsertSchema: z.ZodObject<{
|
|
12850
|
-
name: z.ZodString;
|
|
12851
12851
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12852
|
+
name: z.ZodString;
|
|
12852
12853
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12853
12854
|
}, z.core.$strip>;
|
|
12854
12855
|
declare const DatasetApiUpdateSchema: z.ZodObject<{
|
|
12855
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12856
12856
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12857
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12857
12858
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12858
12859
|
}, z.core.$strip>;
|
|
12859
|
-
declare const DatasetItemSelectSchema:
|
|
12860
|
+
declare const DatasetItemSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
12860
12861
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
12861
12862
|
name: "created_at";
|
|
12862
12863
|
tableName: "dataset_item";
|
|
@@ -13044,7 +13045,7 @@ declare const DatasetItemSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
13044
13045
|
}, {}, {
|
|
13045
13046
|
length: 256;
|
|
13046
13047
|
}>;
|
|
13047
|
-
},
|
|
13048
|
+
}, drizzle_zod15.BuildRefine<{
|
|
13048
13049
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
13049
13050
|
name: "created_at";
|
|
13050
13051
|
tableName: "dataset_item";
|
|
@@ -13393,9 +13394,9 @@ declare const DatasetItemApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
13393
13394
|
id: z.ZodString;
|
|
13394
13395
|
}>, z.core.$strip>;
|
|
13395
13396
|
declare const DatasetItemApiInsertSchema: z.ZodObject<{
|
|
13396
|
-
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13397
13397
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13398
13398
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13399
|
+
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13399
13400
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13400
13401
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
13401
13402
|
prompt: string;
|
|
@@ -13440,9 +13441,9 @@ declare const DatasetItemApiInsertSchema: z.ZodObject<{
|
|
|
13440
13441
|
}>>>>;
|
|
13441
13442
|
}, z.core.$strip>;
|
|
13442
13443
|
declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
13443
|
-
input: z.ZodOptional<z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>>;
|
|
13444
13444
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13445
13445
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13446
|
+
input: z.ZodOptional<z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>>;
|
|
13446
13447
|
expectedOutput: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>>>;
|
|
13447
13448
|
simulationAgent: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
13448
13449
|
prompt: string;
|
|
@@ -13615,7 +13616,7 @@ declare const TriggerEvaluationJobSchema: z.ZodObject<{
|
|
|
13615
13616
|
}, z.core.$strip>>;
|
|
13616
13617
|
}, z.core.$strip>>>;
|
|
13617
13618
|
}, z.core.$strip>;
|
|
13618
|
-
declare const DatasetRunConfigSelectSchema:
|
|
13619
|
+
declare const DatasetRunConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
13619
13620
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
13620
13621
|
name: "created_at";
|
|
13621
13622
|
tableName: "dataset_run_config";
|
|
@@ -13762,7 +13763,7 @@ declare const DatasetRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
13762
13763
|
}, {}, {
|
|
13763
13764
|
length: 256;
|
|
13764
13765
|
}>;
|
|
13765
|
-
},
|
|
13766
|
+
}, drizzle_zod15.BuildRefine<{
|
|
13766
13767
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
13767
13768
|
name: "created_at";
|
|
13768
13769
|
tableName: "dataset_run_config";
|
|
@@ -13947,20 +13948,20 @@ declare const DatasetRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
13947
13948
|
id: z.ZodString;
|
|
13948
13949
|
}>, z.core.$strip>;
|
|
13949
13950
|
declare const DatasetRunConfigApiInsertSchema: z.ZodObject<{
|
|
13950
|
-
name: z.ZodString;
|
|
13951
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13952
13951
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13952
|
+
name: z.ZodString;
|
|
13953
13953
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13954
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13954
13955
|
datasetId: z.ZodString;
|
|
13955
13956
|
}, z.core.$strip>;
|
|
13956
13957
|
declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
13957
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13958
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13959
13958
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13959
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13960
13960
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13961
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13961
13962
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13962
13963
|
}, z.core.$strip>;
|
|
13963
|
-
declare const DatasetRunConfigAgentRelationSelectSchema:
|
|
13964
|
+
declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
13964
13965
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
13965
13966
|
name: "created_at";
|
|
13966
13967
|
tableName: "dataset_run_config_agent_relations";
|
|
@@ -14090,7 +14091,7 @@ declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSche
|
|
|
14090
14091
|
}, {}, {
|
|
14091
14092
|
length: 256;
|
|
14092
14093
|
}>;
|
|
14093
|
-
},
|
|
14094
|
+
}, drizzle_zod15.BuildRefine<{
|
|
14094
14095
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
14095
14096
|
name: "created_at";
|
|
14096
14097
|
tableName: "dataset_run_config_agent_relations";
|
|
@@ -14255,18 +14256,18 @@ declare const DatasetRunConfigAgentRelationApiSelectSchema: z.ZodObject<OmitProj
|
|
|
14255
14256
|
id: z.ZodString;
|
|
14256
14257
|
}>, z.core.$strip>;
|
|
14257
14258
|
declare const DatasetRunConfigAgentRelationApiInsertSchema: z.ZodObject<{
|
|
14258
|
-
agentId: z.ZodString;
|
|
14259
14259
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14260
14260
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14261
|
+
agentId: z.ZodString;
|
|
14261
14262
|
datasetRunConfigId: z.ZodString;
|
|
14262
14263
|
}, z.core.$strip>;
|
|
14263
14264
|
declare const DatasetRunConfigAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
14264
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14265
14265
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14266
14266
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14267
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14267
14268
|
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14268
14269
|
}, z.core.$strip>;
|
|
14269
|
-
declare const DataComponentSelectSchema:
|
|
14270
|
+
declare const DataComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
14270
14271
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
14271
14272
|
name: "created_at";
|
|
14272
14273
|
tableName: "data_components";
|
|
@@ -14438,7 +14439,7 @@ declare const DataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
14438
14439
|
}, {}, {
|
|
14439
14440
|
length: 256;
|
|
14440
14441
|
}>;
|
|
14441
|
-
},
|
|
14442
|
+
}, drizzle_zod15.BuildRefine<{
|
|
14442
14443
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
14443
14444
|
name: "created_at";
|
|
14444
14445
|
tableName: "data_components";
|
|
@@ -14640,9 +14641,9 @@ declare const DataComponentInsertSchema: z.ZodObject<{
|
|
|
14640
14641
|
declare const DataComponentBaseSchema: z.ZodObject<{
|
|
14641
14642
|
id: z.ZodString;
|
|
14642
14643
|
name: z.ZodString;
|
|
14643
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14644
|
-
tenantId: z.ZodString;
|
|
14645
14644
|
projectId: z.ZodString;
|
|
14645
|
+
tenantId: z.ZodString;
|
|
14646
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14646
14647
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
14647
14648
|
render: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
14648
14649
|
component: string;
|
|
@@ -14735,10 +14736,10 @@ declare const DataComponentApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
14735
14736
|
}>, z.core.$strip>;
|
|
14736
14737
|
declare const DataComponentApiUpdateSchema: z.ZodObject<{
|
|
14737
14738
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14738
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14739
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14740
14739
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14740
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14741
14741
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14742
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14742
14743
|
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>>;
|
|
14743
14744
|
render: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
14744
14745
|
component: string;
|
|
@@ -14754,7 +14755,7 @@ declare const DataComponentApiUpdateSchema: z.ZodObject<{
|
|
|
14754
14755
|
mockData: Record<string, unknown>;
|
|
14755
14756
|
}>>>>>>;
|
|
14756
14757
|
}, z.core.$strip>;
|
|
14757
|
-
declare const SubAgentDataComponentSelectSchema:
|
|
14758
|
+
declare const SubAgentDataComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
14758
14759
|
dataComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
14759
14760
|
name: "data_component_id";
|
|
14760
14761
|
tableName: "sub_agent_data_components";
|
|
@@ -14886,7 +14887,7 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod19.BuildSchema<"sele
|
|
|
14886
14887
|
}, {}, {
|
|
14887
14888
|
length: 256;
|
|
14888
14889
|
}>;
|
|
14889
|
-
},
|
|
14890
|
+
}, drizzle_zod15.BuildRefine<{
|
|
14890
14891
|
dataComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
14891
14892
|
name: "data_component_id";
|
|
14892
14893
|
tableName: "sub_agent_data_components";
|
|
@@ -15019,7 +15020,7 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod19.BuildSchema<"sele
|
|
|
15019
15020
|
length: 256;
|
|
15020
15021
|
}>;
|
|
15021
15022
|
}, undefined>, undefined>;
|
|
15022
|
-
declare const SubAgentDataComponentInsertSchema:
|
|
15023
|
+
declare const SubAgentDataComponentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
15023
15024
|
dataComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
15024
15025
|
name: "data_component_id";
|
|
15025
15026
|
tableName: "sub_agent_data_components";
|
|
@@ -15151,7 +15152,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"inse
|
|
|
15151
15152
|
}, {}, {
|
|
15152
15153
|
length: 256;
|
|
15153
15154
|
}>;
|
|
15154
|
-
},
|
|
15155
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
15155
15156
|
dataComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
15156
15157
|
name: "data_component_id";
|
|
15157
15158
|
tableName: "sub_agent_data_components";
|
|
@@ -15283,7 +15284,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"inse
|
|
|
15283
15284
|
}, {}, {
|
|
15284
15285
|
length: 256;
|
|
15285
15286
|
}>;
|
|
15286
|
-
}, "id" | "
|
|
15287
|
+
}, "id" | "createdAt" | "agentId" | "projectId" | "tenantId" | "subAgentId" | "dataComponentId">, undefined>, undefined>;
|
|
15287
15288
|
declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
15288
15289
|
dataComponentId: z.ZodOptional<z.ZodString>;
|
|
15289
15290
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -15319,7 +15320,7 @@ declare const SubAgentDataComponentApiUpdateSchema: z.ZodObject<{
|
|
|
15319
15320
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15320
15321
|
dataComponentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15321
15322
|
}, z.core.$strip>;
|
|
15322
|
-
declare const ArtifactComponentSelectSchema:
|
|
15323
|
+
declare const ArtifactComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
15323
15324
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
15324
15325
|
name: "created_at";
|
|
15325
15326
|
tableName: "artifact_components";
|
|
@@ -15491,7 +15492,7 @@ declare const ArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
15491
15492
|
}, {}, {
|
|
15492
15493
|
length: 256;
|
|
15493
15494
|
}>;
|
|
15494
|
-
},
|
|
15495
|
+
}, drizzle_zod15.BuildRefine<{
|
|
15495
15496
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
15496
15497
|
name: "created_at";
|
|
15497
15498
|
tableName: "artifact_components";
|
|
@@ -15763,10 +15764,10 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
15763
15764
|
}>;
|
|
15764
15765
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
15765
15766
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15766
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15767
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
15768
15767
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15768
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15769
15769
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15770
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
15770
15771
|
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>>;
|
|
15771
15772
|
render: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
15772
15773
|
component: string;
|
|
@@ -15782,7 +15783,7 @@ declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
|
15782
15783
|
mockData: Record<string, unknown>;
|
|
15783
15784
|
}>>>>>>;
|
|
15784
15785
|
}, z.core.$strip>;
|
|
15785
|
-
declare const SubAgentArtifactComponentSelectSchema:
|
|
15786
|
+
declare const SubAgentArtifactComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
15786
15787
|
artifactComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
15787
15788
|
name: "artifact_component_id";
|
|
15788
15789
|
tableName: "sub_agent_artifact_components";
|
|
@@ -15914,7 +15915,7 @@ declare const SubAgentArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
15914
15915
|
}, {}, {
|
|
15915
15916
|
length: 256;
|
|
15916
15917
|
}>;
|
|
15917
|
-
},
|
|
15918
|
+
}, drizzle_zod15.BuildRefine<{
|
|
15918
15919
|
artifactComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
15919
15920
|
name: "artifact_component_id";
|
|
15920
15921
|
tableName: "sub_agent_artifact_components";
|
|
@@ -16160,19 +16161,19 @@ declare const ExternalAgentApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
16160
16161
|
}>, z.core.$strip>;
|
|
16161
16162
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
16162
16163
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16163
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16164
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16165
16164
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16165
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16166
16166
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16167
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16167
16168
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16168
16169
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16169
16170
|
}, z.core.$strip>;
|
|
16170
16171
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
16171
16172
|
id: z.ZodString;
|
|
16173
|
+
createdAt: z.ZodString;
|
|
16172
16174
|
name: z.ZodString;
|
|
16175
|
+
updatedAt: z.ZodString;
|
|
16173
16176
|
description: z.ZodNullable<z.ZodString>;
|
|
16174
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
16175
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
16176
16177
|
models: z.ZodNullable<z.ZodType<{
|
|
16177
16178
|
base?: {
|
|
16178
16179
|
model?: string | undefined;
|
|
@@ -16226,6 +16227,7 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16226
16227
|
providerOptions?: Record<string, any> | undefined;
|
|
16227
16228
|
} | undefined;
|
|
16228
16229
|
}>>>;
|
|
16230
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
16229
16231
|
stopWhen: z.ZodNullable<z.ZodType<{
|
|
16230
16232
|
stepCountIs?: number | undefined;
|
|
16231
16233
|
}, {
|
|
@@ -16235,20 +16237,19 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16235
16237
|
}, {
|
|
16236
16238
|
stepCountIs?: number | undefined;
|
|
16237
16239
|
}>>>;
|
|
16238
|
-
|
|
16239
|
-
updatedAt: z.ZodString;
|
|
16240
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
16240
16241
|
type: z.ZodLiteral<"internal">;
|
|
16241
16242
|
}, z.core.$strip>, z.ZodObject<{
|
|
16242
16243
|
id: z.ZodString;
|
|
16243
|
-
name: z.ZodString;
|
|
16244
|
-
description: z.ZodNullable<z.ZodString>;
|
|
16245
16244
|
createdAt: z.ZodString;
|
|
16245
|
+
name: z.ZodString;
|
|
16246
16246
|
updatedAt: z.ZodString;
|
|
16247
|
+
description: z.ZodNullable<z.ZodString>;
|
|
16247
16248
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16248
16249
|
baseUrl: z.ZodString;
|
|
16249
16250
|
type: z.ZodLiteral<"external">;
|
|
16250
16251
|
}, z.core.$strip>], "type">;
|
|
16251
|
-
declare const ApiKeySelectSchema:
|
|
16252
|
+
declare const ApiKeySelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
16252
16253
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
16253
16254
|
name: "created_at";
|
|
16254
16255
|
tableName: "api_keys";
|
|
@@ -16469,7 +16470,7 @@ declare const ApiKeySelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
16469
16470
|
}, {}, {
|
|
16470
16471
|
length: 256;
|
|
16471
16472
|
}>;
|
|
16472
|
-
},
|
|
16473
|
+
}, drizzle_zod15.BuildRefine<{
|
|
16473
16474
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
16474
16475
|
name: "created_at";
|
|
16475
16476
|
tableName: "api_keys";
|
|
@@ -16710,8 +16711,8 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
16710
16711
|
}>;
|
|
16711
16712
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
16712
16713
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16713
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
16714
16714
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16715
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
16715
16716
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16716
16717
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16717
16718
|
}, {
|
|
@@ -16720,10 +16721,10 @@ declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
|
16720
16721
|
}>;
|
|
16721
16722
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
16722
16723
|
id: z.ZodString;
|
|
16723
|
-
name: z.ZodNullable<z.ZodString>;
|
|
16724
|
-
agentId: z.ZodString;
|
|
16725
16724
|
createdAt: z.ZodString;
|
|
16725
|
+
name: z.ZodNullable<z.ZodString>;
|
|
16726
16726
|
updatedAt: z.ZodString;
|
|
16727
|
+
agentId: z.ZodString;
|
|
16727
16728
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
16728
16729
|
publicId: z.ZodString;
|
|
16729
16730
|
keyPrefix: z.ZodString;
|
|
@@ -16736,10 +16737,10 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
16736
16737
|
data: z.ZodObject<{
|
|
16737
16738
|
apiKey: z.ZodObject<{
|
|
16738
16739
|
id: z.ZodString;
|
|
16739
|
-
name: z.ZodNullable<z.ZodString>;
|
|
16740
|
-
agentId: z.ZodString;
|
|
16741
16740
|
createdAt: z.ZodString;
|
|
16741
|
+
name: z.ZodNullable<z.ZodString>;
|
|
16742
16742
|
updatedAt: z.ZodString;
|
|
16743
|
+
agentId: z.ZodString;
|
|
16743
16744
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
16744
16745
|
publicId: z.ZodString;
|
|
16745
16746
|
keyPrefix: z.ZodString;
|
|
@@ -16752,10 +16753,10 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
16752
16753
|
}, z.core.$strip>;
|
|
16753
16754
|
}, z.core.$strip>;
|
|
16754
16755
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
16755
|
-
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16756
|
-
agentId: z.ZodString;
|
|
16757
16756
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16757
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16758
16758
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16759
|
+
agentId: z.ZodString;
|
|
16759
16760
|
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16760
16761
|
}, {
|
|
16761
16762
|
out: {};
|
|
@@ -16763,15 +16764,15 @@ declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
|
16763
16764
|
}>;
|
|
16764
16765
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
16765
16766
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16766
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
16767
16767
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16768
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
16768
16769
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16769
16770
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16770
16771
|
}, {
|
|
16771
16772
|
out: {};
|
|
16772
16773
|
in: {};
|
|
16773
16774
|
}>;
|
|
16774
|
-
declare const CredentialReferenceSelectSchema:
|
|
16775
|
+
declare const CredentialReferenceSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
16775
16776
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
16776
16777
|
name: "created_at";
|
|
16777
16778
|
tableName: "credential_references";
|
|
@@ -16996,7 +16997,7 @@ declare const CredentialReferenceSelectSchema: drizzle_zod19.BuildSchema<"select
|
|
|
16996
16997
|
}, {}, {
|
|
16997
16998
|
length: 256;
|
|
16998
16999
|
}>;
|
|
16999
|
-
},
|
|
17000
|
+
}, drizzle_zod15.BuildRefine<{
|
|
17000
17001
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
17001
17002
|
name: "created_at";
|
|
17002
17003
|
tableName: "credential_references";
|
|
@@ -17258,11 +17259,11 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
|
17258
17259
|
}>;
|
|
17259
17260
|
declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
17260
17261
|
id: z.ZodString;
|
|
17261
|
-
name: z.ZodString;
|
|
17262
17262
|
createdAt: z.ZodString;
|
|
17263
|
+
name: z.ZodString;
|
|
17263
17264
|
updatedAt: z.ZodString;
|
|
17264
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
17265
17265
|
userId: z.ZodNullable<z.ZodString>;
|
|
17266
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
17266
17267
|
credentialStoreId: z.ZodString;
|
|
17267
17268
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
17268
17269
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
@@ -17271,7 +17272,7 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
17271
17272
|
readonly keychain: "keychain";
|
|
17272
17273
|
readonly nango: "nango";
|
|
17273
17274
|
}>;
|
|
17274
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
17275
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
17275
17276
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
17276
17277
|
name: "created_at";
|
|
17277
17278
|
tableName: "tools";
|
|
@@ -17551,7 +17552,7 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
17551
17552
|
}, {}, {
|
|
17552
17553
|
length: 256;
|
|
17553
17554
|
}>;
|
|
17554
|
-
},
|
|
17555
|
+
}, drizzle_zod15.BuildRefine<{
|
|
17555
17556
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
17556
17557
|
name: "created_at";
|
|
17557
17558
|
tableName: "tools";
|
|
@@ -17849,11 +17850,11 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
17849
17850
|
}, z.core.$strip>;
|
|
17850
17851
|
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
17851
17852
|
id: z.ZodString;
|
|
17852
|
-
name: z.ZodString;
|
|
17853
17853
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17854
|
+
name: z.ZodString;
|
|
17854
17855
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17855
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17856
17856
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17857
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17857
17858
|
credentialStoreId: z.ZodString;
|
|
17858
17859
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
17859
17860
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -17865,11 +17866,11 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
17865
17866
|
}, z.core.$strip>;
|
|
17866
17867
|
declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
17867
17868
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17868
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17869
17869
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
17870
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17870
17871
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
17871
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17872
17872
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17873
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17873
17874
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17874
17875
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
17875
17876
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -17997,20 +17998,20 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
17997
17998
|
declare const MCPToolConfigSchema: z.ZodObject<{
|
|
17998
17999
|
id: z.ZodString;
|
|
17999
18000
|
name: z.ZodString;
|
|
18000
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
18001
18001
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
18002
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
18003
|
+
createdBy: z.ZodOptional<z.ZodString>;
|
|
18002
18004
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
18003
18005
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
18004
18006
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
18005
18007
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18006
18008
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
18007
|
-
createdBy: z.ZodOptional<z.ZodString>;
|
|
18008
|
-
relationshipId: z.ZodOptional<z.ZodString>;
|
|
18009
18009
|
availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18010
18010
|
name: z.ZodString;
|
|
18011
18011
|
description: z.ZodOptional<z.ZodString>;
|
|
18012
18012
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
18013
18013
|
}, z.core.$strip>>>;
|
|
18014
|
+
relationshipId: z.ZodOptional<z.ZodString>;
|
|
18014
18015
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
18015
18016
|
projectId: z.ZodOptional<z.ZodString>;
|
|
18016
18017
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -18032,11 +18033,11 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
18032
18033
|
}, z.core.$strip>>;
|
|
18033
18034
|
credential: z.ZodOptional<z.ZodObject<{
|
|
18034
18035
|
id: z.ZodString;
|
|
18035
|
-
name: z.ZodString;
|
|
18036
18036
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18037
|
+
name: z.ZodString;
|
|
18037
18038
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18038
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18039
18039
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18040
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18040
18041
|
credentialStoreId: z.ZodString;
|
|
18041
18042
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
18042
18043
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -18175,10 +18176,10 @@ declare const ToolApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
18175
18176
|
}>, z.core.$strip>;
|
|
18176
18177
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
18177
18178
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18178
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18179
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18180
18179
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18180
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18181
18181
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18182
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18182
18183
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
|
|
18183
18184
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
18184
18185
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -18213,7 +18214,7 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
18213
18214
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18214
18215
|
isWorkApp: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
18215
18216
|
}, z.core.$strip>;
|
|
18216
|
-
declare const FunctionToolSelectSchema:
|
|
18217
|
+
declare const FunctionToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
18217
18218
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
18218
18219
|
name: "created_at";
|
|
18219
18220
|
tableName: "function_tools";
|
|
@@ -18379,7 +18380,7 @@ declare const FunctionToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
18379
18380
|
}, {}, {
|
|
18380
18381
|
length: 256;
|
|
18381
18382
|
}>;
|
|
18382
|
-
},
|
|
18383
|
+
}, drizzle_zod15.BuildRefine<{
|
|
18383
18384
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
18384
18385
|
name: "created_at";
|
|
18385
18386
|
tableName: "function_tools";
|
|
@@ -18576,11 +18577,11 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
18576
18577
|
}>;
|
|
18577
18578
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
18578
18579
|
id: z.ZodString;
|
|
18579
|
-
name: z.ZodString;
|
|
18580
|
-
description: z.ZodNullable<z.ZodString>;
|
|
18581
|
-
agentId: z.ZodString;
|
|
18582
18580
|
createdAt: z.ZodString;
|
|
18581
|
+
name: z.ZodString;
|
|
18583
18582
|
updatedAt: z.ZodString;
|
|
18583
|
+
agentId: z.ZodString;
|
|
18584
|
+
description: z.ZodNullable<z.ZodString>;
|
|
18584
18585
|
functionId: z.ZodString;
|
|
18585
18586
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
18586
18587
|
}, z.core.$strip>;
|
|
@@ -18597,14 +18598,14 @@ declare const FunctionToolApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
|
18597
18598
|
}>, z.core.$strip>;
|
|
18598
18599
|
declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
18599
18600
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18600
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18601
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18602
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18603
18601
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18602
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18604
18603
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18604
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18605
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18605
18606
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18606
18607
|
}, z.core.$strip>;
|
|
18607
|
-
declare const SubAgentFunctionToolRelationSelectSchema:
|
|
18608
|
+
declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
18608
18609
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
18609
18610
|
name: "created_at";
|
|
18610
18611
|
tableName: "sub_agent_function_tool_relations";
|
|
@@ -18776,7 +18777,7 @@ declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod19.BuildSchem
|
|
|
18776
18777
|
}, {}, {
|
|
18777
18778
|
length: 256;
|
|
18778
18779
|
}>;
|
|
18779
|
-
},
|
|
18780
|
+
}, drizzle_zod15.BuildRefine<{
|
|
18780
18781
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
18781
18782
|
name: "created_at";
|
|
18782
18783
|
tableName: "sub_agent_function_tool_relations";
|
|
@@ -18952,7 +18953,7 @@ declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod19.BuildSchem
|
|
|
18952
18953
|
declare const SubAgentFunctionToolRelationInsertSchema: z.ZodObject<{
|
|
18953
18954
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18954
18955
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18955
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
18956
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
18956
18957
|
agentId: z.ZodString;
|
|
18957
18958
|
projectId: z.ZodString;
|
|
18958
18959
|
tenantId: z.ZodString;
|
|
@@ -18967,7 +18968,7 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<OmitAgent
|
|
|
18967
18968
|
createdAt: z.ZodString;
|
|
18968
18969
|
updatedAt: z.ZodString;
|
|
18969
18970
|
functionToolId: z.ZodString;
|
|
18970
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
18971
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
18971
18972
|
subAgentId: z.ZodString;
|
|
18972
18973
|
agentId: z.ZodString;
|
|
18973
18974
|
projectId: z.ZodString;
|
|
@@ -18975,14 +18976,14 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<OmitAgent
|
|
|
18975
18976
|
id: z.ZodString;
|
|
18976
18977
|
}>, z.core.$strip>;
|
|
18977
18978
|
declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
|
|
18978
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
18979
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
18979
18980
|
subAgentId: z.ZodString;
|
|
18980
18981
|
functionToolId: z.ZodString;
|
|
18981
18982
|
}, {
|
|
18982
18983
|
out: {};
|
|
18983
18984
|
in: {};
|
|
18984
18985
|
}>;
|
|
18985
|
-
declare const FunctionSelectSchema:
|
|
18986
|
+
declare const FunctionSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
18986
18987
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
18987
18988
|
name: "created_at";
|
|
18988
18989
|
tableName: "functions";
|
|
@@ -19129,7 +19130,7 @@ declare const FunctionSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
19129
19130
|
}, {}, {
|
|
19130
19131
|
length: 256;
|
|
19131
19132
|
}>;
|
|
19132
|
-
},
|
|
19133
|
+
}, drizzle_zod15.BuildRefine<{
|
|
19133
19134
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
19134
19135
|
name: "created_at";
|
|
19135
19136
|
tableName: "functions";
|
|
@@ -19326,8 +19327,8 @@ declare const FunctionApiUpdateSchema: z.ZodObject<{
|
|
|
19326
19327
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19327
19328
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19328
19329
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>>;
|
|
19329
|
-
executeCode: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19330
19330
|
dependencies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
|
|
19331
|
+
executeCode: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19331
19332
|
}, z.core.$strip>;
|
|
19332
19333
|
declare const FetchConfigSchema: z.ZodObject<{
|
|
19333
19334
|
url: z.ZodString;
|
|
@@ -19370,11 +19371,11 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
19370
19371
|
defaultValue: z.ZodOptional<z.ZodAny>;
|
|
19371
19372
|
credential: z.ZodOptional<z.ZodObject<{
|
|
19372
19373
|
id: z.ZodString;
|
|
19373
|
-
name: z.ZodString;
|
|
19374
19374
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
19375
|
+
name: z.ZodString;
|
|
19375
19376
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19376
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19377
19377
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19378
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19378
19379
|
credentialStoreId: z.ZodString;
|
|
19379
19380
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19380
19381
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -19385,7 +19386,6 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
19385
19386
|
}>;
|
|
19386
19387
|
}, z.core.$strip>>;
|
|
19387
19388
|
}, z.core.$strip>;
|
|
19388
|
-
declare const HeadersSchema: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
19389
19389
|
declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
19390
19390
|
createdAt: z.ZodString;
|
|
19391
19391
|
updatedAt: z.ZodString;
|
|
@@ -19401,32 +19401,32 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
19401
19401
|
}>;
|
|
19402
19402
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
19403
19403
|
id: z.ZodOptional<z.ZodString>;
|
|
19404
|
-
tenantId: z.ZodString;
|
|
19405
|
-
projectId: z.ZodString;
|
|
19406
|
-
agentId: z.ZodString;
|
|
19407
19404
|
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
19408
19405
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
19406
|
+
agentId: z.ZodString;
|
|
19407
|
+
projectId: z.ZodString;
|
|
19408
|
+
tenantId: z.ZodString;
|
|
19409
19409
|
}, {
|
|
19410
19410
|
out: {};
|
|
19411
19411
|
in: {};
|
|
19412
19412
|
}>;
|
|
19413
19413
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
19414
19414
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19415
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
19416
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
19417
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
19418
19415
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
19419
19416
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
19417
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
19418
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
19419
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
19420
19420
|
}, {
|
|
19421
19421
|
out: {};
|
|
19422
19422
|
in: {};
|
|
19423
19423
|
}>;
|
|
19424
19424
|
declare const ContextConfigApiSelectSchema: z.ZodObject<{
|
|
19425
19425
|
id: z.ZodString;
|
|
19426
|
-
createdAt: z.ZodString;
|
|
19427
|
-
updatedAt: z.ZodString;
|
|
19428
19426
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
19429
19427
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
19428
|
+
createdAt: z.ZodString;
|
|
19429
|
+
updatedAt: z.ZodString;
|
|
19430
19430
|
}, z.core.$strip>;
|
|
19431
19431
|
declare const ContextConfigApiInsertSchema: z.ZodObject<{
|
|
19432
19432
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -19438,7 +19438,7 @@ declare const ContextConfigApiUpdateSchema: z.ZodObject<{
|
|
|
19438
19438
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>>;
|
|
19439
19439
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>>;
|
|
19440
19440
|
}, z.core.$strip>;
|
|
19441
|
-
declare const SubAgentToolRelationSelectSchema:
|
|
19441
|
+
declare const SubAgentToolRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
19442
19442
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
19443
19443
|
name: "created_at";
|
|
19444
19444
|
tableName: "sub_agent_tool_relations";
|
|
@@ -19648,7 +19648,7 @@ declare const SubAgentToolRelationSelectSchema: drizzle_zod19.BuildSchema<"selec
|
|
|
19648
19648
|
}, {}, {
|
|
19649
19649
|
length: 256;
|
|
19650
19650
|
}>;
|
|
19651
|
-
},
|
|
19651
|
+
}, drizzle_zod15.BuildRefine<{
|
|
19652
19652
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
19653
19653
|
name: "created_at";
|
|
19654
19654
|
tableName: "sub_agent_tool_relations";
|
|
@@ -19899,9 +19899,9 @@ declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
19899
19899
|
createdAt: z.ZodString;
|
|
19900
19900
|
updatedAt: z.ZodString;
|
|
19901
19901
|
toolId: z.ZodString;
|
|
19902
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
19903
|
-
headers: z.ZodNullable<z.ZodType<
|
|
19904
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
19902
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
19903
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
19904
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
19905
19905
|
subAgentId: z.ZodString;
|
|
19906
19906
|
agentId: z.ZodString;
|
|
19907
19907
|
projectId: z.ZodString;
|
|
@@ -19935,7 +19935,7 @@ declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
|
19935
19935
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19936
19936
|
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
19937
19937
|
}, z.core.$strip>;
|
|
19938
|
-
declare const SubAgentExternalAgentRelationSelectSchema:
|
|
19938
|
+
declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
19939
19939
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
19940
19940
|
name: "created_at";
|
|
19941
19941
|
tableName: "sub_agent_external_agent_relations";
|
|
@@ -20103,7 +20103,7 @@ declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod19.BuildSche
|
|
|
20103
20103
|
}, {}, {
|
|
20104
20104
|
length: 256;
|
|
20105
20105
|
}>;
|
|
20106
|
-
},
|
|
20106
|
+
}, drizzle_zod15.BuildRefine<{
|
|
20107
20107
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
20108
20108
|
name: "created_at";
|
|
20109
20109
|
tableName: "sub_agent_external_agent_relations";
|
|
@@ -20304,7 +20304,7 @@ declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<OmitAgen
|
|
|
20304
20304
|
createdAt: z.ZodString;
|
|
20305
20305
|
updatedAt: z.ZodString;
|
|
20306
20306
|
externalAgentId: z.ZodString;
|
|
20307
|
-
headers: z.ZodNullable<z.ZodType<
|
|
20307
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
20308
20308
|
subAgentId: z.ZodString;
|
|
20309
20309
|
agentId: z.ZodString;
|
|
20310
20310
|
projectId: z.ZodString;
|
|
@@ -20325,7 +20325,7 @@ declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
20325
20325
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20326
20326
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20327
20327
|
}, z.core.$strip>;
|
|
20328
|
-
declare const SubAgentTeamAgentRelationSelectSchema:
|
|
20328
|
+
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
20329
20329
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
20330
20330
|
name: "created_at";
|
|
20331
20331
|
tableName: "sub_agent_team_agent_relations";
|
|
@@ -20493,7 +20493,7 @@ declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
20493
20493
|
}, {}, {
|
|
20494
20494
|
length: 256;
|
|
20495
20495
|
}>;
|
|
20496
|
-
},
|
|
20496
|
+
}, drizzle_zod15.BuildRefine<{
|
|
20497
20497
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
20498
20498
|
name: "created_at";
|
|
20499
20499
|
tableName: "sub_agent_team_agent_relations";
|
|
@@ -20694,7 +20694,7 @@ declare const SubAgentTeamAgentRelationApiSelectSchema: z.ZodObject<OmitAgentSco
|
|
|
20694
20694
|
createdAt: z.ZodString;
|
|
20695
20695
|
updatedAt: z.ZodString;
|
|
20696
20696
|
targetAgentId: z.ZodString;
|
|
20697
|
-
headers: z.ZodNullable<z.ZodType<
|
|
20697
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
20698
20698
|
subAgentId: z.ZodString;
|
|
20699
20699
|
agentId: z.ZodString;
|
|
20700
20700
|
projectId: z.ZodString;
|
|
@@ -20715,7 +20715,7 @@ declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
20715
20715
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20716
20716
|
targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20717
20717
|
}, z.core.$strip>;
|
|
20718
|
-
declare const LedgerArtifactSelectSchema:
|
|
20718
|
+
declare const LedgerArtifactSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
20719
20719
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
20720
20720
|
name: "created_at";
|
|
20721
20721
|
tableName: "ledger_artifacts";
|
|
@@ -21050,7 +21050,7 @@ declare const LedgerArtifactSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
21050
21050
|
}, {}, {
|
|
21051
21051
|
length: 256;
|
|
21052
21052
|
}>;
|
|
21053
|
-
},
|
|
21053
|
+
}, drizzle_zod15.BuildRefine<{
|
|
21054
21054
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
21055
21055
|
name: "created_at";
|
|
21056
21056
|
tableName: "ledger_artifacts";
|
|
@@ -21386,7 +21386,7 @@ declare const LedgerArtifactSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
21386
21386
|
length: 256;
|
|
21387
21387
|
}>;
|
|
21388
21388
|
}, undefined>, undefined>;
|
|
21389
|
-
declare const LedgerArtifactInsertSchema:
|
|
21389
|
+
declare const LedgerArtifactInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
21390
21390
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
21391
21391
|
name: "created_at";
|
|
21392
21392
|
tableName: "ledger_artifacts";
|
|
@@ -21721,7 +21721,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
21721
21721
|
}, {}, {
|
|
21722
21722
|
length: 256;
|
|
21723
21723
|
}>;
|
|
21724
|
-
},
|
|
21724
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
21725
21725
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
21726
21726
|
name: "created_at";
|
|
21727
21727
|
tableName: "ledger_artifacts";
|
|
@@ -22056,7 +22056,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
22056
22056
|
}, {}, {
|
|
22057
22057
|
length: 256;
|
|
22058
22058
|
}>;
|
|
22059
|
-
}, "id" | "
|
|
22059
|
+
}, "id" | "createdAt" | "name" | "updatedAt" | "projectId" | "tenantId" | "description" | "type" | "metadata" | "toolCallId" | "contextId" | "visibility" | "taskId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
22060
22060
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
22061
22061
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22062
22062
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -22066,12 +22066,12 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
22066
22066
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22067
22067
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
22068
22068
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
22069
|
-
parts: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22070
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22069
|
+
parts: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
22070
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
22071
22071
|
summary: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
22072
|
-
mime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22072
|
+
mime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
22073
22073
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
22074
|
-
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22074
|
+
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
22075
22075
|
derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
22076
22076
|
projectId: z.ZodOptional<z.ZodString>;
|
|
22077
22077
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
@@ -22089,12 +22089,12 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
22089
22089
|
type: z.ZodString;
|
|
22090
22090
|
name: z.ZodNullable<z.ZodString>;
|
|
22091
22091
|
description: z.ZodNullable<z.ZodString>;
|
|
22092
|
-
parts: z.ZodNullable<z.ZodType<
|
|
22093
|
-
metadata: z.ZodNullable<z.ZodType<
|
|
22092
|
+
parts: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
22093
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
22094
22094
|
summary: z.ZodNullable<z.ZodString>;
|
|
22095
|
-
mime: z.ZodNullable<z.ZodType<
|
|
22095
|
+
mime: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
22096
22096
|
visibility: z.ZodNullable<z.ZodString>;
|
|
22097
|
-
allowedAgents: z.ZodNullable<z.ZodType<
|
|
22097
|
+
allowedAgents: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
22098
22098
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
22099
22099
|
projectId: z.ZodString;
|
|
22100
22100
|
tenantId: z.ZodString;
|
|
@@ -22109,12 +22109,12 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
22109
22109
|
type: z.ZodOptional<z.ZodString>;
|
|
22110
22110
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22111
22111
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22112
|
-
parts: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22113
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22112
|
+
parts: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22113
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22114
22114
|
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22115
|
-
mime: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22115
|
+
mime: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22116
22116
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22117
|
-
allowedAgents: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22117
|
+
allowedAgents: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22118
22118
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22119
22119
|
projectId: z.ZodString;
|
|
22120
22120
|
tenantId: z.ZodString;
|
|
@@ -22122,20 +22122,20 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
22122
22122
|
}>, z.core.$strip>;
|
|
22123
22123
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
22124
22124
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22125
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22125
22126
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22127
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22126
22128
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22127
22129
|
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22128
|
-
|
|
22129
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22130
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
22130
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
22131
22131
|
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22132
|
-
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22133
22132
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22134
22133
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22135
|
-
|
|
22134
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22135
|
+
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
22136
22136
|
summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22137
|
-
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22138
|
-
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22137
|
+
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
22138
|
+
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
22139
22139
|
derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22140
22140
|
}, z.core.$strip>;
|
|
22141
22141
|
declare const StatusComponentSchema: z.ZodObject<{
|
|
@@ -22202,9 +22202,10 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
22202
22202
|
}, z.core.$strip>;
|
|
22203
22203
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
22204
22204
|
id: z.ZodString;
|
|
22205
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22205
22206
|
name: z.ZodString;
|
|
22207
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22206
22208
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22207
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
22208
22209
|
models: z.ZodOptional<z.ZodObject<{
|
|
22209
22210
|
base: z.ZodOptional<z.ZodObject<{
|
|
22210
22211
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -22228,8 +22229,7 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
22228
22229
|
}, {
|
|
22229
22230
|
stepCountIs?: number | undefined;
|
|
22230
22231
|
}>>>>;
|
|
22231
|
-
|
|
22232
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22232
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
22233
22233
|
type: z.ZodLiteral<"internal">;
|
|
22234
22234
|
canUse: z.ZodArray<z.ZodObject<{
|
|
22235
22235
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -22255,18 +22255,19 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
22255
22255
|
}, z.core.$strip>]>>>;
|
|
22256
22256
|
}, z.core.$strip>;
|
|
22257
22257
|
declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
22258
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22258
22259
|
name: z.ZodString;
|
|
22260
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22259
22261
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22260
22262
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22261
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
22262
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22263
22263
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22264
22264
|
id: z.ZodString;
|
|
22265
22265
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22266
22266
|
id: z.ZodString;
|
|
22267
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22267
22268
|
name: z.ZodString;
|
|
22269
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22268
22270
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22269
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
22270
22271
|
models: z.ZodOptional<z.ZodObject<{
|
|
22271
22272
|
base: z.ZodOptional<z.ZodObject<{
|
|
22272
22273
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -22290,8 +22291,7 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
22290
22291
|
}, {
|
|
22291
22292
|
stepCountIs?: number | undefined;
|
|
22292
22293
|
}>>>>;
|
|
22293
|
-
|
|
22294
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22294
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
22295
22295
|
type: z.ZodLiteral<"internal">;
|
|
22296
22296
|
canUse: z.ZodArray<z.ZodObject<{
|
|
22297
22297
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -22394,17 +22394,17 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
22394
22394
|
executeCode: z.ZodString;
|
|
22395
22395
|
}, z.core.$strip>>>;
|
|
22396
22396
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22397
|
-
name: z.ZodString;
|
|
22398
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22399
22397
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22398
|
+
name: z.ZodString;
|
|
22400
22399
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22400
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22401
22401
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
22402
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22403
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22402
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22403
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22404
22404
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22405
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22405
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22406
22406
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22407
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22407
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22408
22408
|
id: z.ZodOptional<z.ZodString>;
|
|
22409
22409
|
}, z.core.$strip>>>;
|
|
22410
22410
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -22508,8 +22508,8 @@ declare const ProjectSelectSchema: z.ZodObject<{
|
|
|
22508
22508
|
declare const ProjectInsertSchema: z.ZodObject<{
|
|
22509
22509
|
id: z.ZodString;
|
|
22510
22510
|
name: z.ZodString;
|
|
22511
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22512
22511
|
tenantId: z.ZodString;
|
|
22512
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22513
22513
|
models: z.ZodObject<{
|
|
22514
22514
|
base: z.ZodObject<{
|
|
22515
22515
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -22559,7 +22559,9 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
22559
22559
|
}>;
|
|
22560
22560
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
22561
22561
|
id: z.ZodString;
|
|
22562
|
+
createdAt: z.ZodString;
|
|
22562
22563
|
name: z.ZodString;
|
|
22564
|
+
updatedAt: z.ZodString;
|
|
22563
22565
|
description: z.ZodNullable<z.ZodString>;
|
|
22564
22566
|
models: z.ZodNullable<z.ZodObject<{
|
|
22565
22567
|
base: z.ZodObject<{
|
|
@@ -22579,8 +22581,6 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
22579
22581
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
22580
22582
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
22581
22583
|
}, z.core.$strip>>;
|
|
22582
|
-
createdAt: z.ZodString;
|
|
22583
|
-
updatedAt: z.ZodString;
|
|
22584
22584
|
}, {
|
|
22585
22585
|
out: {};
|
|
22586
22586
|
in: {};
|
|
@@ -22659,18 +22659,19 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22659
22659
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
22660
22660
|
}, z.core.$strip>>;
|
|
22661
22661
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22662
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22662
22663
|
name: z.ZodString;
|
|
22664
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22663
22665
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22664
22666
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22665
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
22666
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22667
22667
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22668
22668
|
id: z.ZodString;
|
|
22669
22669
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22670
22670
|
id: z.ZodString;
|
|
22671
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22671
22672
|
name: z.ZodString;
|
|
22673
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22672
22674
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22673
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
22674
22675
|
models: z.ZodOptional<z.ZodObject<{
|
|
22675
22676
|
base: z.ZodOptional<z.ZodObject<{
|
|
22676
22677
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -22694,8 +22695,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22694
22695
|
}, {
|
|
22695
22696
|
stepCountIs?: number | undefined;
|
|
22696
22697
|
}>>>>;
|
|
22697
|
-
|
|
22698
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22698
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
22699
22699
|
type: z.ZodLiteral<"internal">;
|
|
22700
22700
|
canUse: z.ZodArray<z.ZodObject<{
|
|
22701
22701
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -22798,17 +22798,17 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22798
22798
|
executeCode: z.ZodString;
|
|
22799
22799
|
}, z.core.$strip>>>;
|
|
22800
22800
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22801
|
-
name: z.ZodString;
|
|
22802
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22803
22801
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22802
|
+
name: z.ZodString;
|
|
22804
22803
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22804
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22805
22805
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
22806
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22807
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22806
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22807
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22808
22808
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22809
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22809
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22810
22810
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22811
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22811
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22812
22812
|
id: z.ZodOptional<z.ZodString>;
|
|
22813
22813
|
}, z.core.$strip>>>;
|
|
22814
22814
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -22984,11 +22984,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22984
22984
|
}, z.core.$strip>>;
|
|
22985
22985
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22986
22986
|
id: z.ZodString;
|
|
22987
|
-
name: z.ZodString;
|
|
22988
22987
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22988
|
+
name: z.ZodString;
|
|
22989
22989
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22990
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22991
22990
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22991
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22992
22992
|
credentialStoreId: z.ZodString;
|
|
22993
22993
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22994
22994
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -23006,9 +23006,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
23006
23006
|
}>;
|
|
23007
23007
|
declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
23008
23008
|
id: z.ZodString;
|
|
23009
|
+
createdAt: z.ZodString;
|
|
23009
23010
|
name: z.ZodString;
|
|
23011
|
+
updatedAt: z.ZodString;
|
|
23010
23012
|
description: z.ZodNullable<z.ZodString>;
|
|
23011
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
23012
23013
|
models: z.ZodNullable<z.ZodType<{
|
|
23013
23014
|
base?: {
|
|
23014
23015
|
model?: string | undefined;
|
|
@@ -23071,8 +23072,7 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
23071
23072
|
}, {
|
|
23072
23073
|
stepCountIs?: number | undefined;
|
|
23073
23074
|
}>>>;
|
|
23074
|
-
|
|
23075
|
-
updatedAt: z.ZodString;
|
|
23075
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
23076
23076
|
type: z.ZodLiteral<"internal">;
|
|
23077
23077
|
canUse: z.ZodArray<z.ZodObject<{
|
|
23078
23078
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -23099,9 +23099,10 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
23099
23099
|
}, z.core.$strip>;
|
|
23100
23100
|
declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
23101
23101
|
id: z.ZodString;
|
|
23102
|
+
createdAt: z.ZodString;
|
|
23102
23103
|
name: z.ZodString;
|
|
23104
|
+
updatedAt: z.ZodString;
|
|
23103
23105
|
description: z.ZodNullable<z.ZodString>;
|
|
23104
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
23105
23106
|
models: z.ZodNullable<z.ZodType<{
|
|
23106
23107
|
base?: {
|
|
23107
23108
|
model?: string | undefined;
|
|
@@ -23164,8 +23165,7 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
23164
23165
|
}, {
|
|
23165
23166
|
stepCountIs?: number | undefined;
|
|
23166
23167
|
}>>>;
|
|
23167
|
-
|
|
23168
|
-
updatedAt: z.ZodString;
|
|
23168
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
23169
23169
|
type: z.ZodLiteral<"internal">;
|
|
23170
23170
|
canUse: z.ZodArray<z.ZodObject<{
|
|
23171
23171
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -23198,17 +23198,18 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
23198
23198
|
}, z.core.$strip>;
|
|
23199
23199
|
declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
23200
23200
|
id: z.ZodString;
|
|
23201
|
+
createdAt: z.ZodString;
|
|
23201
23202
|
name: z.ZodString;
|
|
23203
|
+
updatedAt: z.ZodString;
|
|
23202
23204
|
description: z.ZodNullable<z.ZodString>;
|
|
23203
23205
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
23204
|
-
createdAt: z.ZodString;
|
|
23205
|
-
updatedAt: z.ZodString;
|
|
23206
23206
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
23207
23207
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23208
23208
|
id: z.ZodString;
|
|
23209
|
+
createdAt: z.ZodString;
|
|
23209
23210
|
name: z.ZodString;
|
|
23211
|
+
updatedAt: z.ZodString;
|
|
23210
23212
|
description: z.ZodNullable<z.ZodString>;
|
|
23211
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
23212
23213
|
models: z.ZodNullable<z.ZodType<{
|
|
23213
23214
|
base?: {
|
|
23214
23215
|
model?: string | undefined;
|
|
@@ -23271,8 +23272,7 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
23271
23272
|
}, {
|
|
23272
23273
|
stepCountIs?: number | undefined;
|
|
23273
23274
|
}>>>;
|
|
23274
|
-
|
|
23275
|
-
updatedAt: z.ZodString;
|
|
23275
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
23276
23276
|
type: z.ZodLiteral<"internal">;
|
|
23277
23277
|
canUse: z.ZodArray<z.ZodObject<{
|
|
23278
23278
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -23344,11 +23344,11 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
23344
23344
|
}, z.core.$strip>>>;
|
|
23345
23345
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23346
23346
|
id: z.ZodString;
|
|
23347
|
-
name: z.ZodString;
|
|
23348
|
-
description: z.ZodNullable<z.ZodString>;
|
|
23349
|
-
agentId: z.ZodString;
|
|
23350
23347
|
createdAt: z.ZodString;
|
|
23348
|
+
name: z.ZodString;
|
|
23351
23349
|
updatedAt: z.ZodString;
|
|
23350
|
+
agentId: z.ZodString;
|
|
23351
|
+
description: z.ZodNullable<z.ZodString>;
|
|
23352
23352
|
functionId: z.ZodString;
|
|
23353
23353
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
23354
23354
|
}, z.core.$strip>>>;
|
|
@@ -23364,10 +23364,10 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
23364
23364
|
}>, z.core.$strip>>>;
|
|
23365
23365
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
23366
23366
|
id: z.ZodString;
|
|
23367
|
-
createdAt: z.ZodString;
|
|
23368
|
-
updatedAt: z.ZodString;
|
|
23369
23367
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
23370
23368
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
23369
|
+
createdAt: z.ZodString;
|
|
23370
|
+
updatedAt: z.ZodString;
|
|
23371
23371
|
}, z.core.$strip>>;
|
|
23372
23372
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
23373
23373
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -23405,11 +23405,11 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
23405
23405
|
}, z.core.$strip>;
|
|
23406
23406
|
declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
23407
23407
|
id: z.ZodString;
|
|
23408
|
+
createdAt: z.ZodString;
|
|
23408
23409
|
name: z.ZodString;
|
|
23410
|
+
updatedAt: z.ZodString;
|
|
23409
23411
|
description: z.ZodNullable<z.ZodString>;
|
|
23410
23412
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
23411
|
-
createdAt: z.ZodString;
|
|
23412
|
-
updatedAt: z.ZodString;
|
|
23413
23413
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
23414
23414
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
23415
23415
|
createdAt: z.ZodString;
|
|
@@ -23458,11 +23458,11 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
23458
23458
|
}, z.core.$strip>>>;
|
|
23459
23459
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23460
23460
|
id: z.ZodString;
|
|
23461
|
-
name: z.ZodString;
|
|
23462
|
-
description: z.ZodNullable<z.ZodString>;
|
|
23463
|
-
agentId: z.ZodString;
|
|
23464
23461
|
createdAt: z.ZodString;
|
|
23462
|
+
name: z.ZodString;
|
|
23465
23463
|
updatedAt: z.ZodString;
|
|
23464
|
+
agentId: z.ZodString;
|
|
23465
|
+
description: z.ZodNullable<z.ZodString>;
|
|
23466
23466
|
functionId: z.ZodString;
|
|
23467
23467
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
23468
23468
|
}, z.core.$strip>>>;
|
|
@@ -23478,10 +23478,10 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
23478
23478
|
}>, z.core.$strip>>>;
|
|
23479
23479
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
23480
23480
|
id: z.ZodString;
|
|
23481
|
-
createdAt: z.ZodString;
|
|
23482
|
-
updatedAt: z.ZodString;
|
|
23483
23481
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
23484
23482
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
23483
|
+
createdAt: z.ZodString;
|
|
23484
|
+
updatedAt: z.ZodString;
|
|
23485
23485
|
}, z.core.$strip>>;
|
|
23486
23486
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
23487
23487
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -23518,9 +23518,10 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
23518
23518
|
prompt: z.ZodNullable<z.ZodString>;
|
|
23519
23519
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23520
23520
|
id: z.ZodString;
|
|
23521
|
+
createdAt: z.ZodString;
|
|
23521
23522
|
name: z.ZodString;
|
|
23523
|
+
updatedAt: z.ZodString;
|
|
23522
23524
|
description: z.ZodNullable<z.ZodString>;
|
|
23523
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
23524
23525
|
models: z.ZodNullable<z.ZodType<{
|
|
23525
23526
|
base?: {
|
|
23526
23527
|
model?: string | undefined;
|
|
@@ -23583,8 +23584,7 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
23583
23584
|
}, {
|
|
23584
23585
|
stepCountIs?: number | undefined;
|
|
23585
23586
|
}>>>;
|
|
23586
|
-
|
|
23587
|
-
updatedAt: z.ZodString;
|
|
23587
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
23588
23588
|
type: z.ZodLiteral<"internal">;
|
|
23589
23589
|
canUse: z.ZodArray<z.ZodObject<{
|
|
23590
23590
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -23618,7 +23618,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
23618
23618
|
}, z.core.$strip>;
|
|
23619
23619
|
declare const FullProjectSelectSchema: z.ZodObject<{
|
|
23620
23620
|
id: z.ZodString;
|
|
23621
|
+
createdAt: z.ZodString;
|
|
23621
23622
|
name: z.ZodString;
|
|
23623
|
+
updatedAt: z.ZodString;
|
|
23622
23624
|
description: z.ZodNullable<z.ZodString>;
|
|
23623
23625
|
models: z.ZodNullable<z.ZodObject<{
|
|
23624
23626
|
base: z.ZodObject<{
|
|
@@ -23638,21 +23640,20 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23638
23640
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
23639
23641
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
23640
23642
|
}, z.core.$strip>>;
|
|
23641
|
-
createdAt: z.ZodString;
|
|
23642
|
-
updatedAt: z.ZodString;
|
|
23643
23643
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23644
23644
|
id: z.ZodString;
|
|
23645
|
+
createdAt: z.ZodString;
|
|
23645
23646
|
name: z.ZodString;
|
|
23647
|
+
updatedAt: z.ZodString;
|
|
23646
23648
|
description: z.ZodNullable<z.ZodString>;
|
|
23647
23649
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
23648
|
-
createdAt: z.ZodString;
|
|
23649
|
-
updatedAt: z.ZodString;
|
|
23650
23650
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
23651
23651
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23652
23652
|
id: z.ZodString;
|
|
23653
|
+
createdAt: z.ZodString;
|
|
23653
23654
|
name: z.ZodString;
|
|
23655
|
+
updatedAt: z.ZodString;
|
|
23654
23656
|
description: z.ZodNullable<z.ZodString>;
|
|
23655
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
23656
23657
|
models: z.ZodNullable<z.ZodType<{
|
|
23657
23658
|
base?: {
|
|
23658
23659
|
model?: string | undefined;
|
|
@@ -23715,8 +23716,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23715
23716
|
}, {
|
|
23716
23717
|
stepCountIs?: number | undefined;
|
|
23717
23718
|
}>>>;
|
|
23718
|
-
|
|
23719
|
-
updatedAt: z.ZodString;
|
|
23719
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
23720
23720
|
type: z.ZodLiteral<"internal">;
|
|
23721
23721
|
canUse: z.ZodArray<z.ZodObject<{
|
|
23722
23722
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -23788,11 +23788,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23788
23788
|
}, z.core.$strip>>>;
|
|
23789
23789
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23790
23790
|
id: z.ZodString;
|
|
23791
|
-
name: z.ZodString;
|
|
23792
|
-
description: z.ZodNullable<z.ZodString>;
|
|
23793
|
-
agentId: z.ZodString;
|
|
23794
23791
|
createdAt: z.ZodString;
|
|
23792
|
+
name: z.ZodString;
|
|
23795
23793
|
updatedAt: z.ZodString;
|
|
23794
|
+
agentId: z.ZodString;
|
|
23795
|
+
description: z.ZodNullable<z.ZodString>;
|
|
23796
23796
|
functionId: z.ZodString;
|
|
23797
23797
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
23798
23798
|
}, z.core.$strip>>>;
|
|
@@ -23808,10 +23808,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23808
23808
|
}>, z.core.$strip>>>;
|
|
23809
23809
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
23810
23810
|
id: z.ZodString;
|
|
23811
|
-
createdAt: z.ZodString;
|
|
23812
|
-
updatedAt: z.ZodString;
|
|
23813
23811
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
23814
23812
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
23813
|
+
createdAt: z.ZodString;
|
|
23814
|
+
updatedAt: z.ZodString;
|
|
23815
23815
|
}, z.core.$strip>>;
|
|
23816
23816
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
23817
23817
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -23878,11 +23878,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23878
23878
|
}>, z.core.$strip>>;
|
|
23879
23879
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23880
23880
|
id: z.ZodString;
|
|
23881
|
-
name: z.ZodString;
|
|
23882
|
-
description: z.ZodNullable<z.ZodString>;
|
|
23883
|
-
agentId: z.ZodString;
|
|
23884
23881
|
createdAt: z.ZodString;
|
|
23882
|
+
name: z.ZodString;
|
|
23885
23883
|
updatedAt: z.ZodString;
|
|
23884
|
+
agentId: z.ZodString;
|
|
23885
|
+
description: z.ZodNullable<z.ZodString>;
|
|
23886
23886
|
functionId: z.ZodString;
|
|
23887
23887
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
23888
23888
|
}, z.core.$strip>>>;
|
|
@@ -23970,11 +23970,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23970
23970
|
}, z.core.$strip>>;
|
|
23971
23971
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23972
23972
|
id: z.ZodString;
|
|
23973
|
-
name: z.ZodString;
|
|
23974
23973
|
createdAt: z.ZodString;
|
|
23974
|
+
name: z.ZodString;
|
|
23975
23975
|
updatedAt: z.ZodString;
|
|
23976
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
23977
23976
|
userId: z.ZodNullable<z.ZodString>;
|
|
23977
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
23978
23978
|
credentialStoreId: z.ZodString;
|
|
23979
23979
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
23980
23980
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
@@ -23983,7 +23983,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23983
23983
|
readonly keychain: "keychain";
|
|
23984
23984
|
readonly nango: "nango";
|
|
23985
23985
|
}>;
|
|
23986
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
23986
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
23987
23987
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
23988
23988
|
name: "created_at";
|
|
23989
23989
|
tableName: "tools";
|
|
@@ -24263,7 +24263,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
24263
24263
|
}, {}, {
|
|
24264
24264
|
length: 256;
|
|
24265
24265
|
}>;
|
|
24266
|
-
},
|
|
24266
|
+
}, drizzle_zod15.BuildRefine<{
|
|
24267
24267
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
24268
24268
|
name: "created_at";
|
|
24269
24269
|
tableName: "tools";
|
|
@@ -24565,7 +24565,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
24565
24565
|
}>;
|
|
24566
24566
|
declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
24567
24567
|
id: z.ZodString;
|
|
24568
|
+
createdAt: z.ZodString;
|
|
24568
24569
|
name: z.ZodString;
|
|
24570
|
+
updatedAt: z.ZodString;
|
|
24569
24571
|
description: z.ZodNullable<z.ZodString>;
|
|
24570
24572
|
models: z.ZodNullable<z.ZodObject<{
|
|
24571
24573
|
base: z.ZodObject<{
|
|
@@ -24585,8 +24587,6 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
24585
24587
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
24586
24588
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
24587
24589
|
}, z.core.$strip>>;
|
|
24588
|
-
createdAt: z.ZodString;
|
|
24589
|
-
updatedAt: z.ZodString;
|
|
24590
24590
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
24591
24591
|
createdAt: z.ZodString;
|
|
24592
24592
|
updatedAt: z.ZodString;
|
|
@@ -24618,11 +24618,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
24618
24618
|
}>, z.core.$strip>>;
|
|
24619
24619
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24620
24620
|
id: z.ZodString;
|
|
24621
|
-
name: z.ZodString;
|
|
24622
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24623
|
-
agentId: z.ZodString;
|
|
24624
24621
|
createdAt: z.ZodString;
|
|
24622
|
+
name: z.ZodString;
|
|
24625
24623
|
updatedAt: z.ZodString;
|
|
24624
|
+
agentId: z.ZodString;
|
|
24625
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24626
24626
|
functionId: z.ZodString;
|
|
24627
24627
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
24628
24628
|
}, z.core.$strip>>>;
|
|
@@ -24710,11 +24710,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
24710
24710
|
}, z.core.$strip>>;
|
|
24711
24711
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24712
24712
|
id: z.ZodString;
|
|
24713
|
-
name: z.ZodString;
|
|
24714
24713
|
createdAt: z.ZodString;
|
|
24714
|
+
name: z.ZodString;
|
|
24715
24715
|
updatedAt: z.ZodString;
|
|
24716
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
24717
24716
|
userId: z.ZodNullable<z.ZodString>;
|
|
24717
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
24718
24718
|
credentialStoreId: z.ZodString;
|
|
24719
24719
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
24720
24720
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
@@ -24723,7 +24723,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
24723
24723
|
readonly keychain: "keychain";
|
|
24724
24724
|
readonly nango: "nango";
|
|
24725
24725
|
}>;
|
|
24726
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
24726
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
24727
24727
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
24728
24728
|
name: "created_at";
|
|
24729
24729
|
tableName: "tools";
|
|
@@ -25003,7 +25003,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25003
25003
|
}, {}, {
|
|
25004
25004
|
length: 256;
|
|
25005
25005
|
}>;
|
|
25006
|
-
},
|
|
25006
|
+
}, drizzle_zod15.BuildRefine<{
|
|
25007
25007
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
25008
25008
|
name: "created_at";
|
|
25009
25009
|
tableName: "tools";
|
|
@@ -25301,11 +25301,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25301
25301
|
}, z.core.$strip>>>;
|
|
25302
25302
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25303
25303
|
id: z.ZodString;
|
|
25304
|
+
createdAt: z.ZodString;
|
|
25304
25305
|
name: z.ZodString;
|
|
25306
|
+
updatedAt: z.ZodString;
|
|
25305
25307
|
description: z.ZodNullable<z.ZodString>;
|
|
25306
25308
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25307
|
-
createdAt: z.ZodString;
|
|
25308
|
-
updatedAt: z.ZodString;
|
|
25309
25309
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25310
25310
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
25311
25311
|
createdAt: z.ZodString;
|
|
@@ -25354,11 +25354,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25354
25354
|
}, z.core.$strip>>>;
|
|
25355
25355
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25356
25356
|
id: z.ZodString;
|
|
25357
|
-
name: z.ZodString;
|
|
25358
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25359
|
-
agentId: z.ZodString;
|
|
25360
25357
|
createdAt: z.ZodString;
|
|
25358
|
+
name: z.ZodString;
|
|
25361
25359
|
updatedAt: z.ZodString;
|
|
25360
|
+
agentId: z.ZodString;
|
|
25361
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25362
25362
|
functionId: z.ZodString;
|
|
25363
25363
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
25364
25364
|
}, z.core.$strip>>>;
|
|
@@ -25374,10 +25374,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25374
25374
|
}>, z.core.$strip>>>;
|
|
25375
25375
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
25376
25376
|
id: z.ZodString;
|
|
25377
|
-
createdAt: z.ZodString;
|
|
25378
|
-
updatedAt: z.ZodString;
|
|
25379
25377
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
25380
25378
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
25379
|
+
createdAt: z.ZodString;
|
|
25380
|
+
updatedAt: z.ZodString;
|
|
25381
25381
|
}, z.core.$strip>>;
|
|
25382
25382
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
25383
25383
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -25414,9 +25414,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25414
25414
|
prompt: z.ZodNullable<z.ZodString>;
|
|
25415
25415
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25416
25416
|
id: z.ZodString;
|
|
25417
|
+
createdAt: z.ZodString;
|
|
25417
25418
|
name: z.ZodString;
|
|
25419
|
+
updatedAt: z.ZodString;
|
|
25418
25420
|
description: z.ZodNullable<z.ZodString>;
|
|
25419
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25420
25421
|
models: z.ZodNullable<z.ZodType<{
|
|
25421
25422
|
base?: {
|
|
25422
25423
|
model?: string | undefined;
|
|
@@ -25479,8 +25480,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25479
25480
|
}, {
|
|
25480
25481
|
stepCountIs?: number | undefined;
|
|
25481
25482
|
}>>>;
|
|
25482
|
-
|
|
25483
|
-
updatedAt: z.ZodString;
|
|
25483
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25484
25484
|
type: z.ZodLiteral<"internal">;
|
|
25485
25485
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25486
25486
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25519,7 +25519,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25519
25519
|
declare const ProjectResponse: z.ZodObject<{
|
|
25520
25520
|
data: z.ZodObject<{
|
|
25521
25521
|
id: z.ZodString;
|
|
25522
|
+
createdAt: z.ZodString;
|
|
25522
25523
|
name: z.ZodString;
|
|
25524
|
+
updatedAt: z.ZodString;
|
|
25523
25525
|
description: z.ZodNullable<z.ZodString>;
|
|
25524
25526
|
models: z.ZodNullable<z.ZodObject<{
|
|
25525
25527
|
base: z.ZodObject<{
|
|
@@ -25539,8 +25541,6 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
25539
25541
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
25540
25542
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
25541
25543
|
}, z.core.$strip>>;
|
|
25542
|
-
createdAt: z.ZodString;
|
|
25543
|
-
updatedAt: z.ZodString;
|
|
25544
25544
|
}, {
|
|
25545
25545
|
out: {};
|
|
25546
25546
|
in: {};
|
|
@@ -25802,19 +25802,19 @@ declare const ExternalAgentResponse: z.ZodObject<{
|
|
|
25802
25802
|
declare const ContextConfigResponse: z.ZodObject<{
|
|
25803
25803
|
data: z.ZodObject<{
|
|
25804
25804
|
id: z.ZodString;
|
|
25805
|
-
createdAt: z.ZodString;
|
|
25806
|
-
updatedAt: z.ZodString;
|
|
25807
25805
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
25808
25806
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
25807
|
+
createdAt: z.ZodString;
|
|
25808
|
+
updatedAt: z.ZodString;
|
|
25809
25809
|
}, z.core.$strip>;
|
|
25810
25810
|
}, z.core.$strip>;
|
|
25811
25811
|
declare const ApiKeyResponse: z.ZodObject<{
|
|
25812
25812
|
data: z.ZodObject<{
|
|
25813
25813
|
id: z.ZodString;
|
|
25814
|
-
name: z.ZodNullable<z.ZodString>;
|
|
25815
|
-
agentId: z.ZodString;
|
|
25816
25814
|
createdAt: z.ZodString;
|
|
25815
|
+
name: z.ZodNullable<z.ZodString>;
|
|
25817
25816
|
updatedAt: z.ZodString;
|
|
25817
|
+
agentId: z.ZodString;
|
|
25818
25818
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
25819
25819
|
publicId: z.ZodString;
|
|
25820
25820
|
keyPrefix: z.ZodString;
|
|
@@ -25827,11 +25827,11 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
25827
25827
|
declare const CredentialReferenceResponse: z.ZodObject<{
|
|
25828
25828
|
data: z.ZodObject<{
|
|
25829
25829
|
id: z.ZodString;
|
|
25830
|
-
name: z.ZodString;
|
|
25831
25830
|
createdAt: z.ZodString;
|
|
25831
|
+
name: z.ZodString;
|
|
25832
25832
|
updatedAt: z.ZodString;
|
|
25833
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
25834
25833
|
userId: z.ZodNullable<z.ZodString>;
|
|
25834
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
25835
25835
|
credentialStoreId: z.ZodString;
|
|
25836
25836
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
25837
25837
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
@@ -25840,7 +25840,7 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
25840
25840
|
readonly keychain: "keychain";
|
|
25841
25841
|
readonly nango: "nango";
|
|
25842
25842
|
}>;
|
|
25843
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
25843
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
25844
25844
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
25845
25845
|
name: "created_at";
|
|
25846
25846
|
tableName: "tools";
|
|
@@ -26120,7 +26120,7 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
26120
26120
|
}, {}, {
|
|
26121
26121
|
length: 256;
|
|
26122
26122
|
}>;
|
|
26123
|
-
},
|
|
26123
|
+
}, drizzle_zod15.BuildRefine<{
|
|
26124
26124
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
26125
26125
|
name: "created_at";
|
|
26126
26126
|
tableName: "tools";
|
|
@@ -26432,11 +26432,11 @@ declare const FunctionResponse: z.ZodObject<{
|
|
|
26432
26432
|
declare const FunctionToolResponse: z.ZodObject<{
|
|
26433
26433
|
data: z.ZodObject<{
|
|
26434
26434
|
id: z.ZodString;
|
|
26435
|
-
name: z.ZodString;
|
|
26436
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26437
|
-
agentId: z.ZodString;
|
|
26438
26435
|
createdAt: z.ZodString;
|
|
26436
|
+
name: z.ZodString;
|
|
26439
26437
|
updatedAt: z.ZodString;
|
|
26438
|
+
agentId: z.ZodString;
|
|
26439
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26440
26440
|
functionId: z.ZodString;
|
|
26441
26441
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26442
26442
|
}, z.core.$strip>;
|
|
@@ -26446,7 +26446,7 @@ declare const SubAgentFunctionToolRelationResponse: z.ZodObject<{
|
|
|
26446
26446
|
createdAt: z.ZodString;
|
|
26447
26447
|
updatedAt: z.ZodString;
|
|
26448
26448
|
functionToolId: z.ZodString;
|
|
26449
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
26449
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
26450
26450
|
subAgentId: z.ZodString;
|
|
26451
26451
|
agentId: z.ZodString;
|
|
26452
26452
|
projectId: z.ZodString;
|
|
@@ -26522,9 +26522,9 @@ declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
|
26522
26522
|
createdAt: z.ZodString;
|
|
26523
26523
|
updatedAt: z.ZodString;
|
|
26524
26524
|
toolId: z.ZodString;
|
|
26525
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
26526
|
-
headers: z.ZodNullable<z.ZodType<
|
|
26527
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
26525
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
26526
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
26527
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
26528
26528
|
subAgentId: z.ZodString;
|
|
26529
26529
|
agentId: z.ZodString;
|
|
26530
26530
|
projectId: z.ZodString;
|
|
@@ -26594,10 +26594,10 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
26594
26594
|
createdAt: z.ZodString;
|
|
26595
26595
|
updatedAt: z.ZodString;
|
|
26596
26596
|
enabled: z.ZodBoolean;
|
|
26597
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
26598
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
26597
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
26598
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
26599
26599
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
26600
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
26600
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
26601
26601
|
name: z.ZodString;
|
|
26602
26602
|
description: z.ZodNullable<z.ZodString>;
|
|
26603
26603
|
agentId: z.ZodString;
|
|
@@ -26620,8 +26620,8 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
26620
26620
|
signature: z.ZodObject<{
|
|
26621
26621
|
source: z.ZodEnum<{
|
|
26622
26622
|
query: "query";
|
|
26623
|
-
header: "header";
|
|
26624
26623
|
body: "body";
|
|
26624
|
+
header: "header";
|
|
26625
26625
|
}>;
|
|
26626
26626
|
key: z.ZodString;
|
|
26627
26627
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -26630,8 +26630,8 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
26630
26630
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
26631
26631
|
source: z.ZodEnum<{
|
|
26632
26632
|
literal: "literal";
|
|
26633
|
-
header: "header";
|
|
26634
26633
|
body: "body";
|
|
26634
|
+
header: "header";
|
|
26635
26635
|
}>;
|
|
26636
26636
|
key: z.ZodOptional<z.ZodString>;
|
|
26637
26637
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -26657,8 +26657,8 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
26657
26657
|
triggerId: z.ZodString;
|
|
26658
26658
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
26659
26659
|
status: z.ZodString;
|
|
26660
|
-
requestPayload: z.ZodType<
|
|
26661
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
26660
|
+
requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
26661
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
26662
26662
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
26663
26663
|
createdAt: z.ZodString;
|
|
26664
26664
|
agentId: z.ZodString;
|
|
@@ -26670,7 +26670,9 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
26670
26670
|
declare const ProjectListResponse: z.ZodObject<{
|
|
26671
26671
|
data: z.ZodArray<z.ZodObject<{
|
|
26672
26672
|
id: z.ZodString;
|
|
26673
|
+
createdAt: z.ZodString;
|
|
26673
26674
|
name: z.ZodString;
|
|
26675
|
+
updatedAt: z.ZodString;
|
|
26674
26676
|
description: z.ZodNullable<z.ZodString>;
|
|
26675
26677
|
models: z.ZodNullable<z.ZodObject<{
|
|
26676
26678
|
base: z.ZodObject<{
|
|
@@ -26690,8 +26692,6 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
26690
26692
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
26691
26693
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
26692
26694
|
}, z.core.$strip>>;
|
|
26693
|
-
createdAt: z.ZodString;
|
|
26694
|
-
updatedAt: z.ZodString;
|
|
26695
26695
|
}, {
|
|
26696
26696
|
out: {};
|
|
26697
26697
|
in: {};
|
|
@@ -26983,10 +26983,10 @@ declare const ExternalAgentListResponse: z.ZodObject<{
|
|
|
26983
26983
|
declare const ContextConfigListResponse: z.ZodObject<{
|
|
26984
26984
|
data: z.ZodArray<z.ZodObject<{
|
|
26985
26985
|
id: z.ZodString;
|
|
26986
|
-
createdAt: z.ZodString;
|
|
26987
|
-
updatedAt: z.ZodString;
|
|
26988
26986
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
26989
26987
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
26988
|
+
createdAt: z.ZodString;
|
|
26989
|
+
updatedAt: z.ZodString;
|
|
26990
26990
|
}, z.core.$strip>>;
|
|
26991
26991
|
pagination: z.ZodObject<{
|
|
26992
26992
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -26998,10 +26998,10 @@ declare const ContextConfigListResponse: z.ZodObject<{
|
|
|
26998
26998
|
declare const ApiKeyListResponse: z.ZodObject<{
|
|
26999
26999
|
data: z.ZodArray<z.ZodObject<{
|
|
27000
27000
|
id: z.ZodString;
|
|
27001
|
-
name: z.ZodNullable<z.ZodString>;
|
|
27002
|
-
agentId: z.ZodString;
|
|
27003
27001
|
createdAt: z.ZodString;
|
|
27002
|
+
name: z.ZodNullable<z.ZodString>;
|
|
27004
27003
|
updatedAt: z.ZodString;
|
|
27004
|
+
agentId: z.ZodString;
|
|
27005
27005
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
27006
27006
|
publicId: z.ZodString;
|
|
27007
27007
|
keyPrefix: z.ZodString;
|
|
@@ -27020,11 +27020,11 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
27020
27020
|
declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
27021
27021
|
data: z.ZodArray<z.ZodObject<{
|
|
27022
27022
|
id: z.ZodString;
|
|
27023
|
-
name: z.ZodString;
|
|
27024
27023
|
createdAt: z.ZodString;
|
|
27024
|
+
name: z.ZodString;
|
|
27025
27025
|
updatedAt: z.ZodString;
|
|
27026
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
27027
27026
|
userId: z.ZodNullable<z.ZodString>;
|
|
27027
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
27028
27028
|
credentialStoreId: z.ZodString;
|
|
27029
27029
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27030
27030
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
@@ -27033,7 +27033,7 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
27033
27033
|
readonly keychain: "keychain";
|
|
27034
27034
|
readonly nango: "nango";
|
|
27035
27035
|
}>;
|
|
27036
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
27036
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
27037
27037
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
27038
27038
|
name: "created_at";
|
|
27039
27039
|
tableName: "tools";
|
|
@@ -27313,7 +27313,7 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
27313
27313
|
}, {}, {
|
|
27314
27314
|
length: 256;
|
|
27315
27315
|
}>;
|
|
27316
|
-
},
|
|
27316
|
+
}, drizzle_zod15.BuildRefine<{
|
|
27317
27317
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
27318
27318
|
name: "created_at";
|
|
27319
27319
|
tableName: "tools";
|
|
@@ -27637,11 +27637,11 @@ declare const FunctionListResponse: z.ZodObject<{
|
|
|
27637
27637
|
declare const FunctionToolListResponse: z.ZodObject<{
|
|
27638
27638
|
data: z.ZodArray<z.ZodObject<{
|
|
27639
27639
|
id: z.ZodString;
|
|
27640
|
-
name: z.ZodString;
|
|
27641
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27642
|
-
agentId: z.ZodString;
|
|
27643
27640
|
createdAt: z.ZodString;
|
|
27641
|
+
name: z.ZodString;
|
|
27644
27642
|
updatedAt: z.ZodString;
|
|
27643
|
+
agentId: z.ZodString;
|
|
27644
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27645
27645
|
functionId: z.ZodString;
|
|
27646
27646
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
27647
27647
|
}, z.core.$strip>>;
|
|
@@ -27657,7 +27657,7 @@ declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
|
|
|
27657
27657
|
createdAt: z.ZodString;
|
|
27658
27658
|
updatedAt: z.ZodString;
|
|
27659
27659
|
functionToolId: z.ZodString;
|
|
27660
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
27660
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27661
27661
|
subAgentId: z.ZodString;
|
|
27662
27662
|
agentId: z.ZodString;
|
|
27663
27663
|
projectId: z.ZodString;
|
|
@@ -27757,9 +27757,9 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
|
27757
27757
|
createdAt: z.ZodString;
|
|
27758
27758
|
updatedAt: z.ZodString;
|
|
27759
27759
|
toolId: z.ZodString;
|
|
27760
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
27761
|
-
headers: z.ZodNullable<z.ZodType<
|
|
27762
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
27760
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27761
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27762
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27763
27763
|
subAgentId: z.ZodString;
|
|
27764
27764
|
agentId: z.ZodString;
|
|
27765
27765
|
projectId: z.ZodString;
|
|
@@ -27847,10 +27847,10 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
27847
27847
|
createdAt: z.ZodString;
|
|
27848
27848
|
updatedAt: z.ZodString;
|
|
27849
27849
|
enabled: z.ZodBoolean;
|
|
27850
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
27851
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
27850
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27851
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27852
27852
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
27853
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
27853
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27854
27854
|
name: z.ZodString;
|
|
27855
27855
|
description: z.ZodNullable<z.ZodString>;
|
|
27856
27856
|
agentId: z.ZodString;
|
|
@@ -27873,8 +27873,8 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
27873
27873
|
signature: z.ZodObject<{
|
|
27874
27874
|
source: z.ZodEnum<{
|
|
27875
27875
|
query: "query";
|
|
27876
|
-
header: "header";
|
|
27877
27876
|
body: "body";
|
|
27877
|
+
header: "header";
|
|
27878
27878
|
}>;
|
|
27879
27879
|
key: z.ZodString;
|
|
27880
27880
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -27883,8 +27883,8 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
27883
27883
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
27884
27884
|
source: z.ZodEnum<{
|
|
27885
27885
|
literal: "literal";
|
|
27886
|
-
header: "header";
|
|
27887
27886
|
body: "body";
|
|
27887
|
+
header: "header";
|
|
27888
27888
|
}>;
|
|
27889
27889
|
key: z.ZodOptional<z.ZodString>;
|
|
27890
27890
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -27916,8 +27916,8 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
27916
27916
|
triggerId: z.ZodString;
|
|
27917
27917
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
27918
27918
|
status: z.ZodString;
|
|
27919
|
-
requestPayload: z.ZodType<
|
|
27920
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
27919
|
+
requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
27920
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27921
27921
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
27922
27922
|
createdAt: z.ZodString;
|
|
27923
27923
|
agentId: z.ZodString;
|
|
@@ -27935,15 +27935,15 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
27935
27935
|
declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
27936
27936
|
data: z.ZodObject<{
|
|
27937
27937
|
id: z.ZodString;
|
|
27938
|
-
name: z.ZodString;
|
|
27939
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27940
27938
|
createdAt: z.ZodString;
|
|
27939
|
+
name: z.ZodString;
|
|
27941
27940
|
updatedAt: z.ZodString;
|
|
27941
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27942
27942
|
enabled: z.ZodBoolean;
|
|
27943
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
27944
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
27943
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27944
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27945
27945
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
27946
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
27946
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27947
27947
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27948
27948
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
27949
27949
|
algorithm: z.ZodEnum<{
|
|
@@ -27960,8 +27960,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
27960
27960
|
signature: z.ZodObject<{
|
|
27961
27961
|
source: z.ZodEnum<{
|
|
27962
27962
|
query: "query";
|
|
27963
|
-
header: "header";
|
|
27964
27963
|
body: "body";
|
|
27964
|
+
header: "header";
|
|
27965
27965
|
}>;
|
|
27966
27966
|
key: z.ZodString;
|
|
27967
27967
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -27970,8 +27970,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
27970
27970
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
27971
27971
|
source: z.ZodEnum<{
|
|
27972
27972
|
literal: "literal";
|
|
27973
|
-
header: "header";
|
|
27974
27973
|
body: "body";
|
|
27974
|
+
header: "header";
|
|
27975
27975
|
}>;
|
|
27976
27976
|
key: z.ZodOptional<z.ZodString>;
|
|
27977
27977
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -27996,15 +27996,15 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
27996
27996
|
declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
27997
27997
|
data: z.ZodArray<z.ZodObject<{
|
|
27998
27998
|
id: z.ZodString;
|
|
27999
|
-
name: z.ZodString;
|
|
28000
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28001
27999
|
createdAt: z.ZodString;
|
|
28000
|
+
name: z.ZodString;
|
|
28002
28001
|
updatedAt: z.ZodString;
|
|
28002
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28003
28003
|
enabled: z.ZodBoolean;
|
|
28004
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
28005
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
28004
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
28005
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
28006
28006
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
28007
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
28007
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
28008
28008
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28009
28009
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
28010
28010
|
algorithm: z.ZodEnum<{
|
|
@@ -28021,8 +28021,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
28021
28021
|
signature: z.ZodObject<{
|
|
28022
28022
|
source: z.ZodEnum<{
|
|
28023
28023
|
query: "query";
|
|
28024
|
-
header: "header";
|
|
28025
28024
|
body: "body";
|
|
28025
|
+
header: "header";
|
|
28026
28026
|
}>;
|
|
28027
28027
|
key: z.ZodString;
|
|
28028
28028
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -28031,8 +28031,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
28031
28031
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
28032
28032
|
source: z.ZodEnum<{
|
|
28033
28033
|
literal: "literal";
|
|
28034
|
-
header: "header";
|
|
28035
28034
|
body: "body";
|
|
28035
|
+
header: "header";
|
|
28036
28036
|
}>;
|
|
28037
28037
|
key: z.ZodOptional<z.ZodString>;
|
|
28038
28038
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -28140,18 +28140,19 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
28140
28140
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
28141
28141
|
}, z.core.$strip>>;
|
|
28142
28142
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28143
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
28143
28144
|
name: z.ZodString;
|
|
28145
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
28144
28146
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28145
28147
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28146
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
28147
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
28148
28148
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28149
28149
|
id: z.ZodString;
|
|
28150
28150
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28151
28151
|
id: z.ZodString;
|
|
28152
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
28152
28153
|
name: z.ZodString;
|
|
28154
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
28153
28155
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28154
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
28155
28156
|
models: z.ZodOptional<z.ZodObject<{
|
|
28156
28157
|
base: z.ZodOptional<z.ZodObject<{
|
|
28157
28158
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -28175,8 +28176,7 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
28175
28176
|
}, {
|
|
28176
28177
|
stepCountIs?: number | undefined;
|
|
28177
28178
|
}>>>>;
|
|
28178
|
-
|
|
28179
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
28179
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
28180
28180
|
type: z.ZodLiteral<"internal">;
|
|
28181
28181
|
canUse: z.ZodArray<z.ZodObject<{
|
|
28182
28182
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -28279,17 +28279,17 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
28279
28279
|
executeCode: z.ZodString;
|
|
28280
28280
|
}, z.core.$strip>>>;
|
|
28281
28281
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28282
|
-
name: z.ZodString;
|
|
28283
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28284
28282
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
28283
|
+
name: z.ZodString;
|
|
28285
28284
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
28285
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28286
28286
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
28287
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
28288
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
28287
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
28288
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
28289
28289
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28290
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
28290
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
28291
28291
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28292
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
28292
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
28293
28293
|
id: z.ZodOptional<z.ZodString>;
|
|
28294
28294
|
}, z.core.$strip>>>;
|
|
28295
28295
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -28465,11 +28465,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
28465
28465
|
}, z.core.$strip>>;
|
|
28466
28466
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28467
28467
|
id: z.ZodString;
|
|
28468
|
-
name: z.ZodString;
|
|
28469
28468
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
28469
|
+
name: z.ZodString;
|
|
28470
28470
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
28471
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28472
28471
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28472
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28473
28473
|
credentialStoreId: z.ZodString;
|
|
28474
28474
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
28475
28475
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -28489,7 +28489,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
28489
28489
|
declare const FullProjectSelectResponse: z.ZodObject<{
|
|
28490
28490
|
data: z.ZodObject<{
|
|
28491
28491
|
id: z.ZodString;
|
|
28492
|
+
createdAt: z.ZodString;
|
|
28492
28493
|
name: z.ZodString;
|
|
28494
|
+
updatedAt: z.ZodString;
|
|
28493
28495
|
description: z.ZodNullable<z.ZodString>;
|
|
28494
28496
|
models: z.ZodNullable<z.ZodObject<{
|
|
28495
28497
|
base: z.ZodObject<{
|
|
@@ -28509,21 +28511,20 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28509
28511
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
28510
28512
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
28511
28513
|
}, z.core.$strip>>;
|
|
28512
|
-
createdAt: z.ZodString;
|
|
28513
|
-
updatedAt: z.ZodString;
|
|
28514
28514
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28515
28515
|
id: z.ZodString;
|
|
28516
|
+
createdAt: z.ZodString;
|
|
28516
28517
|
name: z.ZodString;
|
|
28518
|
+
updatedAt: z.ZodString;
|
|
28517
28519
|
description: z.ZodNullable<z.ZodString>;
|
|
28518
28520
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28519
|
-
createdAt: z.ZodString;
|
|
28520
|
-
updatedAt: z.ZodString;
|
|
28521
28521
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
28522
28522
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28523
28523
|
id: z.ZodString;
|
|
28524
|
+
createdAt: z.ZodString;
|
|
28524
28525
|
name: z.ZodString;
|
|
28526
|
+
updatedAt: z.ZodString;
|
|
28525
28527
|
description: z.ZodNullable<z.ZodString>;
|
|
28526
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
28527
28528
|
models: z.ZodNullable<z.ZodType<{
|
|
28528
28529
|
base?: {
|
|
28529
28530
|
model?: string | undefined;
|
|
@@ -28586,8 +28587,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28586
28587
|
}, {
|
|
28587
28588
|
stepCountIs?: number | undefined;
|
|
28588
28589
|
}>>>;
|
|
28589
|
-
|
|
28590
|
-
updatedAt: z.ZodString;
|
|
28590
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
28591
28591
|
type: z.ZodLiteral<"internal">;
|
|
28592
28592
|
canUse: z.ZodArray<z.ZodObject<{
|
|
28593
28593
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -28659,11 +28659,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28659
28659
|
}, z.core.$strip>>>;
|
|
28660
28660
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28661
28661
|
id: z.ZodString;
|
|
28662
|
-
name: z.ZodString;
|
|
28663
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28664
|
-
agentId: z.ZodString;
|
|
28665
28662
|
createdAt: z.ZodString;
|
|
28663
|
+
name: z.ZodString;
|
|
28666
28664
|
updatedAt: z.ZodString;
|
|
28665
|
+
agentId: z.ZodString;
|
|
28666
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28667
28667
|
functionId: z.ZodString;
|
|
28668
28668
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
28669
28669
|
}, z.core.$strip>>>;
|
|
@@ -28679,10 +28679,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28679
28679
|
}>, z.core.$strip>>>;
|
|
28680
28680
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
28681
28681
|
id: z.ZodString;
|
|
28682
|
-
createdAt: z.ZodString;
|
|
28683
|
-
updatedAt: z.ZodString;
|
|
28684
28682
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
28685
28683
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
28684
|
+
createdAt: z.ZodString;
|
|
28685
|
+
updatedAt: z.ZodString;
|
|
28686
28686
|
}, z.core.$strip>>;
|
|
28687
28687
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
28688
28688
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -28749,11 +28749,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28749
28749
|
}>, z.core.$strip>>;
|
|
28750
28750
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28751
28751
|
id: z.ZodString;
|
|
28752
|
-
name: z.ZodString;
|
|
28753
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28754
|
-
agentId: z.ZodString;
|
|
28755
28752
|
createdAt: z.ZodString;
|
|
28753
|
+
name: z.ZodString;
|
|
28756
28754
|
updatedAt: z.ZodString;
|
|
28755
|
+
agentId: z.ZodString;
|
|
28756
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28757
28757
|
functionId: z.ZodString;
|
|
28758
28758
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
28759
28759
|
}, z.core.$strip>>>;
|
|
@@ -28841,11 +28841,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28841
28841
|
}, z.core.$strip>>;
|
|
28842
28842
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28843
28843
|
id: z.ZodString;
|
|
28844
|
-
name: z.ZodString;
|
|
28845
28844
|
createdAt: z.ZodString;
|
|
28845
|
+
name: z.ZodString;
|
|
28846
28846
|
updatedAt: z.ZodString;
|
|
28847
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
28848
28847
|
userId: z.ZodNullable<z.ZodString>;
|
|
28848
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
28849
28849
|
credentialStoreId: z.ZodString;
|
|
28850
28850
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28851
28851
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
@@ -28854,7 +28854,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28854
28854
|
readonly keychain: "keychain";
|
|
28855
28855
|
readonly nango: "nango";
|
|
28856
28856
|
}>;
|
|
28857
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
28857
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
28858
28858
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
28859
28859
|
name: "created_at";
|
|
28860
28860
|
tableName: "tools";
|
|
@@ -29134,7 +29134,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
29134
29134
|
}, {}, {
|
|
29135
29135
|
length: 256;
|
|
29136
29136
|
}>;
|
|
29137
|
-
},
|
|
29137
|
+
}, drizzle_zod15.BuildRefine<{
|
|
29138
29138
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
29139
29139
|
name: "created_at";
|
|
29140
29140
|
tableName: "tools";
|
|
@@ -29438,7 +29438,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
29438
29438
|
declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
29439
29439
|
data: z.ZodObject<{
|
|
29440
29440
|
id: z.ZodString;
|
|
29441
|
+
createdAt: z.ZodString;
|
|
29441
29442
|
name: z.ZodString;
|
|
29443
|
+
updatedAt: z.ZodString;
|
|
29442
29444
|
description: z.ZodNullable<z.ZodString>;
|
|
29443
29445
|
models: z.ZodNullable<z.ZodObject<{
|
|
29444
29446
|
base: z.ZodObject<{
|
|
@@ -29458,8 +29460,6 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29458
29460
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
29459
29461
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
29460
29462
|
}, z.core.$strip>>;
|
|
29461
|
-
createdAt: z.ZodString;
|
|
29462
|
-
updatedAt: z.ZodString;
|
|
29463
29463
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
29464
29464
|
createdAt: z.ZodString;
|
|
29465
29465
|
updatedAt: z.ZodString;
|
|
@@ -29491,11 +29491,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29491
29491
|
}>, z.core.$strip>>;
|
|
29492
29492
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29493
29493
|
id: z.ZodString;
|
|
29494
|
-
name: z.ZodString;
|
|
29495
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29496
|
-
agentId: z.ZodString;
|
|
29497
29494
|
createdAt: z.ZodString;
|
|
29495
|
+
name: z.ZodString;
|
|
29498
29496
|
updatedAt: z.ZodString;
|
|
29497
|
+
agentId: z.ZodString;
|
|
29498
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29499
29499
|
functionId: z.ZodString;
|
|
29500
29500
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
29501
29501
|
}, z.core.$strip>>>;
|
|
@@ -29583,11 +29583,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29583
29583
|
}, z.core.$strip>>;
|
|
29584
29584
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29585
29585
|
id: z.ZodString;
|
|
29586
|
-
name: z.ZodString;
|
|
29587
29586
|
createdAt: z.ZodString;
|
|
29587
|
+
name: z.ZodString;
|
|
29588
29588
|
updatedAt: z.ZodString;
|
|
29589
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
29590
29589
|
userId: z.ZodNullable<z.ZodString>;
|
|
29590
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
29591
29591
|
credentialStoreId: z.ZodString;
|
|
29592
29592
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29593
29593
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
@@ -29596,7 +29596,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29596
29596
|
readonly keychain: "keychain";
|
|
29597
29597
|
readonly nango: "nango";
|
|
29598
29598
|
}>;
|
|
29599
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
29599
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
29600
29600
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
29601
29601
|
name: "created_at";
|
|
29602
29602
|
tableName: "tools";
|
|
@@ -29876,7 +29876,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29876
29876
|
}, {}, {
|
|
29877
29877
|
length: 256;
|
|
29878
29878
|
}>;
|
|
29879
|
-
},
|
|
29879
|
+
}, drizzle_zod15.BuildRefine<{
|
|
29880
29880
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
29881
29881
|
name: "created_at";
|
|
29882
29882
|
tableName: "tools";
|
|
@@ -30174,11 +30174,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
30174
30174
|
}, z.core.$strip>>>;
|
|
30175
30175
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30176
30176
|
id: z.ZodString;
|
|
30177
|
+
createdAt: z.ZodString;
|
|
30177
30178
|
name: z.ZodString;
|
|
30179
|
+
updatedAt: z.ZodString;
|
|
30178
30180
|
description: z.ZodNullable<z.ZodString>;
|
|
30179
30181
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
30180
|
-
createdAt: z.ZodString;
|
|
30181
|
-
updatedAt: z.ZodString;
|
|
30182
30182
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
30183
30183
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
30184
30184
|
createdAt: z.ZodString;
|
|
@@ -30227,11 +30227,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
30227
30227
|
}, z.core.$strip>>>;
|
|
30228
30228
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30229
30229
|
id: z.ZodString;
|
|
30230
|
-
name: z.ZodString;
|
|
30231
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30232
|
-
agentId: z.ZodString;
|
|
30233
30230
|
createdAt: z.ZodString;
|
|
30231
|
+
name: z.ZodString;
|
|
30234
30232
|
updatedAt: z.ZodString;
|
|
30233
|
+
agentId: z.ZodString;
|
|
30234
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30235
30235
|
functionId: z.ZodString;
|
|
30236
30236
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
30237
30237
|
}, z.core.$strip>>>;
|
|
@@ -30247,10 +30247,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
30247
30247
|
}>, z.core.$strip>>>;
|
|
30248
30248
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
30249
30249
|
id: z.ZodString;
|
|
30250
|
-
createdAt: z.ZodString;
|
|
30251
|
-
updatedAt: z.ZodString;
|
|
30252
30250
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
30253
30251
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
30252
|
+
createdAt: z.ZodString;
|
|
30253
|
+
updatedAt: z.ZodString;
|
|
30254
30254
|
}, z.core.$strip>>;
|
|
30255
30255
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
30256
30256
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -30287,9 +30287,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
30287
30287
|
prompt: z.ZodNullable<z.ZodString>;
|
|
30288
30288
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30289
30289
|
id: z.ZodString;
|
|
30290
|
+
createdAt: z.ZodString;
|
|
30290
30291
|
name: z.ZodString;
|
|
30292
|
+
updatedAt: z.ZodString;
|
|
30291
30293
|
description: z.ZodNullable<z.ZodString>;
|
|
30292
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
30293
30294
|
models: z.ZodNullable<z.ZodType<{
|
|
30294
30295
|
base?: {
|
|
30295
30296
|
model?: string | undefined;
|
|
@@ -30352,8 +30353,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
30352
30353
|
}, {
|
|
30353
30354
|
stepCountIs?: number | undefined;
|
|
30354
30355
|
}>>>;
|
|
30355
|
-
|
|
30356
|
-
updatedAt: z.ZodString;
|
|
30356
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
30357
30357
|
type: z.ZodLiteral<"internal">;
|
|
30358
30358
|
canUse: z.ZodArray<z.ZodObject<{
|
|
30359
30359
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -30392,18 +30392,19 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
30392
30392
|
}, z.core.$strip>;
|
|
30393
30393
|
declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
30394
30394
|
data: z.ZodObject<{
|
|
30395
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
30395
30396
|
name: z.ZodString;
|
|
30397
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30396
30398
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30397
30399
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30398
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
30399
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30400
30400
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30401
30401
|
id: z.ZodString;
|
|
30402
30402
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30403
30403
|
id: z.ZodString;
|
|
30404
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
30404
30405
|
name: z.ZodString;
|
|
30406
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30405
30407
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30406
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
30407
30408
|
models: z.ZodOptional<z.ZodObject<{
|
|
30408
30409
|
base: z.ZodOptional<z.ZodObject<{
|
|
30409
30410
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -30427,8 +30428,7 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
30427
30428
|
}, {
|
|
30428
30429
|
stepCountIs?: number | undefined;
|
|
30429
30430
|
}>>>>;
|
|
30430
|
-
|
|
30431
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30431
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
30432
30432
|
type: z.ZodLiteral<"internal">;
|
|
30433
30433
|
canUse: z.ZodArray<z.ZodObject<{
|
|
30434
30434
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -30531,17 +30531,17 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
30531
30531
|
executeCode: z.ZodString;
|
|
30532
30532
|
}, z.core.$strip>>>;
|
|
30533
30533
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30534
|
-
name: z.ZodString;
|
|
30535
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30536
30534
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
30535
|
+
name: z.ZodString;
|
|
30537
30536
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30537
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30538
30538
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
30539
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
30540
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
30539
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
30540
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
30541
30541
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30542
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
30542
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
30543
30543
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30544
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
30544
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
30545
30545
|
id: z.ZodOptional<z.ZodString>;
|
|
30546
30546
|
}, z.core.$strip>>>;
|
|
30547
30547
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -30587,17 +30587,18 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
30587
30587
|
declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
30588
30588
|
data: z.ZodObject<{
|
|
30589
30589
|
id: z.ZodString;
|
|
30590
|
+
createdAt: z.ZodString;
|
|
30590
30591
|
name: z.ZodString;
|
|
30592
|
+
updatedAt: z.ZodString;
|
|
30591
30593
|
description: z.ZodNullable<z.ZodString>;
|
|
30592
30594
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
30593
|
-
createdAt: z.ZodString;
|
|
30594
|
-
updatedAt: z.ZodString;
|
|
30595
30595
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
30596
30596
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30597
30597
|
id: z.ZodString;
|
|
30598
|
+
createdAt: z.ZodString;
|
|
30598
30599
|
name: z.ZodString;
|
|
30600
|
+
updatedAt: z.ZodString;
|
|
30599
30601
|
description: z.ZodNullable<z.ZodString>;
|
|
30600
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
30601
30602
|
models: z.ZodNullable<z.ZodType<{
|
|
30602
30603
|
base?: {
|
|
30603
30604
|
model?: string | undefined;
|
|
@@ -30660,8 +30661,7 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
30660
30661
|
}, {
|
|
30661
30662
|
stepCountIs?: number | undefined;
|
|
30662
30663
|
}>>>;
|
|
30663
|
-
|
|
30664
|
-
updatedAt: z.ZodString;
|
|
30664
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
30665
30665
|
type: z.ZodLiteral<"internal">;
|
|
30666
30666
|
canUse: z.ZodArray<z.ZodObject<{
|
|
30667
30667
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -30733,11 +30733,11 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
30733
30733
|
}, z.core.$strip>>>;
|
|
30734
30734
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30735
30735
|
id: z.ZodString;
|
|
30736
|
-
name: z.ZodString;
|
|
30737
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30738
|
-
agentId: z.ZodString;
|
|
30739
30736
|
createdAt: z.ZodString;
|
|
30737
|
+
name: z.ZodString;
|
|
30740
30738
|
updatedAt: z.ZodString;
|
|
30739
|
+
agentId: z.ZodString;
|
|
30740
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30741
30741
|
functionId: z.ZodString;
|
|
30742
30742
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
30743
30743
|
}, z.core.$strip>>>;
|
|
@@ -30753,10 +30753,10 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
30753
30753
|
}>, z.core.$strip>>>;
|
|
30754
30754
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
30755
30755
|
id: z.ZodString;
|
|
30756
|
-
createdAt: z.ZodString;
|
|
30757
|
-
updatedAt: z.ZodString;
|
|
30758
30756
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
30759
30757
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
30758
|
+
createdAt: z.ZodString;
|
|
30759
|
+
updatedAt: z.ZodString;
|
|
30760
30760
|
}, z.core.$strip>>;
|
|
30761
30761
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
30762
30762
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -30949,7 +30949,7 @@ declare const SubAgentTeamAgentRelationResponse: z.ZodObject<{
|
|
|
30949
30949
|
createdAt: z.ZodString;
|
|
30950
30950
|
updatedAt: z.ZodString;
|
|
30951
30951
|
targetAgentId: z.ZodString;
|
|
30952
|
-
headers: z.ZodNullable<z.ZodType<
|
|
30952
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30953
30953
|
subAgentId: z.ZodString;
|
|
30954
30954
|
agentId: z.ZodString;
|
|
30955
30955
|
projectId: z.ZodString;
|
|
@@ -30962,7 +30962,7 @@ declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
|
|
|
30962
30962
|
createdAt: z.ZodString;
|
|
30963
30963
|
updatedAt: z.ZodString;
|
|
30964
30964
|
targetAgentId: z.ZodString;
|
|
30965
|
-
headers: z.ZodNullable<z.ZodType<
|
|
30965
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30966
30966
|
subAgentId: z.ZodString;
|
|
30967
30967
|
agentId: z.ZodString;
|
|
30968
30968
|
projectId: z.ZodString;
|
|
@@ -30981,7 +30981,7 @@ declare const SubAgentExternalAgentRelationResponse: z.ZodObject<{
|
|
|
30981
30981
|
createdAt: z.ZodString;
|
|
30982
30982
|
updatedAt: z.ZodString;
|
|
30983
30983
|
externalAgentId: z.ZodString;
|
|
30984
|
-
headers: z.ZodNullable<z.ZodType<
|
|
30984
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30985
30985
|
subAgentId: z.ZodString;
|
|
30986
30986
|
agentId: z.ZodString;
|
|
30987
30987
|
projectId: z.ZodString;
|
|
@@ -30994,7 +30994,7 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
|
30994
30994
|
createdAt: z.ZodString;
|
|
30995
30995
|
updatedAt: z.ZodString;
|
|
30996
30996
|
externalAgentId: z.ZodString;
|
|
30997
|
-
headers: z.ZodNullable<z.ZodType<
|
|
30997
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30998
30998
|
subAgentId: z.ZodString;
|
|
30999
30999
|
agentId: z.ZodString;
|
|
31000
31000
|
projectId: z.ZodString;
|
|
@@ -31161,7 +31161,7 @@ declare const PaginationWithRefQueryParamsSchema: z.ZodObject<{
|
|
|
31161
31161
|
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
31162
31162
|
ref: z.ZodOptional<z.ZodString>;
|
|
31163
31163
|
}, z.core.$strip>;
|
|
31164
|
-
declare const ProjectMetadataSelectSchema:
|
|
31164
|
+
declare const ProjectMetadataSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
31165
31165
|
id: drizzle_orm_pg_core211.PgColumn<{
|
|
31166
31166
|
name: "id";
|
|
31167
31167
|
tableName: "project_metadata";
|
|
@@ -31255,7 +31255,7 @@ declare const ProjectMetadataSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
31255
31255
|
}, {}, {
|
|
31256
31256
|
length: 512;
|
|
31257
31257
|
}>;
|
|
31258
|
-
},
|
|
31258
|
+
}, drizzle_zod15.BuildRefine<{
|
|
31259
31259
|
id: drizzle_orm_pg_core211.PgColumn<{
|
|
31260
31260
|
name: "id";
|
|
31261
31261
|
tableName: "project_metadata";
|
|
@@ -31369,7 +31369,7 @@ declare const WorkAppGitHubAccountTypeSchema: z.ZodEnum<{
|
|
|
31369
31369
|
User: "User";
|
|
31370
31370
|
Organization: "Organization";
|
|
31371
31371
|
}>;
|
|
31372
|
-
declare const WorkAppGitHubInstallationSelectSchema:
|
|
31372
|
+
declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
31373
31373
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
31374
31374
|
name: "created_at";
|
|
31375
31375
|
tableName: "work_app_github_installations";
|
|
@@ -31535,7 +31535,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
31535
31535
|
}, {}, {
|
|
31536
31536
|
length: 256;
|
|
31537
31537
|
}>;
|
|
31538
|
-
},
|
|
31538
|
+
}, drizzle_zod15.BuildRefine<{
|
|
31539
31539
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
31540
31540
|
name: "created_at";
|
|
31541
31541
|
tableName: "work_app_github_installations";
|
|
@@ -31750,7 +31750,7 @@ declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<OmitGenerate
|
|
|
31750
31750
|
disconnected: "disconnected";
|
|
31751
31751
|
}>>>;
|
|
31752
31752
|
}>, z.core.$strip>;
|
|
31753
|
-
declare const WorkAppGitHubRepositorySelectSchema:
|
|
31753
|
+
declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
31754
31754
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
31755
31755
|
name: "created_at";
|
|
31756
31756
|
tableName: "work_app_github_repositories";
|
|
@@ -31895,7 +31895,7 @@ declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod19.BuildSchema<"se
|
|
|
31895
31895
|
identity: undefined;
|
|
31896
31896
|
generated: undefined;
|
|
31897
31897
|
}, {}, {}>;
|
|
31898
|
-
},
|
|
31898
|
+
}, drizzle_zod15.BuildRefine<{
|
|
31899
31899
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
31900
31900
|
name: "created_at";
|
|
31901
31901
|
tableName: "work_app_github_repositories";
|
|
@@ -32061,7 +32061,7 @@ declare const WorkAppGitHubRepositoryApiInsertSchema: z.ZodObject<OmitGeneratedF
|
|
|
32061
32061
|
repositoryFullName: z.ZodString;
|
|
32062
32062
|
private: z.ZodOptional<z.ZodBoolean>;
|
|
32063
32063
|
}>>, z.core.$strip>;
|
|
32064
|
-
declare const WorkAppGitHubProjectRepositoryAccessSelectSchema:
|
|
32064
|
+
declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
32065
32065
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
32066
32066
|
name: "created_at";
|
|
32067
32067
|
tableName: "work_app_github_project_repository_access";
|
|
@@ -32172,7 +32172,7 @@ declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod19.Bu
|
|
|
32172
32172
|
}, {}, {
|
|
32173
32173
|
length: 256;
|
|
32174
32174
|
}>;
|
|
32175
|
-
},
|
|
32175
|
+
}, drizzle_zod15.BuildRefine<{
|
|
32176
32176
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
32177
32177
|
name: "created_at";
|
|
32178
32178
|
tableName: "work_app_github_project_repository_access";
|
|
@@ -32284,7 +32284,7 @@ declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod19.Bu
|
|
|
32284
32284
|
length: 256;
|
|
32285
32285
|
}>;
|
|
32286
32286
|
}, undefined>, undefined>;
|
|
32287
|
-
declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema:
|
|
32287
|
+
declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
32288
32288
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
32289
32289
|
name: "created_at";
|
|
32290
32290
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
@@ -32414,7 +32414,7 @@ declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema: drizzle_zod19.Bu
|
|
|
32414
32414
|
}, {}, {
|
|
32415
32415
|
length: 256;
|
|
32416
32416
|
}>;
|
|
32417
|
-
},
|
|
32417
|
+
}, drizzle_zod15.BuildRefine<{
|
|
32418
32418
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
32419
32419
|
name: "created_at";
|
|
32420
32420
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
@@ -32568,7 +32568,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
32568
32568
|
all: "all";
|
|
32569
32569
|
selected: "selected";
|
|
32570
32570
|
}>;
|
|
32571
|
-
repositories: z.ZodArray<
|
|
32571
|
+
repositories: z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
32572
32572
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
32573
32573
|
name: "created_at";
|
|
32574
32574
|
tableName: "work_app_github_repositories";
|
|
@@ -32713,7 +32713,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
32713
32713
|
identity: undefined;
|
|
32714
32714
|
generated: undefined;
|
|
32715
32715
|
}, {}, {}>;
|
|
32716
|
-
},
|
|
32716
|
+
}, drizzle_zod15.BuildRefine<{
|
|
32717
32717
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
32718
32718
|
name: "created_at";
|
|
32719
32719
|
tableName: "work_app_github_repositories";
|
|
@@ -32861,4 +32861,4 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
32861
32861
|
}, undefined>, undefined>>;
|
|
32862
32862
|
}, z.core.$strip>;
|
|
32863
32863
|
//#endregion
|
|
32864
|
-
export { AgentApiInsertSchema, AgentApiSelectSchema, AgentApiUpdateSchema, AgentInsertSchema, AgentListResponse, AgentResponse, AgentSelectSchema, AgentStopWhen, AgentStopWhenSchema, AgentUpdateSchema, AgentWithinContextOfProjectResponse, AgentWithinContextOfProjectSchema, AgentWithinContextOfProjectSelectResponse, AgentWithinContextOfProjectSelectSchema, AgentWithinContextOfProjectSelectSchemaWithRelationIds, AllAgentSchema, ApiKeyApiCreationResponseSchema, ApiKeyApiInsertSchema, ApiKeyApiSelectSchema, ApiKeyApiUpdateSchema, ApiKeyInsertSchema, ApiKeyListResponse, ApiKeyResponse, ApiKeySelectSchema, ApiKeyUpdateSchema, ArtifactComponentApiInsertSchema, ArtifactComponentApiSelectSchema, ArtifactComponentApiUpdateSchema, ArtifactComponentArrayResponse, ArtifactComponentInsertSchema, ArtifactComponentListResponse, ArtifactComponentResponse, ArtifactComponentSelectSchema, ArtifactComponentUpdateSchema, CanUseItemSchema, ComponentAssociationListResponse, ComponentAssociationSchema, ComponentJoin, ComponentJoinSchema, ContextCacheApiInsertSchema, ContextCacheApiSelectSchema, ContextCacheApiUpdateSchema, ContextCacheInsertSchema, ContextCacheSelectSchema, ContextCacheUpdateSchema, ContextConfigApiInsertSchema, ContextConfigApiSelectSchema, ContextConfigApiUpdateSchema, ContextConfigInsertSchema, ContextConfigListResponse, ContextConfigResponse, ContextConfigSelectSchema, ContextConfigUpdateSchema, ConversationApiInsertSchema, ConversationApiSelectSchema, ConversationApiUpdateSchema, ConversationInsertSchema, ConversationListResponse, ConversationResponse, ConversationSelectSchema, ConversationUpdateSchema, CreateCredentialInStoreRequestSchema, CreateCredentialInStoreResponseSchema, CredentialReferenceApiInsertSchema, CredentialReferenceApiSelectSchema, CredentialReferenceApiUpdateSchema, CredentialReferenceInsertSchema, CredentialReferenceListResponse, CredentialReferenceResponse, CredentialReferenceSelectSchema, CredentialReferenceUpdateSchema, CredentialStoreListResponseSchema, CredentialStoreSchema, DataComponentApiInsertSchema, DataComponentApiSelectSchema, DataComponentApiUpdateSchema, DataComponentArrayResponse, DataComponentBaseSchema, DataComponentInsertSchema, DataComponentListResponse, DataComponentResponse, DataComponentSelectSchema, DataComponentUpdateSchema, DataPartSchema, DatasetApiInsertSchema, DatasetApiSelectSchema, DatasetApiUpdateSchema, DatasetInsertSchema, DatasetItemApiInsertSchema, DatasetItemApiSelectSchema, DatasetItemApiUpdateSchema, DatasetItemInsertSchema, DatasetItemSelectSchema, DatasetItemUpdateSchema, DatasetRunApiInsertSchema, DatasetRunApiSelectSchema, DatasetRunApiUpdateSchema, DatasetRunConfigAgentRelationApiInsertSchema, DatasetRunConfigAgentRelationApiSelectSchema, DatasetRunConfigAgentRelationApiUpdateSchema, DatasetRunConfigAgentRelationInsertSchema, DatasetRunConfigAgentRelationSelectSchema, DatasetRunConfigAgentRelationUpdateSchema, DatasetRunConfigApiInsertSchema, DatasetRunConfigApiSelectSchema, DatasetRunConfigApiUpdateSchema, DatasetRunConfigInsertSchema, DatasetRunConfigSelectSchema, DatasetRunConfigUpdateSchema, DatasetRunConversationRelationApiInsertSchema, DatasetRunConversationRelationApiSelectSchema, DatasetRunConversationRelationApiUpdateSchema, DatasetRunConversationRelationInsertSchema, DatasetRunConversationRelationSelectSchema, DatasetRunConversationRelationUpdateSchema, DatasetRunInsertSchema, DatasetRunItemSchema, DatasetRunSelectSchema, DatasetRunUpdateSchema, DatasetSelectSchema, DatasetUpdateSchema, ErrorResponseSchema, EvaluationJobConfigApiInsertSchema, EvaluationJobConfigApiSelectSchema, EvaluationJobConfigApiUpdateSchema, EvaluationJobConfigEvaluatorRelationApiInsertSchema, EvaluationJobConfigEvaluatorRelationApiSelectSchema, EvaluationJobConfigEvaluatorRelationApiUpdateSchema, EvaluationJobConfigEvaluatorRelationInsertSchema, EvaluationJobConfigEvaluatorRelationSelectSchema, EvaluationJobConfigEvaluatorRelationUpdateSchema, EvaluationJobConfigInsertSchema, EvaluationJobConfigSelectSchema, EvaluationJobConfigUpdateSchema, EvaluationJobFilterCriteriaSchema, EvaluationResultApiInsertSchema, EvaluationResultApiSelectSchema, EvaluationResultApiUpdateSchema, EvaluationResultInsertSchema, EvaluationResultSelectSchema, EvaluationResultUpdateSchema, EvaluationRunApiInsertSchema, EvaluationRunApiSelectSchema, EvaluationRunApiUpdateSchema, EvaluationRunConfigApiInsertSchema, EvaluationRunConfigApiSelectSchema, EvaluationRunConfigApiUpdateSchema, EvaluationRunConfigEvaluationSuiteConfigRelationApiInsertSchema, EvaluationRunConfigEvaluationSuiteConfigRelationApiSelectSchema, EvaluationRunConfigEvaluationSuiteConfigRelationApiUpdateSchema, EvaluationRunConfigEvaluationSuiteConfigRelationInsertSchema, EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema, EvaluationRunConfigEvaluationSuiteConfigRelationUpdateSchema, EvaluationRunConfigInsertSchema, EvaluationRunConfigSelectSchema, EvaluationRunConfigUpdateSchema, EvaluationRunConfigWithSuiteConfigsApiSelectSchema, EvaluationRunInsertSchema, EvaluationRunSelectSchema, EvaluationRunUpdateSchema, EvaluationSuiteConfigApiInsertSchema, EvaluationSuiteConfigApiSelectSchema, EvaluationSuiteConfigApiUpdateSchema, EvaluationSuiteConfigEvaluatorRelationApiInsertSchema, EvaluationSuiteConfigEvaluatorRelationApiSelectSchema, EvaluationSuiteConfigEvaluatorRelationApiUpdateSchema, EvaluationSuiteConfigEvaluatorRelationInsertSchema, EvaluationSuiteConfigEvaluatorRelationSelectSchema, EvaluationSuiteConfigEvaluatorRelationUpdateSchema, EvaluationSuiteConfigInsertSchema, EvaluationSuiteConfigSelectSchema, EvaluationSuiteConfigUpdateSchema, EvaluatorApiInsertSchema, EvaluatorApiSelectSchema, EvaluatorApiUpdateSchema, EvaluatorInsertSchema, EvaluatorSelectSchema, EvaluatorUpdateSchema, ExistsResponseSchema, ExternalAgentApiInsertSchema, ExternalAgentApiSelectSchema, ExternalAgentApiUpdateSchema, ExternalAgentInsertSchema, ExternalAgentListResponse, ExternalAgentResponse, ExternalAgentSelectSchema, ExternalAgentUpdateSchema, ExternalSubAgentRelationApiInsertSchema, ExternalSubAgentRelationInsertSchema, FetchConfigSchema, FetchDefinitionSchema, FilePartSchema, FullAgentAgentInsertSchema, FullAgentSubAgentSelectSchema, FullAgentSubAgentSelectSchemaWithRelationIds, FullProjectDefinitionResponse, FullProjectDefinitionSchema, FullProjectSelectResponse, FullProjectSelectSchema, FullProjectSelectSchemaWithRelationIds, FullProjectSelectWithRelationIdsResponse, FunctionApiInsertSchema, FunctionApiSelectSchema, FunctionApiUpdateSchema, FunctionInsertSchema, FunctionListResponse, FunctionResponse, FunctionSelectSchema, FunctionToolApiInsertSchema, FunctionToolApiSelectSchema, FunctionToolApiUpdateSchema, FunctionToolConfig, FunctionToolConfigSchema, FunctionToolInsertSchema, FunctionToolListResponse, FunctionToolResponse, FunctionToolSelectSchema, FunctionToolUpdateSchema, FunctionUpdateSchema, HeadersSchema, HeadersScopeSchema, LedgerArtifactApiInsertSchema, LedgerArtifactApiSelectSchema, LedgerArtifactApiUpdateSchema, LedgerArtifactInsertSchema, LedgerArtifactSelectSchema, LedgerArtifactUpdateSchema, ListResponseSchema, MAX_ID_LENGTH, MCPCatalogListResponse, MCPToolConfigSchema, MIN_ID_LENGTH, McpToolDefinitionSchema, McpToolListResponse, McpToolResponse, McpToolSchema, McpTransportConfigSchema, MessageApiInsertSchema, MessageApiSelectSchema, MessageApiUpdateSchema, MessageInsertSchema, MessageListResponse, MessageResponse, MessageSelectSchema, MessageUpdateSchema, ModelSchema, ModelSettings, ModelSettingsSchema, OAuthCallbackQuerySchema, OAuthLoginQuerySchema, PaginationQueryParamsSchema, PaginationSchema, PaginationWithRefQueryParamsSchema, PartSchema, PartSchemaType, PrebuiltMCPServerSchema, ProjectApiInsertSchema, ProjectApiSelectSchema, ProjectApiUpdateSchema, ProjectInsertSchema, ProjectListResponse, ProjectMetadataInsertSchema, ProjectMetadataSelectSchema, ProjectModelSchema, ProjectResponse, ProjectSelectSchema, ProjectUpdateSchema, RefQueryParamSchema, RelatedAgentInfoListResponse, RelatedAgentInfoSchema, RemovedResponseSchema, ResourceIdSchema, SignatureSource, SignatureSourceSchema, SignatureValidationOptions, SignatureValidationOptionsSchema, SignatureVerificationConfig, SignatureVerificationConfigSchema, SignedComponent, SignedComponentSchema, SimulationAgent, SimulationAgentSchema, SingleResponseSchema, StatusComponentSchema, StatusUpdateSchema, StopWhen, StopWhenSchema, SubAgentApiInsertSchema, SubAgentApiSelectSchema, SubAgentApiUpdateSchema, SubAgentArtifactComponentApiInsertSchema, SubAgentArtifactComponentApiSelectSchema, SubAgentArtifactComponentApiUpdateSchema, SubAgentArtifactComponentInsertSchema, SubAgentArtifactComponentListResponse, SubAgentArtifactComponentResponse, SubAgentArtifactComponentSelectSchema, SubAgentArtifactComponentUpdateSchema, SubAgentDataComponentApiInsertSchema, SubAgentDataComponentApiSelectSchema, SubAgentDataComponentApiUpdateSchema, SubAgentDataComponentInsertSchema, SubAgentDataComponentListResponse, SubAgentDataComponentResponse, SubAgentDataComponentSelectSchema, SubAgentDataComponentUpdateSchema, SubAgentExternalAgentRelationApiInsertSchema, SubAgentExternalAgentRelationApiSelectSchema, SubAgentExternalAgentRelationApiUpdateSchema, SubAgentExternalAgentRelationInsertSchema, SubAgentExternalAgentRelationListResponse, SubAgentExternalAgentRelationResponse, SubAgentExternalAgentRelationSelectSchema, SubAgentExternalAgentRelationUpdateSchema, SubAgentFunctionToolRelationApiInsertSchema, SubAgentFunctionToolRelationApiSelectSchema, SubAgentFunctionToolRelationInsertSchema, SubAgentFunctionToolRelationListResponse, SubAgentFunctionToolRelationResponse, SubAgentFunctionToolRelationSelectSchema, SubAgentInsertSchema, SubAgentListResponse, SubAgentRelationApiInsertSchema, SubAgentRelationApiSelectSchema, SubAgentRelationApiUpdateSchema, SubAgentRelationInsertSchema, SubAgentRelationListResponse, SubAgentRelationQuerySchema, SubAgentRelationResponse, SubAgentRelationSelectSchema, SubAgentRelationUpdateSchema, SubAgentResponse, SubAgentSelectSchema, SubAgentStopWhen, SubAgentStopWhenSchema, SubAgentTeamAgentRelationApiInsertSchema, SubAgentTeamAgentRelationApiSelectSchema, SubAgentTeamAgentRelationApiUpdateSchema, SubAgentTeamAgentRelationInsertSchema, SubAgentTeamAgentRelationListResponse, SubAgentTeamAgentRelationResponse, SubAgentTeamAgentRelationSelectSchema, SubAgentTeamAgentRelationUpdateSchema, SubAgentToolRelationApiInsertSchema, SubAgentToolRelationApiSelectSchema, SubAgentToolRelationApiUpdateSchema, SubAgentToolRelationInsertSchema, SubAgentToolRelationListResponse, SubAgentToolRelationResponse, SubAgentToolRelationSelectSchema, SubAgentToolRelationUpdateSchema, SubAgentUpdateSchema, TaskApiInsertSchema, TaskApiSelectSchema, TaskApiUpdateSchema, TaskInsertSchema, TaskRelationApiInsertSchema, TaskRelationApiSelectSchema, TaskRelationApiUpdateSchema, TaskRelationInsertSchema, TaskRelationSelectSchema, TaskRelationUpdateSchema, TaskSelectSchema, TaskUpdateSchema, TeamAgentSchema, TenantIdParamsSchema, TenantParamsSchema, TenantProjectAgentIdParamsSchema, TenantProjectAgentParamsSchema, TenantProjectAgentSubAgentIdParamsSchema, TenantProjectAgentSubAgentParamsSchema, TenantProjectIdParamsSchema, TenantProjectParamsSchema, TextPartSchema, ThirdPartyMCPServerResponse, ToolApiInsertSchema, ToolApiSelectSchema, ToolApiUpdateSchema, ToolInsertSchema, ToolListResponse, ToolResponse, ToolSelectSchema, ToolStatusSchema, ToolUpdateSchema, TriggerApiInsertSchema, TriggerApiSelectSchema, TriggerApiUpdateSchema, TriggerAuthHeaderInputSchema, TriggerAuthHeaderStoredSchema, TriggerAuthHeaderUpdateSchema, TriggerAuthenticationInputSchema, TriggerAuthenticationSchema, TriggerAuthenticationStoredSchema, TriggerAuthenticationUpdateSchema, TriggerBatchConversationEvaluationSchema, TriggerConversationEvaluationSchema, TriggerDatasetRunSchema, TriggerEvaluationJobSchema, TriggerInsertSchema, TriggerInvocationApiInsertSchema, TriggerInvocationApiSelectSchema, TriggerInvocationApiUpdateSchema, TriggerInvocationInsertSchema, TriggerInvocationListResponse, TriggerInvocationResponse, TriggerInvocationSelectSchema, TriggerInvocationStatusEnum, TriggerInvocationUpdateSchema, TriggerListResponse, TriggerOutputTransformSchema, TriggerResponse, TriggerSelectSchema, TriggerUpdateSchema, TriggerWithWebhookUrlListResponse, TriggerWithWebhookUrlResponse, TriggerWithWebhookUrlSchema, URL_SAFE_ID_PATTERN, WorkAppGitHubAccessGetResponseSchema, WorkAppGitHubAccessModeSchema, WorkAppGitHubAccessSetRequestSchema, WorkAppGitHubAccessSetResponseSchema, WorkAppGitHubAccountTypeSchema, WorkAppGitHubInstallationApiInsertSchema, WorkAppGitHubInstallationInsertSchema, WorkAppGitHubInstallationSelectSchema, WorkAppGitHubInstallationStatusSchema, WorkAppGitHubMcpToolRepositoryAccessSelectSchema, WorkAppGitHubProjectRepositoryAccessSelectSchema, WorkAppGitHubRepositoryApiInsertSchema, WorkAppGitHubRepositoryInsertSchema, WorkAppGitHubRepositorySelectSchema, WorkAppGithubInstallationApiSelectSchema, canDelegateToExternalAgentInsertSchema, canDelegateToExternalAgentSchema, canDelegateToTeamAgentInsertSchema, canDelegateToTeamAgentSchema, canRelateToInternalSubAgentSchema };
|
|
32864
|
+
export { AgentApiInsertSchema, AgentApiSelectSchema, AgentApiUpdateSchema, AgentInsertSchema, AgentListResponse, AgentResponse, AgentSelectSchema, AgentStopWhen, AgentStopWhenSchema, AgentUpdateSchema, AgentWithinContextOfProjectResponse, AgentWithinContextOfProjectSchema, AgentWithinContextOfProjectSelectResponse, AgentWithinContextOfProjectSelectSchema, AgentWithinContextOfProjectSelectSchemaWithRelationIds, AllAgentSchema, ApiKeyApiCreationResponseSchema, ApiKeyApiInsertSchema, ApiKeyApiSelectSchema, ApiKeyApiUpdateSchema, ApiKeyInsertSchema, ApiKeyListResponse, ApiKeyResponse, ApiKeySelectSchema, ApiKeyUpdateSchema, ArtifactComponentApiInsertSchema, ArtifactComponentApiSelectSchema, ArtifactComponentApiUpdateSchema, ArtifactComponentArrayResponse, ArtifactComponentInsertSchema, ArtifactComponentListResponse, ArtifactComponentResponse, ArtifactComponentSelectSchema, ArtifactComponentUpdateSchema, CanUseItemSchema, ComponentAssociationListResponse, ComponentAssociationSchema, ComponentJoin, ComponentJoinSchema, ContextCacheApiInsertSchema, ContextCacheApiSelectSchema, ContextCacheApiUpdateSchema, ContextCacheInsertSchema, ContextCacheSelectSchema, ContextCacheUpdateSchema, ContextConfigApiInsertSchema, ContextConfigApiSelectSchema, ContextConfigApiUpdateSchema, ContextConfigInsertSchema, ContextConfigListResponse, ContextConfigResponse, ContextConfigSelectSchema, ContextConfigUpdateSchema, ConversationApiInsertSchema, ConversationApiSelectSchema, ConversationApiUpdateSchema, ConversationInsertSchema, ConversationListResponse, ConversationResponse, ConversationSelectSchema, ConversationUpdateSchema, CreateCredentialInStoreRequestSchema, CreateCredentialInStoreResponseSchema, CredentialReferenceApiInsertSchema, CredentialReferenceApiSelectSchema, CredentialReferenceApiUpdateSchema, CredentialReferenceInsertSchema, CredentialReferenceListResponse, CredentialReferenceResponse, CredentialReferenceSelectSchema, CredentialReferenceUpdateSchema, CredentialStoreListResponseSchema, CredentialStoreSchema, DataComponentApiInsertSchema, DataComponentApiSelectSchema, DataComponentApiUpdateSchema, DataComponentArrayResponse, DataComponentBaseSchema, DataComponentInsertSchema, DataComponentListResponse, DataComponentResponse, DataComponentSelectSchema, DataComponentUpdateSchema, DataPartSchema, DatasetApiInsertSchema, DatasetApiSelectSchema, DatasetApiUpdateSchema, DatasetInsertSchema, DatasetItemApiInsertSchema, DatasetItemApiSelectSchema, DatasetItemApiUpdateSchema, DatasetItemInsertSchema, DatasetItemSelectSchema, DatasetItemUpdateSchema, DatasetRunApiInsertSchema, DatasetRunApiSelectSchema, DatasetRunApiUpdateSchema, DatasetRunConfigAgentRelationApiInsertSchema, DatasetRunConfigAgentRelationApiSelectSchema, DatasetRunConfigAgentRelationApiUpdateSchema, DatasetRunConfigAgentRelationInsertSchema, DatasetRunConfigAgentRelationSelectSchema, DatasetRunConfigAgentRelationUpdateSchema, DatasetRunConfigApiInsertSchema, DatasetRunConfigApiSelectSchema, DatasetRunConfigApiUpdateSchema, DatasetRunConfigInsertSchema, DatasetRunConfigSelectSchema, DatasetRunConfigUpdateSchema, DatasetRunConversationRelationApiInsertSchema, DatasetRunConversationRelationApiSelectSchema, DatasetRunConversationRelationApiUpdateSchema, DatasetRunConversationRelationInsertSchema, DatasetRunConversationRelationSelectSchema, DatasetRunConversationRelationUpdateSchema, DatasetRunInsertSchema, DatasetRunItemSchema, DatasetRunSelectSchema, DatasetRunUpdateSchema, DatasetSelectSchema, DatasetUpdateSchema, ErrorResponseSchema, EvaluationJobConfigApiInsertSchema, EvaluationJobConfigApiSelectSchema, EvaluationJobConfigApiUpdateSchema, EvaluationJobConfigEvaluatorRelationApiInsertSchema, EvaluationJobConfigEvaluatorRelationApiSelectSchema, EvaluationJobConfigEvaluatorRelationApiUpdateSchema, EvaluationJobConfigEvaluatorRelationInsertSchema, EvaluationJobConfigEvaluatorRelationSelectSchema, EvaluationJobConfigEvaluatorRelationUpdateSchema, EvaluationJobConfigInsertSchema, EvaluationJobConfigSelectSchema, EvaluationJobConfigUpdateSchema, EvaluationJobFilterCriteriaSchema, EvaluationResultApiInsertSchema, EvaluationResultApiSelectSchema, EvaluationResultApiUpdateSchema, EvaluationResultInsertSchema, EvaluationResultSelectSchema, EvaluationResultUpdateSchema, EvaluationRunApiInsertSchema, EvaluationRunApiSelectSchema, EvaluationRunApiUpdateSchema, EvaluationRunConfigApiInsertSchema, EvaluationRunConfigApiSelectSchema, EvaluationRunConfigApiUpdateSchema, EvaluationRunConfigEvaluationSuiteConfigRelationApiInsertSchema, EvaluationRunConfigEvaluationSuiteConfigRelationApiSelectSchema, EvaluationRunConfigEvaluationSuiteConfigRelationApiUpdateSchema, EvaluationRunConfigEvaluationSuiteConfigRelationInsertSchema, EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema, EvaluationRunConfigEvaluationSuiteConfigRelationUpdateSchema, EvaluationRunConfigInsertSchema, EvaluationRunConfigSelectSchema, EvaluationRunConfigUpdateSchema, EvaluationRunConfigWithSuiteConfigsApiSelectSchema, EvaluationRunInsertSchema, EvaluationRunSelectSchema, EvaluationRunUpdateSchema, EvaluationSuiteConfigApiInsertSchema, EvaluationSuiteConfigApiSelectSchema, EvaluationSuiteConfigApiUpdateSchema, EvaluationSuiteConfigEvaluatorRelationApiInsertSchema, EvaluationSuiteConfigEvaluatorRelationApiSelectSchema, EvaluationSuiteConfigEvaluatorRelationApiUpdateSchema, EvaluationSuiteConfigEvaluatorRelationInsertSchema, EvaluationSuiteConfigEvaluatorRelationSelectSchema, EvaluationSuiteConfigEvaluatorRelationUpdateSchema, EvaluationSuiteConfigInsertSchema, EvaluationSuiteConfigSelectSchema, EvaluationSuiteConfigUpdateSchema, EvaluatorApiInsertSchema, EvaluatorApiSelectSchema, EvaluatorApiUpdateSchema, EvaluatorInsertSchema, EvaluatorSelectSchema, EvaluatorUpdateSchema, ExistsResponseSchema, ExternalAgentApiInsertSchema, ExternalAgentApiSelectSchema, ExternalAgentApiUpdateSchema, ExternalAgentInsertSchema, ExternalAgentListResponse, ExternalAgentResponse, ExternalAgentSelectSchema, ExternalAgentUpdateSchema, ExternalSubAgentRelationApiInsertSchema, ExternalSubAgentRelationInsertSchema, FetchConfigSchema, FetchDefinitionSchema, FilePartSchema, FullAgentAgentInsertSchema, FullAgentSubAgentSelectSchema, FullAgentSubAgentSelectSchemaWithRelationIds, FullProjectDefinitionResponse, FullProjectDefinitionSchema, FullProjectSelectResponse, FullProjectSelectSchema, FullProjectSelectSchemaWithRelationIds, FullProjectSelectWithRelationIdsResponse, FunctionApiInsertSchema, FunctionApiSelectSchema, FunctionApiUpdateSchema, FunctionInsertSchema, FunctionListResponse, FunctionResponse, FunctionSelectSchema, FunctionToolApiInsertSchema, FunctionToolApiSelectSchema, FunctionToolApiUpdateSchema, FunctionToolConfig, FunctionToolConfigSchema, FunctionToolInsertSchema, FunctionToolListResponse, FunctionToolResponse, FunctionToolSelectSchema, FunctionToolUpdateSchema, FunctionUpdateSchema, HeadersScopeSchema, LedgerArtifactApiInsertSchema, LedgerArtifactApiSelectSchema, LedgerArtifactApiUpdateSchema, LedgerArtifactInsertSchema, LedgerArtifactSelectSchema, LedgerArtifactUpdateSchema, ListResponseSchema, MAX_ID_LENGTH, MCPCatalogListResponse, MCPToolConfigSchema, MIN_ID_LENGTH, McpToolDefinitionSchema, McpToolListResponse, McpToolResponse, McpToolSchema, McpTransportConfigSchema, MessageApiInsertSchema, MessageApiSelectSchema, MessageApiUpdateSchema, MessageInsertSchema, MessageListResponse, MessageResponse, MessageSelectSchema, MessageUpdateSchema, ModelSchema, ModelSettings, ModelSettingsSchema, OAuthCallbackQuerySchema, OAuthLoginQuerySchema, PaginationQueryParamsSchema, PaginationSchema, PaginationWithRefQueryParamsSchema, PartSchema, PartSchemaType, PrebuiltMCPServerSchema, ProjectApiInsertSchema, ProjectApiSelectSchema, ProjectApiUpdateSchema, ProjectInsertSchema, ProjectListResponse, ProjectMetadataInsertSchema, ProjectMetadataSelectSchema, ProjectModelSchema, ProjectResponse, ProjectSelectSchema, ProjectUpdateSchema, RefQueryParamSchema, RelatedAgentInfoListResponse, RelatedAgentInfoSchema, RemovedResponseSchema, ResourceIdSchema, SignatureSource, SignatureSourceSchema, SignatureValidationOptions, SignatureValidationOptionsSchema, SignatureVerificationConfig, SignatureVerificationConfigSchema, SignedComponent, SignedComponentSchema, SimulationAgent, SimulationAgentSchema, SingleResponseSchema, StatusComponentSchema, StatusUpdateSchema, StopWhen, StopWhenSchema, StringRecordSchema, SubAgentApiInsertSchema, SubAgentApiSelectSchema, SubAgentApiUpdateSchema, SubAgentArtifactComponentApiInsertSchema, SubAgentArtifactComponentApiSelectSchema, SubAgentArtifactComponentApiUpdateSchema, SubAgentArtifactComponentInsertSchema, SubAgentArtifactComponentListResponse, SubAgentArtifactComponentResponse, SubAgentArtifactComponentSelectSchema, SubAgentArtifactComponentUpdateSchema, SubAgentDataComponentApiInsertSchema, SubAgentDataComponentApiSelectSchema, SubAgentDataComponentApiUpdateSchema, SubAgentDataComponentInsertSchema, SubAgentDataComponentListResponse, SubAgentDataComponentResponse, SubAgentDataComponentSelectSchema, SubAgentDataComponentUpdateSchema, SubAgentExternalAgentRelationApiInsertSchema, SubAgentExternalAgentRelationApiSelectSchema, SubAgentExternalAgentRelationApiUpdateSchema, SubAgentExternalAgentRelationInsertSchema, SubAgentExternalAgentRelationListResponse, SubAgentExternalAgentRelationResponse, SubAgentExternalAgentRelationSelectSchema, SubAgentExternalAgentRelationUpdateSchema, SubAgentFunctionToolRelationApiInsertSchema, SubAgentFunctionToolRelationApiSelectSchema, SubAgentFunctionToolRelationInsertSchema, SubAgentFunctionToolRelationListResponse, SubAgentFunctionToolRelationResponse, SubAgentFunctionToolRelationSelectSchema, SubAgentInsertSchema, SubAgentListResponse, SubAgentRelationApiInsertSchema, SubAgentRelationApiSelectSchema, SubAgentRelationApiUpdateSchema, SubAgentRelationInsertSchema, SubAgentRelationListResponse, SubAgentRelationQuerySchema, SubAgentRelationResponse, SubAgentRelationSelectSchema, SubAgentRelationUpdateSchema, SubAgentResponse, SubAgentSelectSchema, SubAgentStopWhen, SubAgentStopWhenSchema, SubAgentTeamAgentRelationApiInsertSchema, SubAgentTeamAgentRelationApiSelectSchema, SubAgentTeamAgentRelationApiUpdateSchema, SubAgentTeamAgentRelationInsertSchema, SubAgentTeamAgentRelationListResponse, SubAgentTeamAgentRelationResponse, SubAgentTeamAgentRelationSelectSchema, SubAgentTeamAgentRelationUpdateSchema, SubAgentToolRelationApiInsertSchema, SubAgentToolRelationApiSelectSchema, SubAgentToolRelationApiUpdateSchema, SubAgentToolRelationInsertSchema, SubAgentToolRelationListResponse, SubAgentToolRelationResponse, SubAgentToolRelationSelectSchema, SubAgentToolRelationUpdateSchema, SubAgentUpdateSchema, TaskApiInsertSchema, TaskApiSelectSchema, TaskApiUpdateSchema, TaskInsertSchema, TaskRelationApiInsertSchema, TaskRelationApiSelectSchema, TaskRelationApiUpdateSchema, TaskRelationInsertSchema, TaskRelationSelectSchema, TaskRelationUpdateSchema, TaskSelectSchema, TaskUpdateSchema, TeamAgentSchema, TenantIdParamsSchema, TenantParamsSchema, TenantProjectAgentIdParamsSchema, TenantProjectAgentParamsSchema, TenantProjectAgentSubAgentIdParamsSchema, TenantProjectAgentSubAgentParamsSchema, TenantProjectIdParamsSchema, TenantProjectParamsSchema, TextPartSchema, ThirdPartyMCPServerResponse, ToolApiInsertSchema, ToolApiSelectSchema, ToolApiUpdateSchema, ToolInsertSchema, ToolListResponse, ToolResponse, ToolSelectSchema, ToolStatusSchema, ToolUpdateSchema, TriggerApiInsertSchema, TriggerApiSelectSchema, TriggerApiUpdateSchema, TriggerAuthHeaderInputSchema, TriggerAuthHeaderStoredSchema, TriggerAuthHeaderUpdateSchema, TriggerAuthenticationInputSchema, TriggerAuthenticationSchema, TriggerAuthenticationStoredSchema, TriggerAuthenticationUpdateSchema, TriggerBatchConversationEvaluationSchema, TriggerConversationEvaluationSchema, TriggerDatasetRunSchema, TriggerEvaluationJobSchema, TriggerInsertSchema, TriggerInvocationApiInsertSchema, TriggerInvocationApiSelectSchema, TriggerInvocationApiUpdateSchema, TriggerInvocationInsertSchema, TriggerInvocationListResponse, TriggerInvocationResponse, TriggerInvocationSelectSchema, TriggerInvocationStatusEnum, TriggerInvocationUpdateSchema, TriggerListResponse, TriggerOutputTransformSchema, TriggerResponse, TriggerSelectSchema, TriggerUpdateSchema, TriggerWithWebhookUrlListResponse, TriggerWithWebhookUrlResponse, TriggerWithWebhookUrlSchema, URL_SAFE_ID_PATTERN, WorkAppGitHubAccessGetResponseSchema, WorkAppGitHubAccessModeSchema, WorkAppGitHubAccessSetRequestSchema, WorkAppGitHubAccessSetResponseSchema, WorkAppGitHubAccountTypeSchema, WorkAppGitHubInstallationApiInsertSchema, WorkAppGitHubInstallationInsertSchema, WorkAppGitHubInstallationSelectSchema, WorkAppGitHubInstallationStatusSchema, WorkAppGitHubMcpToolRepositoryAccessSelectSchema, WorkAppGitHubProjectRepositoryAccessSelectSchema, WorkAppGitHubRepositoryApiInsertSchema, WorkAppGitHubRepositoryInsertSchema, WorkAppGitHubRepositorySelectSchema, WorkAppGithubInstallationApiSelectSchema, canDelegateToExternalAgentInsertSchema, canDelegateToExternalAgentSchema, canDelegateToTeamAgentInsertSchema, canDelegateToTeamAgentSchema, canRelateToInternalSubAgentSchema };
|