@inkeep/agents-core 0.0.0-dev-20260206214018 → 0.0.0-dev-20260207220105
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 +53 -53
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/client-exports.d.ts +5 -193
- package/dist/client-exports.js +2 -97
- package/dist/data-access/manage/agents.d.ts +42 -42
- package/dist/data-access/manage/artifactComponents.d.ts +12 -12
- package/dist/data-access/manage/contextConfigs.d.ts +12 -12
- package/dist/data-access/manage/dataComponents.d.ts +6 -6
- package/dist/data-access/manage/functionTools.d.ts +14 -14
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgentRelations.d.ts +26 -26
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgents.d.ts +18 -18
- package/dist/data-access/manage/tools.d.ts +21 -21
- package/dist/data-access/manage/tools.js +1 -1
- package/dist/data-access/manage/triggers.d.ts +2 -2
- package/dist/data-access/runtime/apiKeys.d.ts +12 -12
- package/dist/data-access/runtime/conversations.d.ts +20 -20
- package/dist/data-access/runtime/messages.d.ts +18 -18
- package/dist/data-access/runtime/tasks.d.ts +5 -5
- package/dist/db/manage/manage-schema.d.ts +4 -4
- package/dist/index.d.ts +2 -2
- package/dist/index.js +5 -5
- package/dist/types/index.js +1 -1
- 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 +467 -466
- package/dist/validation/schemas.js +3 -2
- package/package.json +5 -2
|
@@ -3,7 +3,7 @@ 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
9
|
declare const StopWhenSchema: z.ZodObject<{
|
|
@@ -83,7 +83,7 @@ type OmitAgentScope<T> = Omit<T, 'tenantId' | 'projectId' | 'agentId'>;
|
|
|
83
83
|
type OmitTenantScope<T> = Omit<T, 'tenantId'>;
|
|
84
84
|
type OmitTimestamps<T> = Omit<T, 'createdAt' | 'updatedAt'>;
|
|
85
85
|
type OmitGeneratedFields<T> = Omit<T, 'id' | 'createdAt' | 'updatedAt'>;
|
|
86
|
-
declare const SubAgentSelectSchema:
|
|
86
|
+
declare const SubAgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
87
87
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
88
88
|
name: "created_at";
|
|
89
89
|
tableName: "sub_agents";
|
|
@@ -334,7 +334,7 @@ declare const SubAgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
334
334
|
}, {}, {
|
|
335
335
|
length: 256;
|
|
336
336
|
}>;
|
|
337
|
-
},
|
|
337
|
+
}, drizzle_zod15.BuildRefine<{
|
|
338
338
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
339
339
|
name: "created_at";
|
|
340
340
|
tableName: "sub_agents";
|
|
@@ -774,9 +774,9 @@ declare const SubAgentApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
|
774
774
|
declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
775
775
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
776
776
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
777
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
778
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
779
777
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
778
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
779
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
780
780
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
781
781
|
base: z.ZodOptional<z.ZodObject<{
|
|
782
782
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -791,7 +791,6 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
791
791
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
792
792
|
}, z.core.$strip>>;
|
|
793
793
|
}, z.core.$strip>>>>;
|
|
794
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
795
794
|
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
796
795
|
stepCountIs?: number | undefined;
|
|
797
796
|
}, {
|
|
@@ -801,9 +800,10 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
801
800
|
}, {
|
|
802
801
|
stepCountIs?: number | undefined;
|
|
803
802
|
}>>>>>>;
|
|
804
|
-
|
|
803
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
804
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
805
805
|
}, z.core.$strip>;
|
|
806
|
-
declare const SubAgentRelationSelectSchema:
|
|
806
|
+
declare const SubAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
807
807
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
808
808
|
name: "created_at";
|
|
809
809
|
tableName: "sub_agent_relations";
|
|
@@ -971,7 +971,7 @@ declare const SubAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
971
971
|
}, {}, {
|
|
972
972
|
length: 256;
|
|
973
973
|
}>;
|
|
974
|
-
},
|
|
974
|
+
}, drizzle_zod15.BuildRefine<{
|
|
975
975
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
976
976
|
name: "created_at";
|
|
977
977
|
tableName: "sub_agent_relations";
|
|
@@ -1242,7 +1242,7 @@ declare const ExternalSubAgentRelationApiInsertSchema: z.ZodObject<OmitProjectSc
|
|
|
1242
1242
|
sourceSubAgentId: z.ZodString;
|
|
1243
1243
|
externalSubAgentId: z.ZodString;
|
|
1244
1244
|
}>, z.core.$strip>;
|
|
1245
|
-
declare const AgentSelectSchema:
|
|
1245
|
+
declare const AgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
1246
1246
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
1247
1247
|
name: "created_at";
|
|
1248
1248
|
tableName: "agent";
|
|
@@ -1540,7 +1540,7 @@ declare const AgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
1540
1540
|
}, {}, {
|
|
1541
1541
|
length: 256;
|
|
1542
1542
|
}>;
|
|
1543
|
-
},
|
|
1543
|
+
}, drizzle_zod15.BuildRefine<{
|
|
1544
1544
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
1545
1545
|
name: "created_at";
|
|
1546
1546
|
tableName: "agent";
|
|
@@ -1839,7 +1839,7 @@ declare const AgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
1839
1839
|
length: 256;
|
|
1840
1840
|
}>;
|
|
1841
1841
|
}, undefined>, undefined>;
|
|
1842
|
-
declare const AgentInsertSchema:
|
|
1842
|
+
declare const AgentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
1843
1843
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
1844
1844
|
name: "created_at";
|
|
1845
1845
|
tableName: "agent";
|
|
@@ -2137,7 +2137,7 @@ declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
2137
2137
|
}, {}, {
|
|
2138
2138
|
length: 256;
|
|
2139
2139
|
}>;
|
|
2140
|
-
},
|
|
2140
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
2141
2141
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
2142
2142
|
name: "created_at";
|
|
2143
2143
|
tableName: "agent";
|
|
@@ -2435,7 +2435,7 @@ declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
2435
2435
|
}, {}, {
|
|
2436
2436
|
length: 256;
|
|
2437
2437
|
}>;
|
|
2438
|
-
}, "id" | "name" | "
|
|
2438
|
+
}, "id" | "name" | "description" | "defaultSubAgentId" | "tenantId" | "projectId" | "prompt" | "models" | "stopWhen" | "createdAt" | "updatedAt" | "contextConfigId" | "statusUpdates">, undefined>, undefined>;
|
|
2439
2439
|
declare const AgentUpdateSchema: z.ZodObject<{
|
|
2440
2440
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2441
2441
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2703,11 +2703,9 @@ declare const AgentApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
2703
2703
|
}>, z.core.$strip>;
|
|
2704
2704
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
2705
2705
|
name: z.ZodString;
|
|
2706
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
2707
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2708
2706
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2709
2707
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2710
|
-
|
|
2708
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2711
2709
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2712
2710
|
base?: {
|
|
2713
2711
|
model?: string | undefined;
|
|
@@ -2761,7 +2759,18 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2761
2759
|
providerOptions?: Record<string, any> | undefined;
|
|
2762
2760
|
} | undefined;
|
|
2763
2761
|
}>>>>;
|
|
2764
|
-
|
|
2762
|
+
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2763
|
+
transferCountIs?: number | undefined;
|
|
2764
|
+
}, {
|
|
2765
|
+
transferCountIs?: number | undefined;
|
|
2766
|
+
}, z.core.$ZodTypeInternals<{
|
|
2767
|
+
transferCountIs?: number | undefined;
|
|
2768
|
+
}, {
|
|
2769
|
+
transferCountIs?: number | undefined;
|
|
2770
|
+
}>>>>;
|
|
2771
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2772
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2773
|
+
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2765
2774
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2766
2775
|
enabled?: boolean | undefined;
|
|
2767
2776
|
numEvents?: number | undefined;
|
|
@@ -2819,25 +2828,14 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2819
2828
|
} | undefined;
|
|
2820
2829
|
}[] | undefined;
|
|
2821
2830
|
}>>>>;
|
|
2822
|
-
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2823
|
-
transferCountIs?: number | undefined;
|
|
2824
|
-
}, {
|
|
2825
|
-
transferCountIs?: number | undefined;
|
|
2826
|
-
}, z.core.$ZodTypeInternals<{
|
|
2827
|
-
transferCountIs?: number | undefined;
|
|
2828
|
-
}, {
|
|
2829
|
-
transferCountIs?: number | undefined;
|
|
2830
|
-
}>>>>;
|
|
2831
2831
|
id: z.ZodString;
|
|
2832
2832
|
}, z.core.$strip>;
|
|
2833
2833
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
2834
2834
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2835
2835
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2836
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2837
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2838
2836
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2839
2837
|
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2840
|
-
|
|
2838
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2841
2839
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2842
2840
|
base?: {
|
|
2843
2841
|
model?: string | undefined;
|
|
@@ -2891,7 +2889,18 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
2891
2889
|
providerOptions?: Record<string, any> | undefined;
|
|
2892
2890
|
} | undefined;
|
|
2893
2891
|
}>>>>>>;
|
|
2894
|
-
|
|
2892
|
+
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2893
|
+
transferCountIs?: number | undefined;
|
|
2894
|
+
}, {
|
|
2895
|
+
transferCountIs?: number | undefined;
|
|
2896
|
+
}, z.core.$ZodTypeInternals<{
|
|
2897
|
+
transferCountIs?: number | undefined;
|
|
2898
|
+
}, {
|
|
2899
|
+
transferCountIs?: number | undefined;
|
|
2900
|
+
}>>>>>>;
|
|
2901
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2902
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2903
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2895
2904
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2896
2905
|
enabled?: boolean | undefined;
|
|
2897
2906
|
numEvents?: number | undefined;
|
|
@@ -2949,15 +2958,6 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
2949
2958
|
} | undefined;
|
|
2950
2959
|
}[] | undefined;
|
|
2951
2960
|
}>>>>>>;
|
|
2952
|
-
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2953
|
-
transferCountIs?: number | undefined;
|
|
2954
|
-
}, {
|
|
2955
|
-
transferCountIs?: number | undefined;
|
|
2956
|
-
}, z.core.$ZodTypeInternals<{
|
|
2957
|
-
transferCountIs?: number | undefined;
|
|
2958
|
-
}, {
|
|
2959
|
-
transferCountIs?: number | undefined;
|
|
2960
|
-
}>>>>>>;
|
|
2961
2961
|
}, z.core.$strip>;
|
|
2962
2962
|
declare const TriggerAuthHeaderInputSchema: z.ZodObject<{
|
|
2963
2963
|
name: z.ZodString;
|
|
@@ -3024,8 +3024,8 @@ declare const TriggerOutputTransformSchema: z.ZodObject<{
|
|
|
3024
3024
|
declare const SignatureSourceSchema: z.ZodObject<{
|
|
3025
3025
|
source: z.ZodEnum<{
|
|
3026
3026
|
query: "query";
|
|
3027
|
-
body: "body";
|
|
3028
3027
|
header: "header";
|
|
3028
|
+
body: "body";
|
|
3029
3029
|
}>;
|
|
3030
3030
|
key: z.ZodString;
|
|
3031
3031
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3054,8 +3054,8 @@ declare const SignatureSourceSchema: z.ZodObject<{
|
|
|
3054
3054
|
declare const SignedComponentSchema: z.ZodObject<{
|
|
3055
3055
|
source: z.ZodEnum<{
|
|
3056
3056
|
literal: "literal";
|
|
3057
|
-
body: "body";
|
|
3058
3057
|
header: "header";
|
|
3058
|
+
body: "body";
|
|
3059
3059
|
}>;
|
|
3060
3060
|
key: z.ZodOptional<z.ZodString>;
|
|
3061
3061
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3164,8 +3164,8 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
|
3164
3164
|
signature: z.ZodObject<{
|
|
3165
3165
|
source: z.ZodEnum<{
|
|
3166
3166
|
query: "query";
|
|
3167
|
-
body: "body";
|
|
3168
3167
|
header: "header";
|
|
3168
|
+
body: "body";
|
|
3169
3169
|
}>;
|
|
3170
3170
|
key: z.ZodString;
|
|
3171
3171
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3174,8 +3174,8 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
|
3174
3174
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
3175
3175
|
source: z.ZodEnum<{
|
|
3176
3176
|
literal: "literal";
|
|
3177
|
-
body: "body";
|
|
3178
3177
|
header: "header";
|
|
3178
|
+
body: "body";
|
|
3179
3179
|
}>;
|
|
3180
3180
|
key: z.ZodOptional<z.ZodString>;
|
|
3181
3181
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3226,18 +3226,18 @@ type ComponentJoin = z.infer<typeof ComponentJoinSchema>;
|
|
|
3226
3226
|
*/
|
|
3227
3227
|
type SignatureValidationOptions = z.infer<typeof SignatureValidationOptionsSchema>;
|
|
3228
3228
|
declare const TriggerInvocationStatusEnum: z.ZodEnum<{
|
|
3229
|
-
pending: "pending";
|
|
3230
3229
|
success: "success";
|
|
3230
|
+
pending: "pending";
|
|
3231
3231
|
failed: "failed";
|
|
3232
3232
|
}>;
|
|
3233
3233
|
declare const TriggerSelectSchema: z.ZodObject<{
|
|
3234
3234
|
createdAt: z.ZodString;
|
|
3235
3235
|
updatedAt: z.ZodString;
|
|
3236
3236
|
enabled: z.ZodBoolean;
|
|
3237
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
3238
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
3237
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
3238
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
3239
3239
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
3240
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
3240
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
3241
3241
|
name: z.ZodString;
|
|
3242
3242
|
description: z.ZodNullable<z.ZodString>;
|
|
3243
3243
|
agentId: z.ZodString;
|
|
@@ -3260,8 +3260,8 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3260
3260
|
signature: z.ZodObject<{
|
|
3261
3261
|
source: z.ZodEnum<{
|
|
3262
3262
|
query: "query";
|
|
3263
|
-
body: "body";
|
|
3264
3263
|
header: "header";
|
|
3264
|
+
body: "body";
|
|
3265
3265
|
}>;
|
|
3266
3266
|
key: z.ZodString;
|
|
3267
3267
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3270,8 +3270,8 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3270
3270
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
3271
3271
|
source: z.ZodEnum<{
|
|
3272
3272
|
literal: "literal";
|
|
3273
|
-
body: "body";
|
|
3274
3273
|
header: "header";
|
|
3274
|
+
body: "body";
|
|
3275
3275
|
}>;
|
|
3276
3276
|
key: z.ZodOptional<z.ZodString>;
|
|
3277
3277
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3294,7 +3294,7 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3294
3294
|
out: {};
|
|
3295
3295
|
in: {};
|
|
3296
3296
|
}>;
|
|
3297
|
-
declare const TriggerInsertSchema:
|
|
3297
|
+
declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
3298
3298
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
3299
3299
|
name: "created_at";
|
|
3300
3300
|
tableName: "triggers";
|
|
@@ -3454,13 +3454,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3454
3454
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3455
3455
|
encoding: "hex" | "base64";
|
|
3456
3456
|
signature: {
|
|
3457
|
-
source: "query" | "
|
|
3457
|
+
source: "query" | "header" | "body";
|
|
3458
3458
|
key: string;
|
|
3459
3459
|
prefix?: string | undefined;
|
|
3460
3460
|
regex?: string | undefined;
|
|
3461
3461
|
};
|
|
3462
3462
|
signedComponents: {
|
|
3463
|
-
source: "literal" | "
|
|
3463
|
+
source: "literal" | "header" | "body";
|
|
3464
3464
|
required: boolean;
|
|
3465
3465
|
key?: string | undefined;
|
|
3466
3466
|
value?: string | undefined;
|
|
@@ -3491,13 +3491,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3491
3491
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3492
3492
|
encoding: "hex" | "base64";
|
|
3493
3493
|
signature: {
|
|
3494
|
-
source: "query" | "
|
|
3494
|
+
source: "query" | "header" | "body";
|
|
3495
3495
|
key: string;
|
|
3496
3496
|
prefix?: string | undefined;
|
|
3497
3497
|
regex?: string | undefined;
|
|
3498
3498
|
};
|
|
3499
3499
|
signedComponents: {
|
|
3500
|
-
source: "literal" | "
|
|
3500
|
+
source: "literal" | "header" | "body";
|
|
3501
3501
|
required: boolean;
|
|
3502
3502
|
key?: string | undefined;
|
|
3503
3503
|
value?: string | undefined;
|
|
@@ -3626,7 +3626,7 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3626
3626
|
}, {}, {
|
|
3627
3627
|
length: 256;
|
|
3628
3628
|
}>;
|
|
3629
|
-
},
|
|
3629
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
3630
3630
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
3631
3631
|
name: "created_at";
|
|
3632
3632
|
tableName: "triggers";
|
|
@@ -3786,13 +3786,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3786
3786
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3787
3787
|
encoding: "hex" | "base64";
|
|
3788
3788
|
signature: {
|
|
3789
|
-
source: "query" | "
|
|
3789
|
+
source: "query" | "header" | "body";
|
|
3790
3790
|
key: string;
|
|
3791
3791
|
prefix?: string | undefined;
|
|
3792
3792
|
regex?: string | undefined;
|
|
3793
3793
|
};
|
|
3794
3794
|
signedComponents: {
|
|
3795
|
-
source: "literal" | "
|
|
3795
|
+
source: "literal" | "header" | "body";
|
|
3796
3796
|
required: boolean;
|
|
3797
3797
|
key?: string | undefined;
|
|
3798
3798
|
value?: string | undefined;
|
|
@@ -3823,13 +3823,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3823
3823
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3824
3824
|
encoding: "hex" | "base64";
|
|
3825
3825
|
signature: {
|
|
3826
|
-
source: "query" | "
|
|
3826
|
+
source: "query" | "header" | "body";
|
|
3827
3827
|
key: string;
|
|
3828
3828
|
prefix?: string | undefined;
|
|
3829
3829
|
regex?: string | undefined;
|
|
3830
3830
|
};
|
|
3831
3831
|
signedComponents: {
|
|
3832
|
-
source: "literal" | "
|
|
3832
|
+
source: "literal" | "header" | "body";
|
|
3833
3833
|
required: boolean;
|
|
3834
3834
|
key?: string | undefined;
|
|
3835
3835
|
value?: string | undefined;
|
|
@@ -3958,16 +3958,16 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3958
3958
|
}, {}, {
|
|
3959
3959
|
length: 256;
|
|
3960
3960
|
}>;
|
|
3961
|
-
}, "id" | "name" | "
|
|
3961
|
+
}, "id" | "name" | "description" | "tenantId" | "projectId" | "agentId" | "createdAt" | "updatedAt" | "enabled" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification">, undefined>, undefined>;
|
|
3962
3962
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
3963
3963
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3964
3964
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3965
|
-
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
3966
|
-
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
3965
|
+
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
3966
|
+
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
3967
3967
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
3968
|
-
authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
3968
|
+
authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
3969
3969
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
3970
|
-
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
3970
|
+
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
3971
3971
|
name: z.ZodOptional<z.ZodString>;
|
|
3972
3972
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
3973
3973
|
agentId: z.ZodOptional<z.ZodString>;
|
|
@@ -3983,10 +3983,10 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
3983
3983
|
createdAt: z.ZodString;
|
|
3984
3984
|
updatedAt: z.ZodString;
|
|
3985
3985
|
enabled: z.ZodBoolean;
|
|
3986
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
3987
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
3986
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
3987
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
3988
3988
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
3989
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
3989
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
3990
3990
|
name: z.ZodString;
|
|
3991
3991
|
description: z.ZodNullable<z.ZodString>;
|
|
3992
3992
|
agentId: z.ZodString;
|
|
@@ -4009,8 +4009,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4009
4009
|
signature: z.ZodObject<{
|
|
4010
4010
|
source: z.ZodEnum<{
|
|
4011
4011
|
query: "query";
|
|
4012
|
-
body: "body";
|
|
4013
4012
|
header: "header";
|
|
4013
|
+
body: "body";
|
|
4014
4014
|
}>;
|
|
4015
4015
|
key: z.ZodString;
|
|
4016
4016
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -4019,8 +4019,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4019
4019
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4020
4020
|
source: z.ZodEnum<{
|
|
4021
4021
|
literal: "literal";
|
|
4022
|
-
body: "body";
|
|
4023
4022
|
header: "header";
|
|
4023
|
+
body: "body";
|
|
4024
4024
|
}>;
|
|
4025
4025
|
key: z.ZodOptional<z.ZodString>;
|
|
4026
4026
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -4042,27 +4042,27 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4042
4042
|
}>, z.core.$strip>;
|
|
4043
4043
|
declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
4044
4044
|
name: z.ZodString;
|
|
4045
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4045
4046
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4046
4047
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4047
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4048
4048
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4049
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4050
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4049
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4050
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4051
4051
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4052
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4052
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4053
4053
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4054
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4054
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4055
4055
|
id: z.ZodOptional<z.ZodString>;
|
|
4056
4056
|
}, z.core.$strip>;
|
|
4057
4057
|
declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
4058
4058
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4059
4059
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4060
|
-
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4061
|
-
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4060
|
+
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
4061
|
+
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
4062
4062
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4063
|
-
authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4063
|
+
authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
4064
4064
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4065
|
-
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4065
|
+
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
4066
4066
|
name: z.ZodOptional<z.ZodString>;
|
|
4067
4067
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4068
4068
|
agentId: z.ZodOptional<z.ZodString>;
|
|
@@ -4077,14 +4077,14 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4077
4077
|
declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
4078
4078
|
id: z.ZodString;
|
|
4079
4079
|
name: z.ZodString;
|
|
4080
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4080
4081
|
createdAt: z.ZodString;
|
|
4081
4082
|
updatedAt: z.ZodString;
|
|
4082
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4083
4083
|
enabled: z.ZodBoolean;
|
|
4084
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
4085
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
4084
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4085
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4086
4086
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4087
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
4087
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4088
4088
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4089
4089
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4090
4090
|
algorithm: z.ZodEnum<{
|
|
@@ -4101,8 +4101,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4101
4101
|
signature: z.ZodObject<{
|
|
4102
4102
|
source: z.ZodEnum<{
|
|
4103
4103
|
query: "query";
|
|
4104
|
-
body: "body";
|
|
4105
4104
|
header: "header";
|
|
4105
|
+
body: "body";
|
|
4106
4106
|
}>;
|
|
4107
4107
|
key: z.ZodString;
|
|
4108
4108
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -4111,8 +4111,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4111
4111
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4112
4112
|
source: z.ZodEnum<{
|
|
4113
4113
|
literal: "literal";
|
|
4114
|
-
body: "body";
|
|
4115
4114
|
header: "header";
|
|
4115
|
+
body: "body";
|
|
4116
4116
|
}>;
|
|
4117
4117
|
key: z.ZodOptional<z.ZodString>;
|
|
4118
4118
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -4133,7 +4133,7 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4133
4133
|
}, z.core.$strip>>>;
|
|
4134
4134
|
webhookUrl: z.ZodString;
|
|
4135
4135
|
}, z.core.$strip>;
|
|
4136
|
-
declare const TriggerInvocationSelectSchema:
|
|
4136
|
+
declare const TriggerInvocationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
4137
4137
|
triggerId: drizzle_orm_pg_core211.PgColumn<{
|
|
4138
4138
|
name: "trigger_id";
|
|
4139
4139
|
tableName: "trigger_invocations";
|
|
@@ -4335,7 +4335,7 @@ declare const TriggerInvocationSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
4335
4335
|
}, {}, {
|
|
4336
4336
|
length: 256;
|
|
4337
4337
|
}>;
|
|
4338
|
-
},
|
|
4338
|
+
}, drizzle_zod15.BuildRefine<{
|
|
4339
4339
|
triggerId: drizzle_orm_pg_core211.PgColumn<{
|
|
4340
4340
|
name: "trigger_id";
|
|
4341
4341
|
tableName: "trigger_invocations";
|
|
@@ -4538,7 +4538,7 @@ declare const TriggerInvocationSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
4538
4538
|
length: 256;
|
|
4539
4539
|
}>;
|
|
4540
4540
|
}, undefined>, undefined>;
|
|
4541
|
-
declare const TriggerInvocationInsertSchema:
|
|
4541
|
+
declare const TriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
4542
4542
|
triggerId: drizzle_orm_pg_core211.PgColumn<{
|
|
4543
4543
|
name: "trigger_id";
|
|
4544
4544
|
tableName: "trigger_invocations";
|
|
@@ -4740,7 +4740,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
4740
4740
|
}, {}, {
|
|
4741
4741
|
length: 256;
|
|
4742
4742
|
}>;
|
|
4743
|
-
},
|
|
4743
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
4744
4744
|
triggerId: drizzle_orm_pg_core211.PgColumn<{
|
|
4745
4745
|
name: "trigger_id";
|
|
4746
4746
|
tableName: "trigger_invocations";
|
|
@@ -4942,13 +4942,13 @@ declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
4942
4942
|
}, {}, {
|
|
4943
4943
|
length: 256;
|
|
4944
4944
|
}>;
|
|
4945
|
-
}, "id" | "
|
|
4945
|
+
}, "id" | "tenantId" | "projectId" | "agentId" | "createdAt" | "status" | "triggerId" | "conversationId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
4946
4946
|
declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
4947
4947
|
triggerId: z.ZodOptional<z.ZodString>;
|
|
4948
4948
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4949
4949
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4950
|
-
requestPayload: z.ZodOptional<z.ZodType<
|
|
4951
|
-
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4950
|
+
requestPayload: z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4951
|
+
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
4952
4952
|
errorMessage: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4953
4953
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4954
4954
|
agentId: z.ZodOptional<z.ZodString>;
|
|
@@ -4963,8 +4963,8 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4963
4963
|
triggerId: z.ZodString;
|
|
4964
4964
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
4965
4965
|
status: z.ZodString;
|
|
4966
|
-
requestPayload: z.ZodType<
|
|
4967
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
4966
|
+
requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
4967
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4968
4968
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
4969
4969
|
createdAt: z.ZodString;
|
|
4970
4970
|
agentId: z.ZodString;
|
|
@@ -4977,8 +4977,8 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
4977
4977
|
status: z.ZodOptional<z.ZodString>;
|
|
4978
4978
|
triggerId: z.ZodString;
|
|
4979
4979
|
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4980
|
-
requestPayload: z.ZodType<
|
|
4981
|
-
transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4980
|
+
requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
4981
|
+
transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4982
4982
|
errorMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4983
4983
|
id: z.ZodString;
|
|
4984
4984
|
}, z.core.$strip>;
|
|
@@ -4988,11 +4988,11 @@ declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
4988
4988
|
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4989
4989
|
triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4990
4990
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4991
|
-
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<
|
|
4992
|
-
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4991
|
+
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4992
|
+
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
4993
4993
|
errorMessage: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4994
4994
|
}, z.core.$strip>;
|
|
4995
|
-
declare const TaskSelectSchema:
|
|
4995
|
+
declare const TaskSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
4996
4996
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
4997
4997
|
name: "created_at";
|
|
4998
4998
|
tableName: "tasks";
|
|
@@ -5206,7 +5206,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
5206
5206
|
}, {}, {
|
|
5207
5207
|
length: 256;
|
|
5208
5208
|
}>;
|
|
5209
|
-
},
|
|
5209
|
+
}, drizzle_zod15.BuildRefine<{
|
|
5210
5210
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
5211
5211
|
name: "created_at";
|
|
5212
5212
|
tableName: "tasks";
|
|
@@ -5524,8 +5524,10 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
5524
5524
|
}>, z.core.$strip>;
|
|
5525
5525
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
5526
5526
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5527
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5527
5528
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5528
5529
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5530
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
5529
5531
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
5530
5532
|
type: z.ZodEnum<{
|
|
5531
5533
|
tag: "tag";
|
|
@@ -5535,14 +5537,12 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
5535
5537
|
name: z.ZodString;
|
|
5536
5538
|
hash: z.ZodString;
|
|
5537
5539
|
}, z.core.$strip>>>;
|
|
5538
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
5539
5540
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5540
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5541
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5542
5541
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5543
5542
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5543
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5544
5544
|
}, z.core.$strip>;
|
|
5545
|
-
declare const TaskRelationSelectSchema:
|
|
5545
|
+
declare const TaskRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
5546
5546
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
5547
5547
|
name: "created_at";
|
|
5548
5548
|
tableName: "task_relations";
|
|
@@ -5691,7 +5691,7 @@ declare const TaskRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
5691
5691
|
}, {}, {
|
|
5692
5692
|
length: 256;
|
|
5693
5693
|
}>;
|
|
5694
|
-
},
|
|
5694
|
+
}, drizzle_zod15.BuildRefine<{
|
|
5695
5695
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
5696
5696
|
name: "created_at";
|
|
5697
5697
|
tableName: "task_relations";
|
|
@@ -5917,7 +5917,7 @@ declare const McpToolDefinitionSchema: z.ZodObject<{
|
|
|
5917
5917
|
description: z.ZodOptional<z.ZodString>;
|
|
5918
5918
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5919
5919
|
}, z.core.$strip>;
|
|
5920
|
-
declare const ToolSelectSchema:
|
|
5920
|
+
declare const ToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
5921
5921
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
5922
5922
|
name: "created_at";
|
|
5923
5923
|
tableName: "tools";
|
|
@@ -6197,7 +6197,7 @@ declare const ToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
6197
6197
|
}, {}, {
|
|
6198
6198
|
length: 256;
|
|
6199
6199
|
}>;
|
|
6200
|
-
},
|
|
6200
|
+
}, drizzle_zod15.BuildRefine<{
|
|
6201
6201
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
6202
6202
|
name: "created_at";
|
|
6203
6203
|
tableName: "tools";
|
|
@@ -6523,7 +6523,7 @@ declare const ToolInsertSchema: z.ZodObject<{
|
|
|
6523
6523
|
out: {};
|
|
6524
6524
|
in: {};
|
|
6525
6525
|
}>;
|
|
6526
|
-
declare const ConversationSelectSchema:
|
|
6526
|
+
declare const ConversationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
6527
6527
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
6528
6528
|
name: "created_at";
|
|
6529
6529
|
tableName: "conversations";
|
|
@@ -6752,7 +6752,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
6752
6752
|
}, {}, {
|
|
6753
6753
|
length: 256;
|
|
6754
6754
|
}>;
|
|
6755
|
-
},
|
|
6755
|
+
}, drizzle_zod15.BuildRefine<{
|
|
6756
6756
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
6757
6757
|
name: "created_at";
|
|
6758
6758
|
tableName: "conversations";
|
|
@@ -7089,8 +7089,12 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
7089
7089
|
}>, z.core.$strip>;
|
|
7090
7090
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
7091
7091
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7092
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7093
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7092
7094
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7093
7095
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7096
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7097
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
7094
7098
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7095
7099
|
type: z.ZodEnum<{
|
|
7096
7100
|
tag: "tag";
|
|
@@ -7101,14 +7105,10 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
7101
7105
|
hash: z.ZodString;
|
|
7102
7106
|
}, z.core.$strip>>>;
|
|
7103
7107
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7104
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
7105
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7106
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7107
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7108
7108
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7109
7109
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7110
7110
|
}, z.core.$strip>;
|
|
7111
|
-
declare const MessageSelectSchema:
|
|
7111
|
+
declare const MessageSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
7112
7112
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
7113
7113
|
name: "created_at";
|
|
7114
7114
|
tableName: "messages";
|
|
@@ -7504,7 +7504,7 @@ declare const MessageSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
7504
7504
|
}, {}, {
|
|
7505
7505
|
length: 256;
|
|
7506
7506
|
}>;
|
|
7507
|
-
},
|
|
7507
|
+
}, drizzle_zod15.BuildRefine<{
|
|
7508
7508
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
7509
7509
|
name: "created_at";
|
|
7510
7510
|
tableName: "messages";
|
|
@@ -8004,23 +8004,23 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
8004
8004
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8005
8005
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8006
8006
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
8007
|
-
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8008
8007
|
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8008
|
+
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8009
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8009
8010
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8010
8011
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8011
8012
|
fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8012
8013
|
toExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8013
|
-
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8014
|
-
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8015
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8016
8014
|
fromTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8017
8015
|
toTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8018
8016
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8019
8017
|
messageType: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8018
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8020
8019
|
parentMessageId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8020
|
+
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8021
8021
|
a2aSessionId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8022
8022
|
}, z.core.$strip>;
|
|
8023
|
-
declare const ContextCacheSelectSchema:
|
|
8023
|
+
declare const ContextCacheSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
8024
8024
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
8025
8025
|
name: "created_at";
|
|
8026
8026
|
tableName: "context_cache";
|
|
@@ -8270,7 +8270,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8270
8270
|
}, {}, {
|
|
8271
8271
|
length: 256;
|
|
8272
8272
|
}>;
|
|
8273
|
-
},
|
|
8273
|
+
}, drizzle_zod15.BuildRefine<{
|
|
8274
8274
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
8275
8275
|
name: "created_at";
|
|
8276
8276
|
tableName: "context_cache";
|
|
@@ -8527,7 +8527,7 @@ declare const ContextCacheInsertSchema: z.ZodObject<{
|
|
|
8527
8527
|
conversationId: z.ZodString;
|
|
8528
8528
|
contextConfigId: z.ZodString;
|
|
8529
8529
|
contextVariableKey: z.ZodString;
|
|
8530
|
-
value: z.ZodType<
|
|
8530
|
+
value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
8531
8531
|
requestHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8532
8532
|
fetchedAt: z.ZodOptional<z.ZodString>;
|
|
8533
8533
|
fetchSource: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8553,7 +8553,7 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
8553
8553
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
8554
8554
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
8555
8555
|
contextVariableKey: z.ZodOptional<z.ZodString>;
|
|
8556
|
-
value: z.ZodOptional<z.ZodType<
|
|
8556
|
+
value: z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
8557
8557
|
requestHash: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
8558
8558
|
fetchedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8559
8559
|
fetchSource: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -8596,7 +8596,7 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8596
8596
|
name: string;
|
|
8597
8597
|
hash: string;
|
|
8598
8598
|
}>>>;
|
|
8599
|
-
value: z.ZodType<
|
|
8599
|
+
value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
8600
8600
|
requestHash: z.ZodNullable<z.ZodString>;
|
|
8601
8601
|
fetchedAt: z.ZodString;
|
|
8602
8602
|
fetchSource: z.ZodNullable<z.ZodString>;
|
|
@@ -8610,7 +8610,7 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8610
8610
|
conversationId: z.ZodString;
|
|
8611
8611
|
contextConfigId: z.ZodString;
|
|
8612
8612
|
contextVariableKey: z.ZodString;
|
|
8613
|
-
value: z.ZodType<
|
|
8613
|
+
value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
8614
8614
|
requestHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8615
8615
|
fetchedAt: z.ZodOptional<z.ZodString>;
|
|
8616
8616
|
fetchSource: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8629,8 +8629,10 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8629
8629
|
}>, z.core.$strip>;
|
|
8630
8630
|
declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
8631
8631
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8632
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
8632
8633
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8633
8634
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8635
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8634
8636
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
8635
8637
|
type: z.ZodEnum<{
|
|
8636
8638
|
tag: "tag";
|
|
@@ -8640,15 +8642,13 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
8640
8642
|
name: z.ZodString;
|
|
8641
8643
|
hash: z.ZodString;
|
|
8642
8644
|
}, z.core.$strip>>>;
|
|
8643
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
8644
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8645
8645
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8646
8646
|
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8647
8647
|
requestHash: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8648
8648
|
fetchedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8649
8649
|
fetchSource: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8650
8650
|
}, z.core.$strip>;
|
|
8651
|
-
declare const DatasetRunSelectSchema:
|
|
8651
|
+
declare const DatasetRunSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
8652
8652
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
8653
8653
|
name: "created_at";
|
|
8654
8654
|
tableName: "dataset_run";
|
|
@@ -8791,7 +8791,7 @@ declare const DatasetRunSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8791
8791
|
}, {}, {
|
|
8792
8792
|
length: 256;
|
|
8793
8793
|
}>;
|
|
8794
|
-
},
|
|
8794
|
+
}, drizzle_zod15.BuildRefine<{
|
|
8795
8795
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
8796
8796
|
name: "created_at";
|
|
8797
8797
|
tableName: "dataset_run";
|
|
@@ -8985,7 +8985,7 @@ declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
|
8985
8985
|
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8986
8986
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8987
8987
|
}, z.core.$strip>;
|
|
8988
|
-
declare const DatasetRunConversationRelationSelectSchema:
|
|
8988
|
+
declare const DatasetRunConversationRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
8989
8989
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
8990
8990
|
name: "created_at";
|
|
8991
8991
|
tableName: "dataset_run_conversation_relations";
|
|
@@ -9128,7 +9128,7 @@ declare const DatasetRunConversationRelationSelectSchema: drizzle_zod19.BuildSch
|
|
|
9128
9128
|
}, {}, {
|
|
9129
9129
|
length: 256;
|
|
9130
9130
|
}>;
|
|
9131
|
-
},
|
|
9131
|
+
}, drizzle_zod15.BuildRefine<{
|
|
9132
9132
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
9133
9133
|
name: "created_at";
|
|
9134
9134
|
tableName: "dataset_run_conversation_relations";
|
|
@@ -9322,7 +9322,7 @@ declare const DatasetRunConversationRelationApiUpdateSchema: z.ZodObject<{
|
|
|
9322
9322
|
datasetRunId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9323
9323
|
datasetItemId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9324
9324
|
}, z.core.$strip>;
|
|
9325
|
-
declare const EvaluationResultSelectSchema:
|
|
9325
|
+
declare const EvaluationResultSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
9326
9326
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
9327
9327
|
name: "created_at";
|
|
9328
9328
|
tableName: "evaluation_result";
|
|
@@ -9484,7 +9484,7 @@ declare const EvaluationResultSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
9484
9484
|
}, {}, {
|
|
9485
9485
|
length: 256;
|
|
9486
9486
|
}>;
|
|
9487
|
-
},
|
|
9487
|
+
}, drizzle_zod15.BuildRefine<{
|
|
9488
9488
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
9489
9489
|
name: "created_at";
|
|
9490
9490
|
tableName: "evaluation_result";
|
|
@@ -9702,7 +9702,7 @@ declare const EvaluationResultApiUpdateSchema: z.ZodObject<{
|
|
|
9702
9702
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9703
9703
|
evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9704
9704
|
}, z.core.$strip>;
|
|
9705
|
-
declare const EvaluationRunSelectSchema:
|
|
9705
|
+
declare const EvaluationRunSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
9706
9706
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
9707
9707
|
name: "created_at";
|
|
9708
9708
|
tableName: "evaluation_run";
|
|
@@ -9828,7 +9828,7 @@ declare const EvaluationRunSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
9828
9828
|
}, {}, {
|
|
9829
9829
|
length: 256;
|
|
9830
9830
|
}>;
|
|
9831
|
-
},
|
|
9831
|
+
}, drizzle_zod15.BuildRefine<{
|
|
9832
9832
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
9833
9833
|
name: "created_at";
|
|
9834
9834
|
tableName: "evaluation_run";
|
|
@@ -10000,7 +10000,7 @@ declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
|
10000
10000
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10001
10001
|
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10002
10002
|
}, z.core.$strip>;
|
|
10003
|
-
declare const EvaluationRunConfigSelectSchema:
|
|
10003
|
+
declare const EvaluationRunConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
10004
10004
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
10005
10005
|
name: "created_at";
|
|
10006
10006
|
tableName: "evaluation_run_config";
|
|
@@ -10145,7 +10145,7 @@ declare const EvaluationRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select
|
|
|
10145
10145
|
}, {}, {
|
|
10146
10146
|
length: 256;
|
|
10147
10147
|
}>;
|
|
10148
|
-
},
|
|
10148
|
+
}, drizzle_zod15.BuildRefine<{
|
|
10149
10149
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
10150
10150
|
name: "created_at";
|
|
10151
10151
|
tableName: "evaluation_run_config";
|
|
@@ -10329,30 +10329,30 @@ declare const EvaluationRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
10329
10329
|
}>, z.core.$strip>;
|
|
10330
10330
|
declare const EvaluationRunConfigApiInsertSchema: z.ZodObject<{
|
|
10331
10331
|
name: z.ZodString;
|
|
10332
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10332
10333
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10333
10334
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10334
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10335
10335
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
10336
10336
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
10337
10337
|
}, z.core.$strip>;
|
|
10338
10338
|
declare const EvaluationRunConfigApiUpdateSchema: z.ZodObject<{
|
|
10339
10339
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10340
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10340
10341
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10341
10342
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10342
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10343
10343
|
isActive: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
10344
10344
|
suiteConfigIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10345
10345
|
}, z.core.$strip>;
|
|
10346
10346
|
declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
10347
10347
|
id: z.ZodString;
|
|
10348
10348
|
name: z.ZodString;
|
|
10349
|
+
description: z.ZodNullable<z.ZodString>;
|
|
10349
10350
|
createdAt: z.ZodString;
|
|
10350
10351
|
updatedAt: z.ZodString;
|
|
10351
|
-
description: z.ZodNullable<z.ZodString>;
|
|
10352
10352
|
isActive: z.ZodBoolean;
|
|
10353
10353
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
10354
10354
|
}, z.core.$strip>;
|
|
10355
|
-
declare const EvaluationJobConfigSelectSchema:
|
|
10355
|
+
declare const EvaluationJobConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
10356
10356
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
10357
10357
|
name: "created_at";
|
|
10358
10358
|
tableName: "evaluation_job_config";
|
|
@@ -10477,7 +10477,7 @@ declare const EvaluationJobConfigSelectSchema: drizzle_zod19.BuildSchema<"select
|
|
|
10477
10477
|
}, {}, {
|
|
10478
10478
|
length: 256;
|
|
10479
10479
|
}>;
|
|
10480
|
-
},
|
|
10480
|
+
}, drizzle_zod15.BuildRefine<{
|
|
10481
10481
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
10482
10482
|
name: "created_at";
|
|
10483
10483
|
tableName: "evaluation_job_config";
|
|
@@ -10784,7 +10784,7 @@ declare const EvaluationJobConfigApiUpdateSchema: z.ZodObject<{
|
|
|
10784
10784
|
} | undefined;
|
|
10785
10785
|
}>>>>>>>;
|
|
10786
10786
|
}, z.core.$strip>;
|
|
10787
|
-
declare const EvaluationSuiteConfigSelectSchema:
|
|
10787
|
+
declare const EvaluationSuiteConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
10788
10788
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
10789
10789
|
name: "created_at";
|
|
10790
10790
|
tableName: "evaluation_suite_config";
|
|
@@ -10912,7 +10912,7 @@ declare const EvaluationSuiteConfigSelectSchema: drizzle_zod19.BuildSchema<"sele
|
|
|
10912
10912
|
}, {}, {
|
|
10913
10913
|
length: 256;
|
|
10914
10914
|
}>;
|
|
10915
|
-
},
|
|
10915
|
+
}, drizzle_zod15.BuildRefine<{
|
|
10916
10916
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
10917
10917
|
name: "created_at";
|
|
10918
10918
|
tableName: "evaluation_suite_config";
|
|
@@ -11088,7 +11088,7 @@ declare const EvaluationSuiteConfigApiUpdateSchema: z.ZodObject<{
|
|
|
11088
11088
|
sampleRate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>>;
|
|
11089
11089
|
evaluatorIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11090
11090
|
}, z.core.$strip>;
|
|
11091
|
-
declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema:
|
|
11091
|
+
declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
11092
11092
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11093
11093
|
name: "created_at";
|
|
11094
11094
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
@@ -11218,7 +11218,7 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: driz
|
|
|
11218
11218
|
}, {}, {
|
|
11219
11219
|
length: 256;
|
|
11220
11220
|
}>;
|
|
11221
|
-
},
|
|
11221
|
+
}, drizzle_zod15.BuildRefine<{
|
|
11222
11222
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11223
11223
|
name: "created_at";
|
|
11224
11224
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
@@ -11394,7 +11394,7 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiUpdateSchema: z
|
|
|
11394
11394
|
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11395
11395
|
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11396
11396
|
}, z.core.$strip>;
|
|
11397
|
-
declare const EvaluationJobConfigEvaluatorRelationSelectSchema:
|
|
11397
|
+
declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
11398
11398
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11399
11399
|
name: "created_at";
|
|
11400
11400
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
@@ -11524,7 +11524,7 @@ declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod19.Bu
|
|
|
11524
11524
|
}, {}, {
|
|
11525
11525
|
length: 256;
|
|
11526
11526
|
}>;
|
|
11527
|
-
},
|
|
11527
|
+
}, drizzle_zod15.BuildRefine<{
|
|
11528
11528
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11529
11529
|
name: "created_at";
|
|
11530
11530
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
@@ -11700,7 +11700,7 @@ declare const EvaluationJobConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
|
|
|
11700
11700
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11701
11701
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11702
11702
|
}, z.core.$strip>;
|
|
11703
|
-
declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema:
|
|
11703
|
+
declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
11704
11704
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11705
11705
|
name: "created_at";
|
|
11706
11706
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
@@ -11830,7 +11830,7 @@ declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod19.
|
|
|
11830
11830
|
}, {}, {
|
|
11831
11831
|
length: 256;
|
|
11832
11832
|
}>;
|
|
11833
|
-
},
|
|
11833
|
+
}, drizzle_zod15.BuildRefine<{
|
|
11834
11834
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11835
11835
|
name: "created_at";
|
|
11836
11836
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
@@ -12006,7 +12006,7 @@ declare const EvaluationSuiteConfigEvaluatorRelationApiUpdateSchema: z.ZodObject
|
|
|
12006
12006
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12007
12007
|
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12008
12008
|
}, z.core.$strip>;
|
|
12009
|
-
declare const EvaluatorSelectSchema:
|
|
12009
|
+
declare const EvaluatorSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
12010
12010
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
12011
12011
|
name: "created_at";
|
|
12012
12012
|
tableName: "evaluator";
|
|
@@ -12214,7 +12214,7 @@ declare const EvaluatorSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
12214
12214
|
}, {}, {
|
|
12215
12215
|
length: 256;
|
|
12216
12216
|
}>;
|
|
12217
|
-
},
|
|
12217
|
+
}, drizzle_zod15.BuildRefine<{
|
|
12218
12218
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
12219
12219
|
name: "created_at";
|
|
12220
12220
|
tableName: "evaluator";
|
|
@@ -12506,10 +12506,8 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
12506
12506
|
}>, z.core.$strip>;
|
|
12507
12507
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
12508
12508
|
name: z.ZodString;
|
|
12509
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
12510
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12511
|
-
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
12512
12509
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12510
|
+
prompt: z.ZodString;
|
|
12513
12511
|
model: z.ZodType<{
|
|
12514
12512
|
model?: string | undefined;
|
|
12515
12513
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -12523,15 +12521,15 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
12523
12521
|
model?: string | undefined;
|
|
12524
12522
|
providerOptions?: Record<string, any> | undefined;
|
|
12525
12523
|
}>>;
|
|
12526
|
-
|
|
12524
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
12525
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12526
|
+
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
12527
12527
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
|
|
12528
12528
|
}, z.core.$strip>;
|
|
12529
12529
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
12530
12530
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12531
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12532
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12533
|
-
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
12534
12531
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12532
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12535
12533
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
12536
12534
|
model?: string | undefined;
|
|
12537
12535
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -12545,10 +12543,12 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
12545
12543
|
model?: string | undefined;
|
|
12546
12544
|
providerOptions?: Record<string, any> | undefined;
|
|
12547
12545
|
}>>>>;
|
|
12548
|
-
|
|
12546
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12547
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12548
|
+
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
12549
12549
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
|
|
12550
12550
|
}, z.core.$strip>;
|
|
12551
|
-
declare const DatasetSelectSchema:
|
|
12551
|
+
declare const DatasetSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
12552
12552
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
12553
12553
|
name: "created_at";
|
|
12554
12554
|
tableName: "dataset";
|
|
@@ -12659,7 +12659,7 @@ declare const DatasetSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
12659
12659
|
}, {}, {
|
|
12660
12660
|
length: 256;
|
|
12661
12661
|
}>;
|
|
12662
|
-
},
|
|
12662
|
+
}, drizzle_zod15.BuildRefine<{
|
|
12663
12663
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
12664
12664
|
name: "created_at";
|
|
12665
12665
|
tableName: "dataset";
|
|
@@ -12811,7 +12811,7 @@ declare const DatasetApiUpdateSchema: z.ZodObject<{
|
|
|
12811
12811
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12812
12812
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12813
12813
|
}, z.core.$strip>;
|
|
12814
|
-
declare const DatasetItemSelectSchema:
|
|
12814
|
+
declare const DatasetItemSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
12815
12815
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
12816
12816
|
name: "created_at";
|
|
12817
12817
|
tableName: "dataset_item";
|
|
@@ -12999,7 +12999,7 @@ declare const DatasetItemSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
12999
12999
|
}, {}, {
|
|
13000
13000
|
length: 256;
|
|
13001
13001
|
}>;
|
|
13002
|
-
},
|
|
13002
|
+
}, drizzle_zod15.BuildRefine<{
|
|
13003
13003
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
13004
13004
|
name: "created_at";
|
|
13005
13005
|
tableName: "dataset_item";
|
|
@@ -13442,8 +13442,8 @@ declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
|
13442
13442
|
}>>>>>>;
|
|
13443
13443
|
}, z.core.$strip>;
|
|
13444
13444
|
declare const DatasetRunItemSchema: z.ZodObject<{
|
|
13445
|
-
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13446
13445
|
id: z.ZodOptional<z.ZodString>;
|
|
13446
|
+
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13447
13447
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13448
13448
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
13449
13449
|
prompt: string;
|
|
@@ -13491,8 +13491,8 @@ declare const DatasetRunItemSchema: z.ZodObject<{
|
|
|
13491
13491
|
declare const TriggerDatasetRunSchema: z.ZodObject<{
|
|
13492
13492
|
datasetRunId: z.ZodString;
|
|
13493
13493
|
items: z.ZodArray<z.ZodObject<{
|
|
13494
|
-
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13495
13494
|
id: z.ZodOptional<z.ZodString>;
|
|
13495
|
+
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13496
13496
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13497
13497
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
13498
13498
|
prompt: string;
|
|
@@ -13570,7 +13570,7 @@ declare const TriggerEvaluationJobSchema: z.ZodObject<{
|
|
|
13570
13570
|
}, z.core.$strip>>;
|
|
13571
13571
|
}, z.core.$strip>>>;
|
|
13572
13572
|
}, z.core.$strip>;
|
|
13573
|
-
declare const DatasetRunConfigSelectSchema:
|
|
13573
|
+
declare const DatasetRunConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
13574
13574
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
13575
13575
|
name: "created_at";
|
|
13576
13576
|
tableName: "dataset_run_config";
|
|
@@ -13717,7 +13717,7 @@ declare const DatasetRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
13717
13717
|
}, {}, {
|
|
13718
13718
|
length: 256;
|
|
13719
13719
|
}>;
|
|
13720
|
-
},
|
|
13720
|
+
}, drizzle_zod15.BuildRefine<{
|
|
13721
13721
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
13722
13722
|
name: "created_at";
|
|
13723
13723
|
tableName: "dataset_run_config";
|
|
@@ -13903,19 +13903,19 @@ declare const DatasetRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
13903
13903
|
}>, z.core.$strip>;
|
|
13904
13904
|
declare const DatasetRunConfigApiInsertSchema: z.ZodObject<{
|
|
13905
13905
|
name: z.ZodString;
|
|
13906
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13906
13907
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13907
13908
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13908
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13909
13909
|
datasetId: z.ZodString;
|
|
13910
13910
|
}, z.core.$strip>;
|
|
13911
13911
|
declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
13912
13912
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13913
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13913
13914
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13914
13915
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13915
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13916
13916
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13917
13917
|
}, z.core.$strip>;
|
|
13918
|
-
declare const DatasetRunConfigAgentRelationSelectSchema:
|
|
13918
|
+
declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
13919
13919
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
13920
13920
|
name: "created_at";
|
|
13921
13921
|
tableName: "dataset_run_config_agent_relations";
|
|
@@ -14045,7 +14045,7 @@ declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSche
|
|
|
14045
14045
|
}, {}, {
|
|
14046
14046
|
length: 256;
|
|
14047
14047
|
}>;
|
|
14048
|
-
},
|
|
14048
|
+
}, drizzle_zod15.BuildRefine<{
|
|
14049
14049
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
14050
14050
|
name: "created_at";
|
|
14051
14051
|
tableName: "dataset_run_config_agent_relations";
|
|
@@ -14210,18 +14210,18 @@ declare const DatasetRunConfigAgentRelationApiSelectSchema: z.ZodObject<OmitProj
|
|
|
14210
14210
|
id: z.ZodString;
|
|
14211
14211
|
}>, z.core.$strip>;
|
|
14212
14212
|
declare const DatasetRunConfigAgentRelationApiInsertSchema: z.ZodObject<{
|
|
14213
|
+
agentId: z.ZodString;
|
|
14213
14214
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14214
14215
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14215
|
-
agentId: z.ZodString;
|
|
14216
14216
|
datasetRunConfigId: z.ZodString;
|
|
14217
14217
|
}, z.core.$strip>;
|
|
14218
14218
|
declare const DatasetRunConfigAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
14219
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14219
14220
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14220
14221
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14221
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14222
14222
|
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14223
14223
|
}, z.core.$strip>;
|
|
14224
|
-
declare const DataComponentSelectSchema:
|
|
14224
|
+
declare const DataComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
14225
14225
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
14226
14226
|
name: "created_at";
|
|
14227
14227
|
tableName: "data_components";
|
|
@@ -14393,7 +14393,7 @@ declare const DataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
14393
14393
|
}, {}, {
|
|
14394
14394
|
length: 256;
|
|
14395
14395
|
}>;
|
|
14396
|
-
},
|
|
14396
|
+
}, drizzle_zod15.BuildRefine<{
|
|
14397
14397
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
14398
14398
|
name: "created_at";
|
|
14399
14399
|
tableName: "data_components";
|
|
@@ -14596,8 +14596,8 @@ declare const DataComponentBaseSchema: z.ZodObject<{
|
|
|
14596
14596
|
id: z.ZodString;
|
|
14597
14597
|
name: z.ZodString;
|
|
14598
14598
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14599
|
-
projectId: z.ZodString;
|
|
14600
14599
|
tenantId: z.ZodString;
|
|
14600
|
+
projectId: z.ZodString;
|
|
14601
14601
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
14602
14602
|
render: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
14603
14603
|
component: string;
|
|
@@ -14691,9 +14691,9 @@ declare const DataComponentApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
14691
14691
|
declare const DataComponentApiUpdateSchema: z.ZodObject<{
|
|
14692
14692
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14693
14693
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14694
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14694
14695
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14695
14696
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14696
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14697
14697
|
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>>>>>>>;
|
|
14698
14698
|
render: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
14699
14699
|
component: string;
|
|
@@ -14709,7 +14709,7 @@ declare const DataComponentApiUpdateSchema: z.ZodObject<{
|
|
|
14709
14709
|
mockData: Record<string, unknown>;
|
|
14710
14710
|
}>>>>>>;
|
|
14711
14711
|
}, z.core.$strip>;
|
|
14712
|
-
declare const SubAgentDataComponentSelectSchema:
|
|
14712
|
+
declare const SubAgentDataComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
14713
14713
|
dataComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
14714
14714
|
name: "data_component_id";
|
|
14715
14715
|
tableName: "sub_agent_data_components";
|
|
@@ -14841,7 +14841,7 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod19.BuildSchema<"sele
|
|
|
14841
14841
|
}, {}, {
|
|
14842
14842
|
length: 256;
|
|
14843
14843
|
}>;
|
|
14844
|
-
},
|
|
14844
|
+
}, drizzle_zod15.BuildRefine<{
|
|
14845
14845
|
dataComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
14846
14846
|
name: "data_component_id";
|
|
14847
14847
|
tableName: "sub_agent_data_components";
|
|
@@ -14974,7 +14974,7 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod19.BuildSchema<"sele
|
|
|
14974
14974
|
length: 256;
|
|
14975
14975
|
}>;
|
|
14976
14976
|
}, undefined>, undefined>;
|
|
14977
|
-
declare const SubAgentDataComponentInsertSchema:
|
|
14977
|
+
declare const SubAgentDataComponentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
14978
14978
|
dataComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
14979
14979
|
name: "data_component_id";
|
|
14980
14980
|
tableName: "sub_agent_data_components";
|
|
@@ -15106,7 +15106,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"inse
|
|
|
15106
15106
|
}, {}, {
|
|
15107
15107
|
length: 256;
|
|
15108
15108
|
}>;
|
|
15109
|
-
},
|
|
15109
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
15110
15110
|
dataComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
15111
15111
|
name: "data_component_id";
|
|
15112
15112
|
tableName: "sub_agent_data_components";
|
|
@@ -15238,7 +15238,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"inse
|
|
|
15238
15238
|
}, {}, {
|
|
15239
15239
|
length: 256;
|
|
15240
15240
|
}>;
|
|
15241
|
-
}, "id" | "
|
|
15241
|
+
}, "id" | "tenantId" | "projectId" | "agentId" | "createdAt" | "subAgentId" | "dataComponentId">, undefined>, undefined>;
|
|
15242
15242
|
declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
15243
15243
|
dataComponentId: z.ZodOptional<z.ZodString>;
|
|
15244
15244
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -15274,7 +15274,7 @@ declare const SubAgentDataComponentApiUpdateSchema: z.ZodObject<{
|
|
|
15274
15274
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15275
15275
|
dataComponentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15276
15276
|
}, z.core.$strip>;
|
|
15277
|
-
declare const ArtifactComponentSelectSchema:
|
|
15277
|
+
declare const ArtifactComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
15278
15278
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
15279
15279
|
name: "created_at";
|
|
15280
15280
|
tableName: "artifact_components";
|
|
@@ -15446,7 +15446,7 @@ declare const ArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
15446
15446
|
}, {}, {
|
|
15447
15447
|
length: 256;
|
|
15448
15448
|
}>;
|
|
15449
|
-
},
|
|
15449
|
+
}, drizzle_zod15.BuildRefine<{
|
|
15450
15450
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
15451
15451
|
name: "created_at";
|
|
15452
15452
|
tableName: "artifact_components";
|
|
@@ -15719,9 +15719,9 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
15719
15719
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
15720
15720
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15721
15721
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15722
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
15722
15723
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15723
15724
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15724
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
15725
15725
|
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>>>>>>>;
|
|
15726
15726
|
render: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
15727
15727
|
component: string;
|
|
@@ -15737,7 +15737,7 @@ declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
|
15737
15737
|
mockData: Record<string, unknown>;
|
|
15738
15738
|
}>>>>>>;
|
|
15739
15739
|
}, z.core.$strip>;
|
|
15740
|
-
declare const SubAgentArtifactComponentSelectSchema:
|
|
15740
|
+
declare const SubAgentArtifactComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
15741
15741
|
artifactComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
15742
15742
|
name: "artifact_component_id";
|
|
15743
15743
|
tableName: "sub_agent_artifact_components";
|
|
@@ -15869,7 +15869,7 @@ declare const SubAgentArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
15869
15869
|
}, {}, {
|
|
15870
15870
|
length: 256;
|
|
15871
15871
|
}>;
|
|
15872
|
-
},
|
|
15872
|
+
}, drizzle_zod15.BuildRefine<{
|
|
15873
15873
|
artifactComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
15874
15874
|
name: "artifact_component_id";
|
|
15875
15875
|
tableName: "sub_agent_artifact_components";
|
|
@@ -16116,18 +16116,18 @@ declare const ExternalAgentApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
16116
16116
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
16117
16117
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16118
16118
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16119
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16119
16120
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16120
16121
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16121
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16122
16122
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16123
16123
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16124
16124
|
}, z.core.$strip>;
|
|
16125
16125
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
16126
16126
|
id: z.ZodString;
|
|
16127
16127
|
name: z.ZodString;
|
|
16128
|
-
createdAt: z.ZodString;
|
|
16129
|
-
updatedAt: z.ZodString;
|
|
16130
16128
|
description: z.ZodNullable<z.ZodString>;
|
|
16129
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
16130
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
16131
16131
|
models: z.ZodNullable<z.ZodType<{
|
|
16132
16132
|
base?: {
|
|
16133
16133
|
model?: string | undefined;
|
|
@@ -16181,7 +16181,6 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16181
16181
|
providerOptions?: Record<string, any> | undefined;
|
|
16182
16182
|
} | undefined;
|
|
16183
16183
|
}>>>;
|
|
16184
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
16185
16184
|
stopWhen: z.ZodNullable<z.ZodType<{
|
|
16186
16185
|
stepCountIs?: number | undefined;
|
|
16187
16186
|
}, {
|
|
@@ -16191,19 +16190,20 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16191
16190
|
}, {
|
|
16192
16191
|
stepCountIs?: number | undefined;
|
|
16193
16192
|
}>>>;
|
|
16194
|
-
|
|
16193
|
+
createdAt: z.ZodString;
|
|
16194
|
+
updatedAt: z.ZodString;
|
|
16195
16195
|
type: z.ZodLiteral<"internal">;
|
|
16196
16196
|
}, z.core.$strip>, z.ZodObject<{
|
|
16197
16197
|
id: z.ZodString;
|
|
16198
16198
|
name: z.ZodString;
|
|
16199
|
+
description: z.ZodNullable<z.ZodString>;
|
|
16199
16200
|
createdAt: z.ZodString;
|
|
16200
16201
|
updatedAt: z.ZodString;
|
|
16201
|
-
description: z.ZodNullable<z.ZodString>;
|
|
16202
16202
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16203
16203
|
baseUrl: z.ZodString;
|
|
16204
16204
|
type: z.ZodLiteral<"external">;
|
|
16205
16205
|
}, z.core.$strip>], "type">;
|
|
16206
|
-
declare const ApiKeySelectSchema:
|
|
16206
|
+
declare const ApiKeySelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
16207
16207
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
16208
16208
|
name: "created_at";
|
|
16209
16209
|
tableName: "api_keys";
|
|
@@ -16424,7 +16424,7 @@ declare const ApiKeySelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
16424
16424
|
}, {}, {
|
|
16425
16425
|
length: 256;
|
|
16426
16426
|
}>;
|
|
16427
|
-
},
|
|
16427
|
+
}, drizzle_zod15.BuildRefine<{
|
|
16428
16428
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
16429
16429
|
name: "created_at";
|
|
16430
16430
|
tableName: "api_keys";
|
|
@@ -16665,9 +16665,9 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
16665
16665
|
}>;
|
|
16666
16666
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
16667
16667
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16668
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
16668
16669
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16669
16670
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16670
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
16671
16671
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16672
16672
|
}, {
|
|
16673
16673
|
out: {};
|
|
@@ -16676,10 +16676,10 @@ declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
|
16676
16676
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
16677
16677
|
id: z.ZodString;
|
|
16678
16678
|
name: z.ZodNullable<z.ZodString>;
|
|
16679
|
+
agentId: z.ZodString;
|
|
16679
16680
|
createdAt: z.ZodString;
|
|
16680
16681
|
updatedAt: z.ZodString;
|
|
16681
16682
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
16682
|
-
agentId: z.ZodString;
|
|
16683
16683
|
publicId: z.ZodString;
|
|
16684
16684
|
keyPrefix: z.ZodString;
|
|
16685
16685
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -16692,10 +16692,10 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
16692
16692
|
apiKey: z.ZodObject<{
|
|
16693
16693
|
id: z.ZodString;
|
|
16694
16694
|
name: z.ZodNullable<z.ZodString>;
|
|
16695
|
+
agentId: z.ZodString;
|
|
16695
16696
|
createdAt: z.ZodString;
|
|
16696
16697
|
updatedAt: z.ZodString;
|
|
16697
16698
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
16698
|
-
agentId: z.ZodString;
|
|
16699
16699
|
publicId: z.ZodString;
|
|
16700
16700
|
keyPrefix: z.ZodString;
|
|
16701
16701
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -16708,25 +16708,25 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
16708
16708
|
}, z.core.$strip>;
|
|
16709
16709
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
16710
16710
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16711
|
+
agentId: z.ZodString;
|
|
16711
16712
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16712
16713
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16713
16714
|
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16714
|
-
agentId: z.ZodString;
|
|
16715
16715
|
}, {
|
|
16716
16716
|
out: {};
|
|
16717
16717
|
in: {};
|
|
16718
16718
|
}>;
|
|
16719
16719
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
16720
16720
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16721
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
16721
16722
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16722
16723
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16723
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
16724
16724
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16725
16725
|
}, {
|
|
16726
16726
|
out: {};
|
|
16727
16727
|
in: {};
|
|
16728
16728
|
}>;
|
|
16729
|
-
declare const CredentialReferenceSelectSchema:
|
|
16729
|
+
declare const CredentialReferenceSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
16730
16730
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
16731
16731
|
name: "created_at";
|
|
16732
16732
|
tableName: "credential_references";
|
|
@@ -16951,7 +16951,7 @@ declare const CredentialReferenceSelectSchema: drizzle_zod19.BuildSchema<"select
|
|
|
16951
16951
|
}, {}, {
|
|
16952
16952
|
length: 256;
|
|
16953
16953
|
}>;
|
|
16954
|
-
},
|
|
16954
|
+
}, drizzle_zod15.BuildRefine<{
|
|
16955
16955
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
16956
16956
|
name: "created_at";
|
|
16957
16957
|
tableName: "credential_references";
|
|
@@ -17216,17 +17216,17 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
17216
17216
|
name: z.ZodString;
|
|
17217
17217
|
createdAt: z.ZodString;
|
|
17218
17218
|
updatedAt: z.ZodString;
|
|
17219
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
17219
17220
|
userId: z.ZodNullable<z.ZodString>;
|
|
17220
17221
|
credentialStoreId: z.ZodString;
|
|
17221
17222
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
17222
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
17223
17223
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
17224
17224
|
type: z.ZodEnum<{
|
|
17225
17225
|
readonly memory: "memory";
|
|
17226
17226
|
readonly keychain: "keychain";
|
|
17227
17227
|
readonly nango: "nango";
|
|
17228
17228
|
}>;
|
|
17229
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
17229
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
17230
17230
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
17231
17231
|
name: "created_at";
|
|
17232
17232
|
tableName: "tools";
|
|
@@ -17506,7 +17506,7 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
17506
17506
|
}, {}, {
|
|
17507
17507
|
length: 256;
|
|
17508
17508
|
}>;
|
|
17509
|
-
},
|
|
17509
|
+
}, drizzle_zod15.BuildRefine<{
|
|
17510
17510
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
17511
17511
|
name: "created_at";
|
|
17512
17512
|
tableName: "tools";
|
|
@@ -17807,10 +17807,10 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
17807
17807
|
name: z.ZodString;
|
|
17808
17808
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17809
17809
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17810
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17810
17811
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17811
17812
|
credentialStoreId: z.ZodString;
|
|
17812
17813
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
17813
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17814
17814
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17815
17815
|
type: z.ZodEnum<{
|
|
17816
17816
|
readonly memory: "memory";
|
|
@@ -17823,10 +17823,10 @@ declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
|
17823
17823
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17824
17824
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
17825
17825
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
17826
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17826
17827
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17827
17828
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17828
17829
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
17829
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17830
17830
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17831
17831
|
type: z.ZodOptional<z.ZodEnum<{
|
|
17832
17832
|
readonly memory: "memory";
|
|
@@ -17952,8 +17952,8 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
17952
17952
|
declare const MCPToolConfigSchema: z.ZodObject<{
|
|
17953
17953
|
id: z.ZodString;
|
|
17954
17954
|
name: z.ZodString;
|
|
17955
|
-
expiresAt: z.ZodOptional<z.ZodString>;
|
|
17956
17955
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
17956
|
+
expiresAt: z.ZodOptional<z.ZodString>;
|
|
17957
17957
|
createdBy: z.ZodOptional<z.ZodString>;
|
|
17958
17958
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
17959
17959
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -17990,10 +17990,10 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
17990
17990
|
name: z.ZodString;
|
|
17991
17991
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17992
17992
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17993
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17993
17994
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17994
17995
|
credentialStoreId: z.ZodString;
|
|
17995
17996
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
17996
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17997
17997
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17998
17998
|
type: z.ZodEnum<{
|
|
17999
17999
|
readonly memory: "memory";
|
|
@@ -18131,9 +18131,9 @@ declare const ToolApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
18131
18131
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
18132
18132
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18133
18133
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18134
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18134
18135
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18135
18136
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18136
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18137
18137
|
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>>>>>>>;
|
|
18138
18138
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
18139
18139
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -18168,7 +18168,7 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
18168
18168
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18169
18169
|
isWorkApp: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
18170
18170
|
}, z.core.$strip>;
|
|
18171
|
-
declare const FunctionToolSelectSchema:
|
|
18171
|
+
declare const FunctionToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
18172
18172
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
18173
18173
|
name: "created_at";
|
|
18174
18174
|
tableName: "function_tools";
|
|
@@ -18334,7 +18334,7 @@ declare const FunctionToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
18334
18334
|
}, {}, {
|
|
18335
18335
|
length: 256;
|
|
18336
18336
|
}>;
|
|
18337
|
-
},
|
|
18337
|
+
}, drizzle_zod15.BuildRefine<{
|
|
18338
18338
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
18339
18339
|
name: "created_at";
|
|
18340
18340
|
tableName: "function_tools";
|
|
@@ -18532,10 +18532,10 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
18532
18532
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
18533
18533
|
id: z.ZodString;
|
|
18534
18534
|
name: z.ZodString;
|
|
18535
|
-
createdAt: z.ZodString;
|
|
18536
|
-
updatedAt: z.ZodString;
|
|
18537
18535
|
description: z.ZodNullable<z.ZodString>;
|
|
18538
18536
|
agentId: z.ZodString;
|
|
18537
|
+
createdAt: z.ZodString;
|
|
18538
|
+
updatedAt: z.ZodString;
|
|
18539
18539
|
functionId: z.ZodString;
|
|
18540
18540
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
18541
18541
|
}, z.core.$strip>;
|
|
@@ -18553,13 +18553,13 @@ declare const FunctionToolApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
|
18553
18553
|
declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
18554
18554
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18555
18555
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18556
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18557
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18558
18556
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18559
18557
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18558
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18559
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18560
18560
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18561
18561
|
}, z.core.$strip>;
|
|
18562
|
-
declare const SubAgentFunctionToolRelationSelectSchema:
|
|
18562
|
+
declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
18563
18563
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
18564
18564
|
name: "created_at";
|
|
18565
18565
|
tableName: "sub_agent_function_tool_relations";
|
|
@@ -18731,7 +18731,7 @@ declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod19.BuildSchem
|
|
|
18731
18731
|
}, {}, {
|
|
18732
18732
|
length: 256;
|
|
18733
18733
|
}>;
|
|
18734
|
-
},
|
|
18734
|
+
}, drizzle_zod15.BuildRefine<{
|
|
18735
18735
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
18736
18736
|
name: "created_at";
|
|
18737
18737
|
tableName: "sub_agent_function_tool_relations";
|
|
@@ -18907,7 +18907,7 @@ declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod19.BuildSchem
|
|
|
18907
18907
|
declare const SubAgentFunctionToolRelationInsertSchema: z.ZodObject<{
|
|
18908
18908
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18909
18909
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18910
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
18910
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
18911
18911
|
agentId: z.ZodString;
|
|
18912
18912
|
projectId: z.ZodString;
|
|
18913
18913
|
tenantId: z.ZodString;
|
|
@@ -18922,7 +18922,7 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<OmitAgent
|
|
|
18922
18922
|
createdAt: z.ZodString;
|
|
18923
18923
|
updatedAt: z.ZodString;
|
|
18924
18924
|
functionToolId: z.ZodString;
|
|
18925
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
18925
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
18926
18926
|
subAgentId: z.ZodString;
|
|
18927
18927
|
agentId: z.ZodString;
|
|
18928
18928
|
projectId: z.ZodString;
|
|
@@ -18930,14 +18930,14 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<OmitAgent
|
|
|
18930
18930
|
id: z.ZodString;
|
|
18931
18931
|
}>, z.core.$strip>;
|
|
18932
18932
|
declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
|
|
18933
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
18933
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
18934
18934
|
subAgentId: z.ZodString;
|
|
18935
18935
|
functionToolId: z.ZodString;
|
|
18936
18936
|
}, {
|
|
18937
18937
|
out: {};
|
|
18938
18938
|
in: {};
|
|
18939
18939
|
}>;
|
|
18940
|
-
declare const FunctionSelectSchema:
|
|
18940
|
+
declare const FunctionSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
18941
18941
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
18942
18942
|
name: "created_at";
|
|
18943
18943
|
tableName: "functions";
|
|
@@ -19084,7 +19084,7 @@ declare const FunctionSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
19084
19084
|
}, {}, {
|
|
19085
19085
|
length: 256;
|
|
19086
19086
|
}>;
|
|
19087
|
-
},
|
|
19087
|
+
}, drizzle_zod15.BuildRefine<{
|
|
19088
19088
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
19089
19089
|
name: "created_at";
|
|
19090
19090
|
tableName: "functions";
|
|
@@ -19328,10 +19328,10 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
19328
19328
|
name: z.ZodString;
|
|
19329
19329
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
19330
19330
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19331
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19331
19332
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19332
19333
|
credentialStoreId: z.ZodString;
|
|
19333
19334
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19334
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19335
19335
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19336
19336
|
type: z.ZodEnum<{
|
|
19337
19337
|
readonly memory: "memory";
|
|
@@ -19340,6 +19340,7 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
19340
19340
|
}>;
|
|
19341
19341
|
}, z.core.$strip>>;
|
|
19342
19342
|
}, z.core.$strip>;
|
|
19343
|
+
declare const HeadersSchema: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
19343
19344
|
declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
19344
19345
|
createdAt: z.ZodString;
|
|
19345
19346
|
updatedAt: z.ZodString;
|
|
@@ -19355,22 +19356,22 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
19355
19356
|
}>;
|
|
19356
19357
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
19357
19358
|
id: z.ZodOptional<z.ZodString>;
|
|
19359
|
+
tenantId: z.ZodString;
|
|
19360
|
+
projectId: z.ZodString;
|
|
19361
|
+
agentId: z.ZodString;
|
|
19358
19362
|
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
19359
19363
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
19360
|
-
agentId: z.ZodString;
|
|
19361
|
-
projectId: z.ZodString;
|
|
19362
|
-
tenantId: z.ZodString;
|
|
19363
19364
|
}, {
|
|
19364
19365
|
out: {};
|
|
19365
19366
|
in: {};
|
|
19366
19367
|
}>;
|
|
19367
19368
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
19368
19369
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19370
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
19371
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
19372
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
19369
19373
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
19370
19374
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
19371
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
19372
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
19373
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
19374
19375
|
}, {
|
|
19375
19376
|
out: {};
|
|
19376
19377
|
in: {};
|
|
@@ -19392,7 +19393,7 @@ declare const ContextConfigApiUpdateSchema: z.ZodObject<{
|
|
|
19392
19393
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>>;
|
|
19393
19394
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>>;
|
|
19394
19395
|
}, z.core.$strip>;
|
|
19395
|
-
declare const SubAgentToolRelationSelectSchema:
|
|
19396
|
+
declare const SubAgentToolRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
19396
19397
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
19397
19398
|
name: "created_at";
|
|
19398
19399
|
tableName: "sub_agent_tool_relations";
|
|
@@ -19602,7 +19603,7 @@ declare const SubAgentToolRelationSelectSchema: drizzle_zod19.BuildSchema<"selec
|
|
|
19602
19603
|
}, {}, {
|
|
19603
19604
|
length: 256;
|
|
19604
19605
|
}>;
|
|
19605
|
-
},
|
|
19606
|
+
}, drizzle_zod15.BuildRefine<{
|
|
19606
19607
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
19607
19608
|
name: "created_at";
|
|
19608
19609
|
tableName: "sub_agent_tool_relations";
|
|
@@ -19853,9 +19854,9 @@ declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
19853
19854
|
createdAt: z.ZodString;
|
|
19854
19855
|
updatedAt: z.ZodString;
|
|
19855
19856
|
toolId: z.ZodString;
|
|
19856
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
19857
|
-
headers: z.ZodNullable<z.ZodType<
|
|
19858
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
19857
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
19858
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
19859
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
19859
19860
|
subAgentId: z.ZodString;
|
|
19860
19861
|
agentId: z.ZodString;
|
|
19861
19862
|
projectId: z.ZodString;
|
|
@@ -19881,15 +19882,15 @@ declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
|
19881
19882
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19882
19883
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19883
19884
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19884
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
19885
19885
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19886
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
19886
19887
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
19887
19888
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
19888
19889
|
}, z.core.$strip>>>>>>;
|
|
19889
19890
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19890
19891
|
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
19891
19892
|
}, z.core.$strip>;
|
|
19892
|
-
declare const SubAgentExternalAgentRelationSelectSchema:
|
|
19893
|
+
declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
19893
19894
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
19894
19895
|
name: "created_at";
|
|
19895
19896
|
tableName: "sub_agent_external_agent_relations";
|
|
@@ -20057,7 +20058,7 @@ declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod19.BuildSche
|
|
|
20057
20058
|
}, {}, {
|
|
20058
20059
|
length: 256;
|
|
20059
20060
|
}>;
|
|
20060
|
-
},
|
|
20061
|
+
}, drizzle_zod15.BuildRefine<{
|
|
20061
20062
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
20062
20063
|
name: "created_at";
|
|
20063
20064
|
tableName: "sub_agent_external_agent_relations";
|
|
@@ -20258,7 +20259,7 @@ declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<OmitAgen
|
|
|
20258
20259
|
createdAt: z.ZodString;
|
|
20259
20260
|
updatedAt: z.ZodString;
|
|
20260
20261
|
externalAgentId: z.ZodString;
|
|
20261
|
-
headers: z.ZodNullable<z.ZodType<
|
|
20262
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
20262
20263
|
subAgentId: z.ZodString;
|
|
20263
20264
|
agentId: z.ZodString;
|
|
20264
20265
|
projectId: z.ZodString;
|
|
@@ -20279,7 +20280,7 @@ declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
20279
20280
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20280
20281
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20281
20282
|
}, z.core.$strip>;
|
|
20282
|
-
declare const SubAgentTeamAgentRelationSelectSchema:
|
|
20283
|
+
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
20283
20284
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
20284
20285
|
name: "created_at";
|
|
20285
20286
|
tableName: "sub_agent_team_agent_relations";
|
|
@@ -20447,7 +20448,7 @@ declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
20447
20448
|
}, {}, {
|
|
20448
20449
|
length: 256;
|
|
20449
20450
|
}>;
|
|
20450
|
-
},
|
|
20451
|
+
}, drizzle_zod15.BuildRefine<{
|
|
20451
20452
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
20452
20453
|
name: "created_at";
|
|
20453
20454
|
tableName: "sub_agent_team_agent_relations";
|
|
@@ -20648,7 +20649,7 @@ declare const SubAgentTeamAgentRelationApiSelectSchema: z.ZodObject<OmitAgentSco
|
|
|
20648
20649
|
createdAt: z.ZodString;
|
|
20649
20650
|
updatedAt: z.ZodString;
|
|
20650
20651
|
targetAgentId: z.ZodString;
|
|
20651
|
-
headers: z.ZodNullable<z.ZodType<
|
|
20652
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
20652
20653
|
subAgentId: z.ZodString;
|
|
20653
20654
|
agentId: z.ZodString;
|
|
20654
20655
|
projectId: z.ZodString;
|
|
@@ -20669,7 +20670,7 @@ declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
20669
20670
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20670
20671
|
targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20671
20672
|
}, z.core.$strip>;
|
|
20672
|
-
declare const LedgerArtifactSelectSchema:
|
|
20673
|
+
declare const LedgerArtifactSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
20673
20674
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
20674
20675
|
name: "created_at";
|
|
20675
20676
|
tableName: "ledger_artifacts";
|
|
@@ -21004,7 +21005,7 @@ declare const LedgerArtifactSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
21004
21005
|
}, {}, {
|
|
21005
21006
|
length: 256;
|
|
21006
21007
|
}>;
|
|
21007
|
-
},
|
|
21008
|
+
}, drizzle_zod15.BuildRefine<{
|
|
21008
21009
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
21009
21010
|
name: "created_at";
|
|
21010
21011
|
tableName: "ledger_artifacts";
|
|
@@ -21340,7 +21341,7 @@ declare const LedgerArtifactSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
21340
21341
|
length: 256;
|
|
21341
21342
|
}>;
|
|
21342
21343
|
}, undefined>, undefined>;
|
|
21343
|
-
declare const LedgerArtifactInsertSchema:
|
|
21344
|
+
declare const LedgerArtifactInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
21344
21345
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
21345
21346
|
name: "created_at";
|
|
21346
21347
|
tableName: "ledger_artifacts";
|
|
@@ -21675,7 +21676,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
21675
21676
|
}, {}, {
|
|
21676
21677
|
length: 256;
|
|
21677
21678
|
}>;
|
|
21678
|
-
},
|
|
21679
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
21679
21680
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
21680
21681
|
name: "created_at";
|
|
21681
21682
|
tableName: "ledger_artifacts";
|
|
@@ -22010,7 +22011,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
22010
22011
|
}, {}, {
|
|
22011
22012
|
length: 256;
|
|
22012
22013
|
}>;
|
|
22013
|
-
}, "
|
|
22014
|
+
}, "id" | "name" | "description" | "tenantId" | "projectId" | "type" | "createdAt" | "updatedAt" | "metadata" | "contextId" | "visibility" | "taskId" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
22014
22015
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
22015
22016
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22016
22017
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -22020,12 +22021,12 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
22020
22021
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22021
22022
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
22022
22023
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
22023
|
-
parts: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22024
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22024
|
+
parts: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
22025
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
22025
22026
|
summary: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
22026
|
-
mime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22027
|
+
mime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
22027
22028
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
22028
|
-
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22029
|
+
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
22029
22030
|
derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
22030
22031
|
projectId: z.ZodOptional<z.ZodString>;
|
|
22031
22032
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
@@ -22043,12 +22044,12 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
22043
22044
|
type: z.ZodString;
|
|
22044
22045
|
name: z.ZodNullable<z.ZodString>;
|
|
22045
22046
|
description: z.ZodNullable<z.ZodString>;
|
|
22046
|
-
parts: z.ZodNullable<z.ZodType<
|
|
22047
|
-
metadata: z.ZodNullable<z.ZodType<
|
|
22047
|
+
parts: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
22048
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
22048
22049
|
summary: z.ZodNullable<z.ZodString>;
|
|
22049
|
-
mime: z.ZodNullable<z.ZodType<
|
|
22050
|
+
mime: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
22050
22051
|
visibility: z.ZodNullable<z.ZodString>;
|
|
22051
|
-
allowedAgents: z.ZodNullable<z.ZodType<
|
|
22052
|
+
allowedAgents: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
22052
22053
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
22053
22054
|
projectId: z.ZodString;
|
|
22054
22055
|
tenantId: z.ZodString;
|
|
@@ -22063,33 +22064,33 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
22063
22064
|
type: z.ZodOptional<z.ZodString>;
|
|
22064
22065
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22065
22066
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22066
|
-
parts: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22067
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22067
|
+
parts: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22068
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22068
22069
|
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22069
|
-
mime: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22070
|
+
mime: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22070
22071
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22071
|
-
allowedAgents: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22072
|
+
allowedAgents: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22072
22073
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22073
22074
|
projectId: z.ZodString;
|
|
22074
22075
|
tenantId: z.ZodString;
|
|
22075
22076
|
id: z.ZodString;
|
|
22076
22077
|
}>, z.core.$strip>;
|
|
22077
22078
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
22078
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22079
22079
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22080
22080
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22081
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22082
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22081
22083
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22082
22084
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22083
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22084
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22085
|
-
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22085
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
22086
22086
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22087
22087
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22088
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22088
22089
|
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22089
|
-
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22090
|
+
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
22090
22091
|
summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22091
|
-
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22092
|
-
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22092
|
+
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
22093
|
+
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
22093
22094
|
derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22094
22095
|
}, z.core.$strip>;
|
|
22095
22096
|
declare const StatusComponentSchema: z.ZodObject<{
|
|
@@ -22157,9 +22158,8 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
22157
22158
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
22158
22159
|
id: z.ZodString;
|
|
22159
22160
|
name: z.ZodString;
|
|
22160
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
22161
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22162
22161
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22162
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
22163
22163
|
models: z.ZodOptional<z.ZodObject<{
|
|
22164
22164
|
base: z.ZodOptional<z.ZodObject<{
|
|
22165
22165
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -22183,7 +22183,8 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
22183
22183
|
}, {
|
|
22184
22184
|
stepCountIs?: number | undefined;
|
|
22185
22185
|
}>>>>;
|
|
22186
|
-
|
|
22186
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22187
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22187
22188
|
type: z.ZodLiteral<"internal">;
|
|
22188
22189
|
canUse: z.ZodArray<z.ZodObject<{
|
|
22189
22190
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -22210,18 +22211,17 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
22210
22211
|
}, z.core.$strip>;
|
|
22211
22212
|
declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
22212
22213
|
name: z.ZodString;
|
|
22213
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
22214
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22215
22214
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22216
22215
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22216
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22217
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22217
22218
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22218
22219
|
id: z.ZodString;
|
|
22219
22220
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22220
22221
|
id: z.ZodString;
|
|
22221
22222
|
name: z.ZodString;
|
|
22222
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
22223
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22224
22223
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22224
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
22225
22225
|
models: z.ZodOptional<z.ZodObject<{
|
|
22226
22226
|
base: z.ZodOptional<z.ZodObject<{
|
|
22227
22227
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -22245,7 +22245,8 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
22245
22245
|
}, {
|
|
22246
22246
|
stepCountIs?: number | undefined;
|
|
22247
22247
|
}>>>>;
|
|
22248
|
-
|
|
22248
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22249
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22249
22250
|
type: z.ZodLiteral<"internal">;
|
|
22250
22251
|
canUse: z.ZodArray<z.ZodObject<{
|
|
22251
22252
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -22349,16 +22350,16 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
22349
22350
|
}, z.core.$strip>>>;
|
|
22350
22351
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22351
22352
|
name: z.ZodString;
|
|
22353
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22352
22354
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22353
22355
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22354
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22355
22356
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
22356
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22357
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22357
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22358
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22358
22359
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22359
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22360
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22360
22361
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22361
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22362
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22362
22363
|
id: z.ZodOptional<z.ZodString>;
|
|
22363
22364
|
}, z.core.$strip>>>;
|
|
22364
22365
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -22514,8 +22515,6 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
22514
22515
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
22515
22516
|
id: z.ZodString;
|
|
22516
22517
|
name: z.ZodString;
|
|
22517
|
-
createdAt: z.ZodString;
|
|
22518
|
-
updatedAt: z.ZodString;
|
|
22519
22518
|
description: z.ZodNullable<z.ZodString>;
|
|
22520
22519
|
models: z.ZodNullable<z.ZodObject<{
|
|
22521
22520
|
base: z.ZodObject<{
|
|
@@ -22535,6 +22534,8 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
22535
22534
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
22536
22535
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
22537
22536
|
}, z.core.$strip>>;
|
|
22537
|
+
createdAt: z.ZodString;
|
|
22538
|
+
updatedAt: z.ZodString;
|
|
22538
22539
|
}, {
|
|
22539
22540
|
out: {};
|
|
22540
22541
|
in: {};
|
|
@@ -22614,18 +22615,17 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22614
22615
|
}, z.core.$strip>>;
|
|
22615
22616
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22616
22617
|
name: z.ZodString;
|
|
22617
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
22618
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22619
22618
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22620
22619
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22620
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22621
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22621
22622
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22622
22623
|
id: z.ZodString;
|
|
22623
22624
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22624
22625
|
id: z.ZodString;
|
|
22625
22626
|
name: z.ZodString;
|
|
22626
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
22627
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22628
22627
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22628
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
22629
22629
|
models: z.ZodOptional<z.ZodObject<{
|
|
22630
22630
|
base: z.ZodOptional<z.ZodObject<{
|
|
22631
22631
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -22649,7 +22649,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22649
22649
|
}, {
|
|
22650
22650
|
stepCountIs?: number | undefined;
|
|
22651
22651
|
}>>>>;
|
|
22652
|
-
|
|
22652
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22653
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22653
22654
|
type: z.ZodLiteral<"internal">;
|
|
22654
22655
|
canUse: z.ZodArray<z.ZodObject<{
|
|
22655
22656
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -22753,16 +22754,16 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22753
22754
|
}, z.core.$strip>>>;
|
|
22754
22755
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22755
22756
|
name: z.ZodString;
|
|
22757
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22756
22758
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22757
22759
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22758
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22759
22760
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
22760
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22761
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22761
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22762
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22762
22763
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22763
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22764
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22764
22765
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22765
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22766
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22766
22767
|
id: z.ZodOptional<z.ZodString>;
|
|
22767
22768
|
}, z.core.$strip>>>;
|
|
22768
22769
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -22941,10 +22942,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22941
22942
|
name: z.ZodString;
|
|
22942
22943
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22943
22944
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22945
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22944
22946
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22945
22947
|
credentialStoreId: z.ZodString;
|
|
22946
22948
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22947
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22948
22949
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22949
22950
|
type: z.ZodEnum<{
|
|
22950
22951
|
readonly memory: "memory";
|
|
@@ -22961,9 +22962,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22961
22962
|
declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
22962
22963
|
id: z.ZodString;
|
|
22963
22964
|
name: z.ZodString;
|
|
22964
|
-
createdAt: z.ZodString;
|
|
22965
|
-
updatedAt: z.ZodString;
|
|
22966
22965
|
description: z.ZodNullable<z.ZodString>;
|
|
22966
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
22967
22967
|
models: z.ZodNullable<z.ZodType<{
|
|
22968
22968
|
base?: {
|
|
22969
22969
|
model?: string | undefined;
|
|
@@ -23026,7 +23026,8 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
23026
23026
|
}, {
|
|
23027
23027
|
stepCountIs?: number | undefined;
|
|
23028
23028
|
}>>>;
|
|
23029
|
-
|
|
23029
|
+
createdAt: z.ZodString;
|
|
23030
|
+
updatedAt: z.ZodString;
|
|
23030
23031
|
type: z.ZodLiteral<"internal">;
|
|
23031
23032
|
canUse: z.ZodArray<z.ZodObject<{
|
|
23032
23033
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -23054,9 +23055,8 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
23054
23055
|
declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
23055
23056
|
id: z.ZodString;
|
|
23056
23057
|
name: z.ZodString;
|
|
23057
|
-
createdAt: z.ZodString;
|
|
23058
|
-
updatedAt: z.ZodString;
|
|
23059
23058
|
description: z.ZodNullable<z.ZodString>;
|
|
23059
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
23060
23060
|
models: z.ZodNullable<z.ZodType<{
|
|
23061
23061
|
base?: {
|
|
23062
23062
|
model?: string | undefined;
|
|
@@ -23119,7 +23119,8 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
23119
23119
|
}, {
|
|
23120
23120
|
stepCountIs?: number | undefined;
|
|
23121
23121
|
}>>>;
|
|
23122
|
-
|
|
23122
|
+
createdAt: z.ZodString;
|
|
23123
|
+
updatedAt: z.ZodString;
|
|
23123
23124
|
type: z.ZodLiteral<"internal">;
|
|
23124
23125
|
canUse: z.ZodArray<z.ZodObject<{
|
|
23125
23126
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -23153,17 +23154,16 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
23153
23154
|
declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
23154
23155
|
id: z.ZodString;
|
|
23155
23156
|
name: z.ZodString;
|
|
23156
|
-
createdAt: z.ZodString;
|
|
23157
|
-
updatedAt: z.ZodString;
|
|
23158
23157
|
description: z.ZodNullable<z.ZodString>;
|
|
23159
23158
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
23159
|
+
createdAt: z.ZodString;
|
|
23160
|
+
updatedAt: z.ZodString;
|
|
23160
23161
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
23161
23162
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23162
23163
|
id: z.ZodString;
|
|
23163
23164
|
name: z.ZodString;
|
|
23164
|
-
createdAt: z.ZodString;
|
|
23165
|
-
updatedAt: z.ZodString;
|
|
23166
23165
|
description: z.ZodNullable<z.ZodString>;
|
|
23166
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
23167
23167
|
models: z.ZodNullable<z.ZodType<{
|
|
23168
23168
|
base?: {
|
|
23169
23169
|
model?: string | undefined;
|
|
@@ -23226,7 +23226,8 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
23226
23226
|
}, {
|
|
23227
23227
|
stepCountIs?: number | undefined;
|
|
23228
23228
|
}>>>;
|
|
23229
|
-
|
|
23229
|
+
createdAt: z.ZodString;
|
|
23230
|
+
updatedAt: z.ZodString;
|
|
23230
23231
|
type: z.ZodLiteral<"internal">;
|
|
23231
23232
|
canUse: z.ZodArray<z.ZodObject<{
|
|
23232
23233
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -23299,10 +23300,10 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
23299
23300
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23300
23301
|
id: z.ZodString;
|
|
23301
23302
|
name: z.ZodString;
|
|
23302
|
-
createdAt: z.ZodString;
|
|
23303
|
-
updatedAt: z.ZodString;
|
|
23304
23303
|
description: z.ZodNullable<z.ZodString>;
|
|
23305
23304
|
agentId: z.ZodString;
|
|
23305
|
+
createdAt: z.ZodString;
|
|
23306
|
+
updatedAt: z.ZodString;
|
|
23306
23307
|
functionId: z.ZodString;
|
|
23307
23308
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
23308
23309
|
}, z.core.$strip>>>;
|
|
@@ -23360,10 +23361,10 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
23360
23361
|
declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
23361
23362
|
id: z.ZodString;
|
|
23362
23363
|
name: z.ZodString;
|
|
23363
|
-
createdAt: z.ZodString;
|
|
23364
|
-
updatedAt: z.ZodString;
|
|
23365
23364
|
description: z.ZodNullable<z.ZodString>;
|
|
23366
23365
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
23366
|
+
createdAt: z.ZodString;
|
|
23367
|
+
updatedAt: z.ZodString;
|
|
23367
23368
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
23368
23369
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
23369
23370
|
createdAt: z.ZodString;
|
|
@@ -23413,10 +23414,10 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
23413
23414
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23414
23415
|
id: z.ZodString;
|
|
23415
23416
|
name: z.ZodString;
|
|
23416
|
-
createdAt: z.ZodString;
|
|
23417
|
-
updatedAt: z.ZodString;
|
|
23418
23417
|
description: z.ZodNullable<z.ZodString>;
|
|
23419
23418
|
agentId: z.ZodString;
|
|
23419
|
+
createdAt: z.ZodString;
|
|
23420
|
+
updatedAt: z.ZodString;
|
|
23420
23421
|
functionId: z.ZodString;
|
|
23421
23422
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
23422
23423
|
}, z.core.$strip>>>;
|
|
@@ -23473,9 +23474,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
23473
23474
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23474
23475
|
id: z.ZodString;
|
|
23475
23476
|
name: z.ZodString;
|
|
23476
|
-
createdAt: z.ZodString;
|
|
23477
|
-
updatedAt: z.ZodString;
|
|
23478
23477
|
description: z.ZodNullable<z.ZodString>;
|
|
23478
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
23479
23479
|
models: z.ZodNullable<z.ZodType<{
|
|
23480
23480
|
base?: {
|
|
23481
23481
|
model?: string | undefined;
|
|
@@ -23538,7 +23538,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
23538
23538
|
}, {
|
|
23539
23539
|
stepCountIs?: number | undefined;
|
|
23540
23540
|
}>>>;
|
|
23541
|
-
|
|
23541
|
+
createdAt: z.ZodString;
|
|
23542
|
+
updatedAt: z.ZodString;
|
|
23542
23543
|
type: z.ZodLiteral<"internal">;
|
|
23543
23544
|
canUse: z.ZodArray<z.ZodObject<{
|
|
23544
23545
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -23573,8 +23574,6 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
23573
23574
|
declare const FullProjectSelectSchema: z.ZodObject<{
|
|
23574
23575
|
id: z.ZodString;
|
|
23575
23576
|
name: z.ZodString;
|
|
23576
|
-
createdAt: z.ZodString;
|
|
23577
|
-
updatedAt: z.ZodString;
|
|
23578
23577
|
description: z.ZodNullable<z.ZodString>;
|
|
23579
23578
|
models: z.ZodNullable<z.ZodObject<{
|
|
23580
23579
|
base: z.ZodObject<{
|
|
@@ -23594,20 +23593,21 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23594
23593
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
23595
23594
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
23596
23595
|
}, z.core.$strip>>;
|
|
23596
|
+
createdAt: z.ZodString;
|
|
23597
|
+
updatedAt: z.ZodString;
|
|
23597
23598
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23598
23599
|
id: z.ZodString;
|
|
23599
23600
|
name: z.ZodString;
|
|
23600
|
-
createdAt: z.ZodString;
|
|
23601
|
-
updatedAt: z.ZodString;
|
|
23602
23601
|
description: z.ZodNullable<z.ZodString>;
|
|
23603
23602
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
23603
|
+
createdAt: z.ZodString;
|
|
23604
|
+
updatedAt: z.ZodString;
|
|
23604
23605
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
23605
23606
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23606
23607
|
id: z.ZodString;
|
|
23607
23608
|
name: z.ZodString;
|
|
23608
|
-
createdAt: z.ZodString;
|
|
23609
|
-
updatedAt: z.ZodString;
|
|
23610
23609
|
description: z.ZodNullable<z.ZodString>;
|
|
23610
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
23611
23611
|
models: z.ZodNullable<z.ZodType<{
|
|
23612
23612
|
base?: {
|
|
23613
23613
|
model?: string | undefined;
|
|
@@ -23670,7 +23670,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23670
23670
|
}, {
|
|
23671
23671
|
stepCountIs?: number | undefined;
|
|
23672
23672
|
}>>>;
|
|
23673
|
-
|
|
23673
|
+
createdAt: z.ZodString;
|
|
23674
|
+
updatedAt: z.ZodString;
|
|
23674
23675
|
type: z.ZodLiteral<"internal">;
|
|
23675
23676
|
canUse: z.ZodArray<z.ZodObject<{
|
|
23676
23677
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -23743,10 +23744,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23743
23744
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23744
23745
|
id: z.ZodString;
|
|
23745
23746
|
name: z.ZodString;
|
|
23746
|
-
createdAt: z.ZodString;
|
|
23747
|
-
updatedAt: z.ZodString;
|
|
23748
23747
|
description: z.ZodNullable<z.ZodString>;
|
|
23749
23748
|
agentId: z.ZodString;
|
|
23749
|
+
createdAt: z.ZodString;
|
|
23750
|
+
updatedAt: z.ZodString;
|
|
23750
23751
|
functionId: z.ZodString;
|
|
23751
23752
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
23752
23753
|
}, z.core.$strip>>>;
|
|
@@ -23833,10 +23834,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23833
23834
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23834
23835
|
id: z.ZodString;
|
|
23835
23836
|
name: z.ZodString;
|
|
23836
|
-
createdAt: z.ZodString;
|
|
23837
|
-
updatedAt: z.ZodString;
|
|
23838
23837
|
description: z.ZodNullable<z.ZodString>;
|
|
23839
23838
|
agentId: z.ZodString;
|
|
23839
|
+
createdAt: z.ZodString;
|
|
23840
|
+
updatedAt: z.ZodString;
|
|
23840
23841
|
functionId: z.ZodString;
|
|
23841
23842
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
23842
23843
|
}, z.core.$strip>>>;
|
|
@@ -23927,17 +23928,17 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23927
23928
|
name: z.ZodString;
|
|
23928
23929
|
createdAt: z.ZodString;
|
|
23929
23930
|
updatedAt: z.ZodString;
|
|
23931
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
23930
23932
|
userId: z.ZodNullable<z.ZodString>;
|
|
23931
23933
|
credentialStoreId: z.ZodString;
|
|
23932
23934
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
23933
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
23934
23935
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
23935
23936
|
type: z.ZodEnum<{
|
|
23936
23937
|
readonly memory: "memory";
|
|
23937
23938
|
readonly keychain: "keychain";
|
|
23938
23939
|
readonly nango: "nango";
|
|
23939
23940
|
}>;
|
|
23940
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
23941
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
23941
23942
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
23942
23943
|
name: "created_at";
|
|
23943
23944
|
tableName: "tools";
|
|
@@ -24217,7 +24218,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
24217
24218
|
}, {}, {
|
|
24218
24219
|
length: 256;
|
|
24219
24220
|
}>;
|
|
24220
|
-
},
|
|
24221
|
+
}, drizzle_zod15.BuildRefine<{
|
|
24221
24222
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
24222
24223
|
name: "created_at";
|
|
24223
24224
|
tableName: "tools";
|
|
@@ -24520,8 +24521,6 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
24520
24521
|
declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
24521
24522
|
id: z.ZodString;
|
|
24522
24523
|
name: z.ZodString;
|
|
24523
|
-
createdAt: z.ZodString;
|
|
24524
|
-
updatedAt: z.ZodString;
|
|
24525
24524
|
description: z.ZodNullable<z.ZodString>;
|
|
24526
24525
|
models: z.ZodNullable<z.ZodObject<{
|
|
24527
24526
|
base: z.ZodObject<{
|
|
@@ -24541,6 +24540,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
24541
24540
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
24542
24541
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
24543
24542
|
}, z.core.$strip>>;
|
|
24543
|
+
createdAt: z.ZodString;
|
|
24544
|
+
updatedAt: z.ZodString;
|
|
24544
24545
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
24545
24546
|
createdAt: z.ZodString;
|
|
24546
24547
|
updatedAt: z.ZodString;
|
|
@@ -24573,10 +24574,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
24573
24574
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24574
24575
|
id: z.ZodString;
|
|
24575
24576
|
name: z.ZodString;
|
|
24576
|
-
createdAt: z.ZodString;
|
|
24577
|
-
updatedAt: z.ZodString;
|
|
24578
24577
|
description: z.ZodNullable<z.ZodString>;
|
|
24579
24578
|
agentId: z.ZodString;
|
|
24579
|
+
createdAt: z.ZodString;
|
|
24580
|
+
updatedAt: z.ZodString;
|
|
24580
24581
|
functionId: z.ZodString;
|
|
24581
24582
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
24582
24583
|
}, z.core.$strip>>>;
|
|
@@ -24667,17 +24668,17 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
24667
24668
|
name: z.ZodString;
|
|
24668
24669
|
createdAt: z.ZodString;
|
|
24669
24670
|
updatedAt: z.ZodString;
|
|
24671
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
24670
24672
|
userId: z.ZodNullable<z.ZodString>;
|
|
24671
24673
|
credentialStoreId: z.ZodString;
|
|
24672
24674
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
24673
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
24674
24675
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
24675
24676
|
type: z.ZodEnum<{
|
|
24676
24677
|
readonly memory: "memory";
|
|
24677
24678
|
readonly keychain: "keychain";
|
|
24678
24679
|
readonly nango: "nango";
|
|
24679
24680
|
}>;
|
|
24680
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
24681
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
24681
24682
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
24682
24683
|
name: "created_at";
|
|
24683
24684
|
tableName: "tools";
|
|
@@ -24957,7 +24958,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
24957
24958
|
}, {}, {
|
|
24958
24959
|
length: 256;
|
|
24959
24960
|
}>;
|
|
24960
|
-
},
|
|
24961
|
+
}, drizzle_zod15.BuildRefine<{
|
|
24961
24962
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
24962
24963
|
name: "created_at";
|
|
24963
24964
|
tableName: "tools";
|
|
@@ -25256,10 +25257,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25256
25257
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25257
25258
|
id: z.ZodString;
|
|
25258
25259
|
name: z.ZodString;
|
|
25259
|
-
createdAt: z.ZodString;
|
|
25260
|
-
updatedAt: z.ZodString;
|
|
25261
25260
|
description: z.ZodNullable<z.ZodString>;
|
|
25262
25261
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25262
|
+
createdAt: z.ZodString;
|
|
25263
|
+
updatedAt: z.ZodString;
|
|
25263
25264
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25264
25265
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
25265
25266
|
createdAt: z.ZodString;
|
|
@@ -25309,10 +25310,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25309
25310
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25310
25311
|
id: z.ZodString;
|
|
25311
25312
|
name: z.ZodString;
|
|
25312
|
-
createdAt: z.ZodString;
|
|
25313
|
-
updatedAt: z.ZodString;
|
|
25314
25313
|
description: z.ZodNullable<z.ZodString>;
|
|
25315
25314
|
agentId: z.ZodString;
|
|
25315
|
+
createdAt: z.ZodString;
|
|
25316
|
+
updatedAt: z.ZodString;
|
|
25316
25317
|
functionId: z.ZodString;
|
|
25317
25318
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
25318
25319
|
}, z.core.$strip>>>;
|
|
@@ -25369,9 +25370,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25369
25370
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25370
25371
|
id: z.ZodString;
|
|
25371
25372
|
name: z.ZodString;
|
|
25372
|
-
createdAt: z.ZodString;
|
|
25373
|
-
updatedAt: z.ZodString;
|
|
25374
25373
|
description: z.ZodNullable<z.ZodString>;
|
|
25374
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25375
25375
|
models: z.ZodNullable<z.ZodType<{
|
|
25376
25376
|
base?: {
|
|
25377
25377
|
model?: string | undefined;
|
|
@@ -25434,7 +25434,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25434
25434
|
}, {
|
|
25435
25435
|
stepCountIs?: number | undefined;
|
|
25436
25436
|
}>>>;
|
|
25437
|
-
|
|
25437
|
+
createdAt: z.ZodString;
|
|
25438
|
+
updatedAt: z.ZodString;
|
|
25438
25439
|
type: z.ZodLiteral<"internal">;
|
|
25439
25440
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25440
25441
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25474,8 +25475,6 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
25474
25475
|
data: z.ZodObject<{
|
|
25475
25476
|
id: z.ZodString;
|
|
25476
25477
|
name: z.ZodString;
|
|
25477
|
-
createdAt: z.ZodString;
|
|
25478
|
-
updatedAt: z.ZodString;
|
|
25479
25478
|
description: z.ZodNullable<z.ZodString>;
|
|
25480
25479
|
models: z.ZodNullable<z.ZodObject<{
|
|
25481
25480
|
base: z.ZodObject<{
|
|
@@ -25495,6 +25494,8 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
25495
25494
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
25496
25495
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
25497
25496
|
}, z.core.$strip>>;
|
|
25497
|
+
createdAt: z.ZodString;
|
|
25498
|
+
updatedAt: z.ZodString;
|
|
25498
25499
|
}, {
|
|
25499
25500
|
out: {};
|
|
25500
25501
|
in: {};
|
|
@@ -25766,10 +25767,10 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
25766
25767
|
data: z.ZodObject<{
|
|
25767
25768
|
id: z.ZodString;
|
|
25768
25769
|
name: z.ZodNullable<z.ZodString>;
|
|
25770
|
+
agentId: z.ZodString;
|
|
25769
25771
|
createdAt: z.ZodString;
|
|
25770
25772
|
updatedAt: z.ZodString;
|
|
25771
25773
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
25772
|
-
agentId: z.ZodString;
|
|
25773
25774
|
publicId: z.ZodString;
|
|
25774
25775
|
keyPrefix: z.ZodString;
|
|
25775
25776
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -25784,17 +25785,17 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
25784
25785
|
name: z.ZodString;
|
|
25785
25786
|
createdAt: z.ZodString;
|
|
25786
25787
|
updatedAt: z.ZodString;
|
|
25788
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
25787
25789
|
userId: z.ZodNullable<z.ZodString>;
|
|
25788
25790
|
credentialStoreId: z.ZodString;
|
|
25789
25791
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
25790
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
25791
25792
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
25792
25793
|
type: z.ZodEnum<{
|
|
25793
25794
|
readonly memory: "memory";
|
|
25794
25795
|
readonly keychain: "keychain";
|
|
25795
25796
|
readonly nango: "nango";
|
|
25796
25797
|
}>;
|
|
25797
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
25798
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
25798
25799
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
25799
25800
|
name: "created_at";
|
|
25800
25801
|
tableName: "tools";
|
|
@@ -26074,7 +26075,7 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
26074
26075
|
}, {}, {
|
|
26075
26076
|
length: 256;
|
|
26076
26077
|
}>;
|
|
26077
|
-
},
|
|
26078
|
+
}, drizzle_zod15.BuildRefine<{
|
|
26078
26079
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
26079
26080
|
name: "created_at";
|
|
26080
26081
|
tableName: "tools";
|
|
@@ -26387,10 +26388,10 @@ declare const FunctionToolResponse: z.ZodObject<{
|
|
|
26387
26388
|
data: z.ZodObject<{
|
|
26388
26389
|
id: z.ZodString;
|
|
26389
26390
|
name: z.ZodString;
|
|
26390
|
-
createdAt: z.ZodString;
|
|
26391
|
-
updatedAt: z.ZodString;
|
|
26392
26391
|
description: z.ZodNullable<z.ZodString>;
|
|
26393
26392
|
agentId: z.ZodString;
|
|
26393
|
+
createdAt: z.ZodString;
|
|
26394
|
+
updatedAt: z.ZodString;
|
|
26394
26395
|
functionId: z.ZodString;
|
|
26395
26396
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26396
26397
|
}, z.core.$strip>;
|
|
@@ -26400,7 +26401,7 @@ declare const SubAgentFunctionToolRelationResponse: z.ZodObject<{
|
|
|
26400
26401
|
createdAt: z.ZodString;
|
|
26401
26402
|
updatedAt: z.ZodString;
|
|
26402
26403
|
functionToolId: z.ZodString;
|
|
26403
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
26404
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
26404
26405
|
subAgentId: z.ZodString;
|
|
26405
26406
|
agentId: z.ZodString;
|
|
26406
26407
|
projectId: z.ZodString;
|
|
@@ -26476,9 +26477,9 @@ declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
|
26476
26477
|
createdAt: z.ZodString;
|
|
26477
26478
|
updatedAt: z.ZodString;
|
|
26478
26479
|
toolId: z.ZodString;
|
|
26479
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
26480
|
-
headers: z.ZodNullable<z.ZodType<
|
|
26481
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
26480
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
26481
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
26482
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
26482
26483
|
subAgentId: z.ZodString;
|
|
26483
26484
|
agentId: z.ZodString;
|
|
26484
26485
|
projectId: z.ZodString;
|
|
@@ -26548,10 +26549,10 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
26548
26549
|
createdAt: z.ZodString;
|
|
26549
26550
|
updatedAt: z.ZodString;
|
|
26550
26551
|
enabled: z.ZodBoolean;
|
|
26551
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
26552
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
26552
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
26553
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
26553
26554
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
26554
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
26555
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
26555
26556
|
name: z.ZodString;
|
|
26556
26557
|
description: z.ZodNullable<z.ZodString>;
|
|
26557
26558
|
agentId: z.ZodString;
|
|
@@ -26574,8 +26575,8 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
26574
26575
|
signature: z.ZodObject<{
|
|
26575
26576
|
source: z.ZodEnum<{
|
|
26576
26577
|
query: "query";
|
|
26577
|
-
body: "body";
|
|
26578
26578
|
header: "header";
|
|
26579
|
+
body: "body";
|
|
26579
26580
|
}>;
|
|
26580
26581
|
key: z.ZodString;
|
|
26581
26582
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -26584,8 +26585,8 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
26584
26585
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
26585
26586
|
source: z.ZodEnum<{
|
|
26586
26587
|
literal: "literal";
|
|
26587
|
-
body: "body";
|
|
26588
26588
|
header: "header";
|
|
26589
|
+
body: "body";
|
|
26589
26590
|
}>;
|
|
26590
26591
|
key: z.ZodOptional<z.ZodString>;
|
|
26591
26592
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -26611,8 +26612,8 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
26611
26612
|
triggerId: z.ZodString;
|
|
26612
26613
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
26613
26614
|
status: z.ZodString;
|
|
26614
|
-
requestPayload: z.ZodType<
|
|
26615
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
26615
|
+
requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
26616
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
26616
26617
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
26617
26618
|
createdAt: z.ZodString;
|
|
26618
26619
|
agentId: z.ZodString;
|
|
@@ -26625,8 +26626,6 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
26625
26626
|
data: z.ZodArray<z.ZodObject<{
|
|
26626
26627
|
id: z.ZodString;
|
|
26627
26628
|
name: z.ZodString;
|
|
26628
|
-
createdAt: z.ZodString;
|
|
26629
|
-
updatedAt: z.ZodString;
|
|
26630
26629
|
description: z.ZodNullable<z.ZodString>;
|
|
26631
26630
|
models: z.ZodNullable<z.ZodObject<{
|
|
26632
26631
|
base: z.ZodObject<{
|
|
@@ -26646,6 +26645,8 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
26646
26645
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
26647
26646
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
26648
26647
|
}, z.core.$strip>>;
|
|
26648
|
+
createdAt: z.ZodString;
|
|
26649
|
+
updatedAt: z.ZodString;
|
|
26649
26650
|
}, {
|
|
26650
26651
|
out: {};
|
|
26651
26652
|
in: {};
|
|
@@ -26953,10 +26954,10 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
26953
26954
|
data: z.ZodArray<z.ZodObject<{
|
|
26954
26955
|
id: z.ZodString;
|
|
26955
26956
|
name: z.ZodNullable<z.ZodString>;
|
|
26957
|
+
agentId: z.ZodString;
|
|
26956
26958
|
createdAt: z.ZodString;
|
|
26957
26959
|
updatedAt: z.ZodString;
|
|
26958
26960
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
26959
|
-
agentId: z.ZodString;
|
|
26960
26961
|
publicId: z.ZodString;
|
|
26961
26962
|
keyPrefix: z.ZodString;
|
|
26962
26963
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -26977,17 +26978,17 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
26977
26978
|
name: z.ZodString;
|
|
26978
26979
|
createdAt: z.ZodString;
|
|
26979
26980
|
updatedAt: z.ZodString;
|
|
26981
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
26980
26982
|
userId: z.ZodNullable<z.ZodString>;
|
|
26981
26983
|
credentialStoreId: z.ZodString;
|
|
26982
26984
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26983
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
26984
26985
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
26985
26986
|
type: z.ZodEnum<{
|
|
26986
26987
|
readonly memory: "memory";
|
|
26987
26988
|
readonly keychain: "keychain";
|
|
26988
26989
|
readonly nango: "nango";
|
|
26989
26990
|
}>;
|
|
26990
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
26991
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
26991
26992
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
26992
26993
|
name: "created_at";
|
|
26993
26994
|
tableName: "tools";
|
|
@@ -27267,7 +27268,7 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
27267
27268
|
}, {}, {
|
|
27268
27269
|
length: 256;
|
|
27269
27270
|
}>;
|
|
27270
|
-
},
|
|
27271
|
+
}, drizzle_zod15.BuildRefine<{
|
|
27271
27272
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
27272
27273
|
name: "created_at";
|
|
27273
27274
|
tableName: "tools";
|
|
@@ -27592,10 +27593,10 @@ declare const FunctionToolListResponse: z.ZodObject<{
|
|
|
27592
27593
|
data: z.ZodArray<z.ZodObject<{
|
|
27593
27594
|
id: z.ZodString;
|
|
27594
27595
|
name: z.ZodString;
|
|
27595
|
-
createdAt: z.ZodString;
|
|
27596
|
-
updatedAt: z.ZodString;
|
|
27597
27596
|
description: z.ZodNullable<z.ZodString>;
|
|
27598
27597
|
agentId: z.ZodString;
|
|
27598
|
+
createdAt: z.ZodString;
|
|
27599
|
+
updatedAt: z.ZodString;
|
|
27599
27600
|
functionId: z.ZodString;
|
|
27600
27601
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
27601
27602
|
}, z.core.$strip>>;
|
|
@@ -27611,7 +27612,7 @@ declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
|
|
|
27611
27612
|
createdAt: z.ZodString;
|
|
27612
27613
|
updatedAt: z.ZodString;
|
|
27613
27614
|
functionToolId: z.ZodString;
|
|
27614
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
27615
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27615
27616
|
subAgentId: z.ZodString;
|
|
27616
27617
|
agentId: z.ZodString;
|
|
27617
27618
|
projectId: z.ZodString;
|
|
@@ -27711,9 +27712,9 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
|
27711
27712
|
createdAt: z.ZodString;
|
|
27712
27713
|
updatedAt: z.ZodString;
|
|
27713
27714
|
toolId: z.ZodString;
|
|
27714
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
27715
|
-
headers: z.ZodNullable<z.ZodType<
|
|
27716
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
27715
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27716
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27717
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27717
27718
|
subAgentId: z.ZodString;
|
|
27718
27719
|
agentId: z.ZodString;
|
|
27719
27720
|
projectId: z.ZodString;
|
|
@@ -27801,10 +27802,10 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
27801
27802
|
createdAt: z.ZodString;
|
|
27802
27803
|
updatedAt: z.ZodString;
|
|
27803
27804
|
enabled: z.ZodBoolean;
|
|
27804
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
27805
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
27805
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27806
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27806
27807
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
27807
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
27808
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27808
27809
|
name: z.ZodString;
|
|
27809
27810
|
description: z.ZodNullable<z.ZodString>;
|
|
27810
27811
|
agentId: z.ZodString;
|
|
@@ -27827,8 +27828,8 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
27827
27828
|
signature: z.ZodObject<{
|
|
27828
27829
|
source: z.ZodEnum<{
|
|
27829
27830
|
query: "query";
|
|
27830
|
-
body: "body";
|
|
27831
27831
|
header: "header";
|
|
27832
|
+
body: "body";
|
|
27832
27833
|
}>;
|
|
27833
27834
|
key: z.ZodString;
|
|
27834
27835
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -27837,8 +27838,8 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
27837
27838
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
27838
27839
|
source: z.ZodEnum<{
|
|
27839
27840
|
literal: "literal";
|
|
27840
|
-
body: "body";
|
|
27841
27841
|
header: "header";
|
|
27842
|
+
body: "body";
|
|
27842
27843
|
}>;
|
|
27843
27844
|
key: z.ZodOptional<z.ZodString>;
|
|
27844
27845
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -27870,8 +27871,8 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
27870
27871
|
triggerId: z.ZodString;
|
|
27871
27872
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
27872
27873
|
status: z.ZodString;
|
|
27873
|
-
requestPayload: z.ZodType<
|
|
27874
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
27874
|
+
requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
27875
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27875
27876
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
27876
27877
|
createdAt: z.ZodString;
|
|
27877
27878
|
agentId: z.ZodString;
|
|
@@ -27890,14 +27891,14 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
27890
27891
|
data: z.ZodObject<{
|
|
27891
27892
|
id: z.ZodString;
|
|
27892
27893
|
name: z.ZodString;
|
|
27894
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27893
27895
|
createdAt: z.ZodString;
|
|
27894
27896
|
updatedAt: z.ZodString;
|
|
27895
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27896
27897
|
enabled: z.ZodBoolean;
|
|
27897
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
27898
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
27898
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27899
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27899
27900
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
27900
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
27901
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27901
27902
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27902
27903
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
27903
27904
|
algorithm: z.ZodEnum<{
|
|
@@ -27914,8 +27915,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
27914
27915
|
signature: z.ZodObject<{
|
|
27915
27916
|
source: z.ZodEnum<{
|
|
27916
27917
|
query: "query";
|
|
27917
|
-
body: "body";
|
|
27918
27918
|
header: "header";
|
|
27919
|
+
body: "body";
|
|
27919
27920
|
}>;
|
|
27920
27921
|
key: z.ZodString;
|
|
27921
27922
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -27924,8 +27925,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
27924
27925
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
27925
27926
|
source: z.ZodEnum<{
|
|
27926
27927
|
literal: "literal";
|
|
27927
|
-
body: "body";
|
|
27928
27928
|
header: "header";
|
|
27929
|
+
body: "body";
|
|
27929
27930
|
}>;
|
|
27930
27931
|
key: z.ZodOptional<z.ZodString>;
|
|
27931
27932
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -27951,14 +27952,14 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
27951
27952
|
data: z.ZodArray<z.ZodObject<{
|
|
27952
27953
|
id: z.ZodString;
|
|
27953
27954
|
name: z.ZodString;
|
|
27955
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27954
27956
|
createdAt: z.ZodString;
|
|
27955
27957
|
updatedAt: z.ZodString;
|
|
27956
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27957
27958
|
enabled: z.ZodBoolean;
|
|
27958
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
27959
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
27959
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27960
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27960
27961
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
27961
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
27962
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27962
27963
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27963
27964
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
27964
27965
|
algorithm: z.ZodEnum<{
|
|
@@ -27975,8 +27976,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
27975
27976
|
signature: z.ZodObject<{
|
|
27976
27977
|
source: z.ZodEnum<{
|
|
27977
27978
|
query: "query";
|
|
27978
|
-
body: "body";
|
|
27979
27979
|
header: "header";
|
|
27980
|
+
body: "body";
|
|
27980
27981
|
}>;
|
|
27981
27982
|
key: z.ZodString;
|
|
27982
27983
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -27985,8 +27986,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
27985
27986
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
27986
27987
|
source: z.ZodEnum<{
|
|
27987
27988
|
literal: "literal";
|
|
27988
|
-
body: "body";
|
|
27989
27989
|
header: "header";
|
|
27990
|
+
body: "body";
|
|
27990
27991
|
}>;
|
|
27991
27992
|
key: z.ZodOptional<z.ZodString>;
|
|
27992
27993
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -28095,18 +28096,17 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
28095
28096
|
}, z.core.$strip>>;
|
|
28096
28097
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28097
28098
|
name: z.ZodString;
|
|
28098
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
28099
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
28100
28099
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28101
28100
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28101
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
28102
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
28102
28103
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28103
28104
|
id: z.ZodString;
|
|
28104
28105
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28105
28106
|
id: z.ZodString;
|
|
28106
28107
|
name: z.ZodString;
|
|
28107
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
28108
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
28109
28108
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28109
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
28110
28110
|
models: z.ZodOptional<z.ZodObject<{
|
|
28111
28111
|
base: z.ZodOptional<z.ZodObject<{
|
|
28112
28112
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -28130,7 +28130,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
28130
28130
|
}, {
|
|
28131
28131
|
stepCountIs?: number | undefined;
|
|
28132
28132
|
}>>>>;
|
|
28133
|
-
|
|
28133
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
28134
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
28134
28135
|
type: z.ZodLiteral<"internal">;
|
|
28135
28136
|
canUse: z.ZodArray<z.ZodObject<{
|
|
28136
28137
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -28234,16 +28235,16 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
28234
28235
|
}, z.core.$strip>>>;
|
|
28235
28236
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28236
28237
|
name: z.ZodString;
|
|
28238
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28237
28239
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
28238
28240
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
28239
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28240
28241
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
28241
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
28242
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
28242
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
28243
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
28243
28244
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28244
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
28245
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
28245
28246
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28246
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
28247
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
28247
28248
|
id: z.ZodOptional<z.ZodString>;
|
|
28248
28249
|
}, z.core.$strip>>>;
|
|
28249
28250
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -28422,10 +28423,10 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
28422
28423
|
name: z.ZodString;
|
|
28423
28424
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
28424
28425
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
28426
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28425
28427
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28426
28428
|
credentialStoreId: z.ZodString;
|
|
28427
28429
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
28428
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28429
28430
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28430
28431
|
type: z.ZodEnum<{
|
|
28431
28432
|
readonly memory: "memory";
|
|
@@ -28444,8 +28445,6 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28444
28445
|
data: z.ZodObject<{
|
|
28445
28446
|
id: z.ZodString;
|
|
28446
28447
|
name: z.ZodString;
|
|
28447
|
-
createdAt: z.ZodString;
|
|
28448
|
-
updatedAt: z.ZodString;
|
|
28449
28448
|
description: z.ZodNullable<z.ZodString>;
|
|
28450
28449
|
models: z.ZodNullable<z.ZodObject<{
|
|
28451
28450
|
base: z.ZodObject<{
|
|
@@ -28465,20 +28464,21 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28465
28464
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
28466
28465
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
28467
28466
|
}, z.core.$strip>>;
|
|
28467
|
+
createdAt: z.ZodString;
|
|
28468
|
+
updatedAt: z.ZodString;
|
|
28468
28469
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28469
28470
|
id: z.ZodString;
|
|
28470
28471
|
name: z.ZodString;
|
|
28471
|
-
createdAt: z.ZodString;
|
|
28472
|
-
updatedAt: z.ZodString;
|
|
28473
28472
|
description: z.ZodNullable<z.ZodString>;
|
|
28474
28473
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28474
|
+
createdAt: z.ZodString;
|
|
28475
|
+
updatedAt: z.ZodString;
|
|
28475
28476
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
28476
28477
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28477
28478
|
id: z.ZodString;
|
|
28478
28479
|
name: z.ZodString;
|
|
28479
|
-
createdAt: z.ZodString;
|
|
28480
|
-
updatedAt: z.ZodString;
|
|
28481
28480
|
description: z.ZodNullable<z.ZodString>;
|
|
28481
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
28482
28482
|
models: z.ZodNullable<z.ZodType<{
|
|
28483
28483
|
base?: {
|
|
28484
28484
|
model?: string | undefined;
|
|
@@ -28541,7 +28541,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28541
28541
|
}, {
|
|
28542
28542
|
stepCountIs?: number | undefined;
|
|
28543
28543
|
}>>>;
|
|
28544
|
-
|
|
28544
|
+
createdAt: z.ZodString;
|
|
28545
|
+
updatedAt: z.ZodString;
|
|
28545
28546
|
type: z.ZodLiteral<"internal">;
|
|
28546
28547
|
canUse: z.ZodArray<z.ZodObject<{
|
|
28547
28548
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -28614,10 +28615,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28614
28615
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28615
28616
|
id: z.ZodString;
|
|
28616
28617
|
name: z.ZodString;
|
|
28617
|
-
createdAt: z.ZodString;
|
|
28618
|
-
updatedAt: z.ZodString;
|
|
28619
28618
|
description: z.ZodNullable<z.ZodString>;
|
|
28620
28619
|
agentId: z.ZodString;
|
|
28620
|
+
createdAt: z.ZodString;
|
|
28621
|
+
updatedAt: z.ZodString;
|
|
28621
28622
|
functionId: z.ZodString;
|
|
28622
28623
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
28623
28624
|
}, z.core.$strip>>>;
|
|
@@ -28704,10 +28705,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28704
28705
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28705
28706
|
id: z.ZodString;
|
|
28706
28707
|
name: z.ZodString;
|
|
28707
|
-
createdAt: z.ZodString;
|
|
28708
|
-
updatedAt: z.ZodString;
|
|
28709
28708
|
description: z.ZodNullable<z.ZodString>;
|
|
28710
28709
|
agentId: z.ZodString;
|
|
28710
|
+
createdAt: z.ZodString;
|
|
28711
|
+
updatedAt: z.ZodString;
|
|
28711
28712
|
functionId: z.ZodString;
|
|
28712
28713
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
28713
28714
|
}, z.core.$strip>>>;
|
|
@@ -28798,17 +28799,17 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28798
28799
|
name: z.ZodString;
|
|
28799
28800
|
createdAt: z.ZodString;
|
|
28800
28801
|
updatedAt: z.ZodString;
|
|
28802
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
28801
28803
|
userId: z.ZodNullable<z.ZodString>;
|
|
28802
28804
|
credentialStoreId: z.ZodString;
|
|
28803
28805
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28804
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
28805
28806
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
28806
28807
|
type: z.ZodEnum<{
|
|
28807
28808
|
readonly memory: "memory";
|
|
28808
28809
|
readonly keychain: "keychain";
|
|
28809
28810
|
readonly nango: "nango";
|
|
28810
28811
|
}>;
|
|
28811
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
28812
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
28812
28813
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
28813
28814
|
name: "created_at";
|
|
28814
28815
|
tableName: "tools";
|
|
@@ -29088,7 +29089,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
29088
29089
|
}, {}, {
|
|
29089
29090
|
length: 256;
|
|
29090
29091
|
}>;
|
|
29091
|
-
},
|
|
29092
|
+
}, drizzle_zod15.BuildRefine<{
|
|
29092
29093
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
29093
29094
|
name: "created_at";
|
|
29094
29095
|
tableName: "tools";
|
|
@@ -29393,8 +29394,6 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29393
29394
|
data: z.ZodObject<{
|
|
29394
29395
|
id: z.ZodString;
|
|
29395
29396
|
name: z.ZodString;
|
|
29396
|
-
createdAt: z.ZodString;
|
|
29397
|
-
updatedAt: z.ZodString;
|
|
29398
29397
|
description: z.ZodNullable<z.ZodString>;
|
|
29399
29398
|
models: z.ZodNullable<z.ZodObject<{
|
|
29400
29399
|
base: z.ZodObject<{
|
|
@@ -29414,6 +29413,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29414
29413
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
29415
29414
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
29416
29415
|
}, z.core.$strip>>;
|
|
29416
|
+
createdAt: z.ZodString;
|
|
29417
|
+
updatedAt: z.ZodString;
|
|
29417
29418
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
29418
29419
|
createdAt: z.ZodString;
|
|
29419
29420
|
updatedAt: z.ZodString;
|
|
@@ -29446,10 +29447,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29446
29447
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29447
29448
|
id: z.ZodString;
|
|
29448
29449
|
name: z.ZodString;
|
|
29449
|
-
createdAt: z.ZodString;
|
|
29450
|
-
updatedAt: z.ZodString;
|
|
29451
29450
|
description: z.ZodNullable<z.ZodString>;
|
|
29452
29451
|
agentId: z.ZodString;
|
|
29452
|
+
createdAt: z.ZodString;
|
|
29453
|
+
updatedAt: z.ZodString;
|
|
29453
29454
|
functionId: z.ZodString;
|
|
29454
29455
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
29455
29456
|
}, z.core.$strip>>>;
|
|
@@ -29540,17 +29541,17 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29540
29541
|
name: z.ZodString;
|
|
29541
29542
|
createdAt: z.ZodString;
|
|
29542
29543
|
updatedAt: z.ZodString;
|
|
29544
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
29543
29545
|
userId: z.ZodNullable<z.ZodString>;
|
|
29544
29546
|
credentialStoreId: z.ZodString;
|
|
29545
29547
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29546
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
29547
29548
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
29548
29549
|
type: z.ZodEnum<{
|
|
29549
29550
|
readonly memory: "memory";
|
|
29550
29551
|
readonly keychain: "keychain";
|
|
29551
29552
|
readonly nango: "nango";
|
|
29552
29553
|
}>;
|
|
29553
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
29554
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
29554
29555
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
29555
29556
|
name: "created_at";
|
|
29556
29557
|
tableName: "tools";
|
|
@@ -29830,7 +29831,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29830
29831
|
}, {}, {
|
|
29831
29832
|
length: 256;
|
|
29832
29833
|
}>;
|
|
29833
|
-
},
|
|
29834
|
+
}, drizzle_zod15.BuildRefine<{
|
|
29834
29835
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
29835
29836
|
name: "created_at";
|
|
29836
29837
|
tableName: "tools";
|
|
@@ -30129,10 +30130,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
30129
30130
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30130
30131
|
id: z.ZodString;
|
|
30131
30132
|
name: z.ZodString;
|
|
30132
|
-
createdAt: z.ZodString;
|
|
30133
|
-
updatedAt: z.ZodString;
|
|
30134
30133
|
description: z.ZodNullable<z.ZodString>;
|
|
30135
30134
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
30135
|
+
createdAt: z.ZodString;
|
|
30136
|
+
updatedAt: z.ZodString;
|
|
30136
30137
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
30137
30138
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
30138
30139
|
createdAt: z.ZodString;
|
|
@@ -30182,10 +30183,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
30182
30183
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30183
30184
|
id: z.ZodString;
|
|
30184
30185
|
name: z.ZodString;
|
|
30185
|
-
createdAt: z.ZodString;
|
|
30186
|
-
updatedAt: z.ZodString;
|
|
30187
30186
|
description: z.ZodNullable<z.ZodString>;
|
|
30188
30187
|
agentId: z.ZodString;
|
|
30188
|
+
createdAt: z.ZodString;
|
|
30189
|
+
updatedAt: z.ZodString;
|
|
30189
30190
|
functionId: z.ZodString;
|
|
30190
30191
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
30191
30192
|
}, z.core.$strip>>>;
|
|
@@ -30242,9 +30243,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
30242
30243
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30243
30244
|
id: z.ZodString;
|
|
30244
30245
|
name: z.ZodString;
|
|
30245
|
-
createdAt: z.ZodString;
|
|
30246
|
-
updatedAt: z.ZodString;
|
|
30247
30246
|
description: z.ZodNullable<z.ZodString>;
|
|
30247
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
30248
30248
|
models: z.ZodNullable<z.ZodType<{
|
|
30249
30249
|
base?: {
|
|
30250
30250
|
model?: string | undefined;
|
|
@@ -30307,7 +30307,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
30307
30307
|
}, {
|
|
30308
30308
|
stepCountIs?: number | undefined;
|
|
30309
30309
|
}>>>;
|
|
30310
|
-
|
|
30310
|
+
createdAt: z.ZodString;
|
|
30311
|
+
updatedAt: z.ZodString;
|
|
30311
30312
|
type: z.ZodLiteral<"internal">;
|
|
30312
30313
|
canUse: z.ZodArray<z.ZodObject<{
|
|
30313
30314
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -30347,18 +30348,17 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
30347
30348
|
declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
30348
30349
|
data: z.ZodObject<{
|
|
30349
30350
|
name: z.ZodString;
|
|
30350
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
30351
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30352
30351
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30353
30352
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30353
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
30354
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30354
30355
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30355
30356
|
id: z.ZodString;
|
|
30356
30357
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30357
30358
|
id: z.ZodString;
|
|
30358
30359
|
name: z.ZodString;
|
|
30359
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
30360
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30361
30360
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30361
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
30362
30362
|
models: z.ZodOptional<z.ZodObject<{
|
|
30363
30363
|
base: z.ZodOptional<z.ZodObject<{
|
|
30364
30364
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -30382,7 +30382,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
30382
30382
|
}, {
|
|
30383
30383
|
stepCountIs?: number | undefined;
|
|
30384
30384
|
}>>>>;
|
|
30385
|
-
|
|
30385
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
30386
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30386
30387
|
type: z.ZodLiteral<"internal">;
|
|
30387
30388
|
canUse: z.ZodArray<z.ZodObject<{
|
|
30388
30389
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -30486,16 +30487,16 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
30486
30487
|
}, z.core.$strip>>>;
|
|
30487
30488
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30488
30489
|
name: z.ZodString;
|
|
30490
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30489
30491
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
30490
30492
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30491
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30492
30493
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
30493
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
30494
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
30494
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
30495
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
30495
30496
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30496
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
30497
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
30497
30498
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30498
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
30499
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
30499
30500
|
id: z.ZodOptional<z.ZodString>;
|
|
30500
30501
|
}, z.core.$strip>>>;
|
|
30501
30502
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -30542,17 +30543,16 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
30542
30543
|
data: z.ZodObject<{
|
|
30543
30544
|
id: z.ZodString;
|
|
30544
30545
|
name: z.ZodString;
|
|
30545
|
-
createdAt: z.ZodString;
|
|
30546
|
-
updatedAt: z.ZodString;
|
|
30547
30546
|
description: z.ZodNullable<z.ZodString>;
|
|
30548
30547
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
30548
|
+
createdAt: z.ZodString;
|
|
30549
|
+
updatedAt: z.ZodString;
|
|
30549
30550
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
30550
30551
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30551
30552
|
id: z.ZodString;
|
|
30552
30553
|
name: z.ZodString;
|
|
30553
|
-
createdAt: z.ZodString;
|
|
30554
|
-
updatedAt: z.ZodString;
|
|
30555
30554
|
description: z.ZodNullable<z.ZodString>;
|
|
30555
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
30556
30556
|
models: z.ZodNullable<z.ZodType<{
|
|
30557
30557
|
base?: {
|
|
30558
30558
|
model?: string | undefined;
|
|
@@ -30615,7 +30615,8 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
30615
30615
|
}, {
|
|
30616
30616
|
stepCountIs?: number | undefined;
|
|
30617
30617
|
}>>>;
|
|
30618
|
-
|
|
30618
|
+
createdAt: z.ZodString;
|
|
30619
|
+
updatedAt: z.ZodString;
|
|
30619
30620
|
type: z.ZodLiteral<"internal">;
|
|
30620
30621
|
canUse: z.ZodArray<z.ZodObject<{
|
|
30621
30622
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -30688,10 +30689,10 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
30688
30689
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30689
30690
|
id: z.ZodString;
|
|
30690
30691
|
name: z.ZodString;
|
|
30691
|
-
createdAt: z.ZodString;
|
|
30692
|
-
updatedAt: z.ZodString;
|
|
30693
30692
|
description: z.ZodNullable<z.ZodString>;
|
|
30694
30693
|
agentId: z.ZodString;
|
|
30694
|
+
createdAt: z.ZodString;
|
|
30695
|
+
updatedAt: z.ZodString;
|
|
30695
30696
|
functionId: z.ZodString;
|
|
30696
30697
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
30697
30698
|
}, z.core.$strip>>>;
|
|
@@ -30903,7 +30904,7 @@ declare const SubAgentTeamAgentRelationResponse: z.ZodObject<{
|
|
|
30903
30904
|
createdAt: z.ZodString;
|
|
30904
30905
|
updatedAt: z.ZodString;
|
|
30905
30906
|
targetAgentId: z.ZodString;
|
|
30906
|
-
headers: z.ZodNullable<z.ZodType<
|
|
30907
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30907
30908
|
subAgentId: z.ZodString;
|
|
30908
30909
|
agentId: z.ZodString;
|
|
30909
30910
|
projectId: z.ZodString;
|
|
@@ -30916,7 +30917,7 @@ declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
|
|
|
30916
30917
|
createdAt: z.ZodString;
|
|
30917
30918
|
updatedAt: z.ZodString;
|
|
30918
30919
|
targetAgentId: z.ZodString;
|
|
30919
|
-
headers: z.ZodNullable<z.ZodType<
|
|
30920
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30920
30921
|
subAgentId: z.ZodString;
|
|
30921
30922
|
agentId: z.ZodString;
|
|
30922
30923
|
projectId: z.ZodString;
|
|
@@ -30935,7 +30936,7 @@ declare const SubAgentExternalAgentRelationResponse: z.ZodObject<{
|
|
|
30935
30936
|
createdAt: z.ZodString;
|
|
30936
30937
|
updatedAt: z.ZodString;
|
|
30937
30938
|
externalAgentId: z.ZodString;
|
|
30938
|
-
headers: z.ZodNullable<z.ZodType<
|
|
30939
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30939
30940
|
subAgentId: z.ZodString;
|
|
30940
30941
|
agentId: z.ZodString;
|
|
30941
30942
|
projectId: z.ZodString;
|
|
@@ -30948,7 +30949,7 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
|
30948
30949
|
createdAt: z.ZodString;
|
|
30949
30950
|
updatedAt: z.ZodString;
|
|
30950
30951
|
externalAgentId: z.ZodString;
|
|
30951
|
-
headers: z.ZodNullable<z.ZodType<
|
|
30952
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30952
30953
|
subAgentId: z.ZodString;
|
|
30953
30954
|
agentId: z.ZodString;
|
|
30954
30955
|
projectId: z.ZodString;
|
|
@@ -31115,7 +31116,7 @@ declare const PaginationWithRefQueryParamsSchema: z.ZodObject<{
|
|
|
31115
31116
|
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
31116
31117
|
ref: z.ZodOptional<z.ZodString>;
|
|
31117
31118
|
}, z.core.$strip>;
|
|
31118
|
-
declare const ProjectMetadataSelectSchema:
|
|
31119
|
+
declare const ProjectMetadataSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
31119
31120
|
id: drizzle_orm_pg_core211.PgColumn<{
|
|
31120
31121
|
name: "id";
|
|
31121
31122
|
tableName: "project_metadata";
|
|
@@ -31209,7 +31210,7 @@ declare const ProjectMetadataSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
31209
31210
|
}, {}, {
|
|
31210
31211
|
length: 512;
|
|
31211
31212
|
}>;
|
|
31212
|
-
},
|
|
31213
|
+
}, drizzle_zod15.BuildRefine<{
|
|
31213
31214
|
id: drizzle_orm_pg_core211.PgColumn<{
|
|
31214
31215
|
name: "id";
|
|
31215
31216
|
tableName: "project_metadata";
|
|
@@ -31323,7 +31324,7 @@ declare const WorkAppGitHubAccountTypeSchema: z.ZodEnum<{
|
|
|
31323
31324
|
User: "User";
|
|
31324
31325
|
Organization: "Organization";
|
|
31325
31326
|
}>;
|
|
31326
|
-
declare const WorkAppGitHubInstallationSelectSchema:
|
|
31327
|
+
declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
31327
31328
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
31328
31329
|
name: "created_at";
|
|
31329
31330
|
tableName: "work_app_github_installations";
|
|
@@ -31489,7 +31490,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
31489
31490
|
}, {}, {
|
|
31490
31491
|
length: 256;
|
|
31491
31492
|
}>;
|
|
31492
|
-
},
|
|
31493
|
+
}, drizzle_zod15.BuildRefine<{
|
|
31493
31494
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
31494
31495
|
name: "created_at";
|
|
31495
31496
|
tableName: "work_app_github_installations";
|
|
@@ -31658,8 +31659,8 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
31658
31659
|
}, undefined>, undefined>;
|
|
31659
31660
|
declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
|
|
31660
31661
|
id: z.ZodString;
|
|
31661
|
-
accountId: z.ZodString;
|
|
31662
31662
|
tenantId: z.ZodString;
|
|
31663
|
+
accountId: z.ZodString;
|
|
31663
31664
|
installationId: z.ZodString;
|
|
31664
31665
|
accountLogin: z.ZodString;
|
|
31665
31666
|
accountType: z.ZodEnum<{
|
|
@@ -31689,8 +31690,8 @@ declare const WorkAppGithubInstallationApiSelectSchema: z.ZodObject<OmitTenantSc
|
|
|
31689
31690
|
}>, z.core.$strip>;
|
|
31690
31691
|
declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<OmitGeneratedFields<{
|
|
31691
31692
|
id: z.ZodString;
|
|
31692
|
-
accountId: z.ZodString;
|
|
31693
31693
|
tenantId: z.ZodString;
|
|
31694
|
+
accountId: z.ZodString;
|
|
31694
31695
|
installationId: z.ZodString;
|
|
31695
31696
|
accountLogin: z.ZodString;
|
|
31696
31697
|
accountType: z.ZodEnum<{
|
|
@@ -31704,7 +31705,7 @@ declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<OmitGenerate
|
|
|
31704
31705
|
disconnected: "disconnected";
|
|
31705
31706
|
}>>>;
|
|
31706
31707
|
}>, z.core.$strip>;
|
|
31707
|
-
declare const WorkAppGitHubRepositorySelectSchema:
|
|
31708
|
+
declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
31708
31709
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
31709
31710
|
name: "created_at";
|
|
31710
31711
|
tableName: "work_app_github_repositories";
|
|
@@ -31849,7 +31850,7 @@ declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod19.BuildSchema<"se
|
|
|
31849
31850
|
identity: undefined;
|
|
31850
31851
|
generated: undefined;
|
|
31851
31852
|
}, {}, {}>;
|
|
31852
|
-
},
|
|
31853
|
+
}, drizzle_zod15.BuildRefine<{
|
|
31853
31854
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
31854
31855
|
name: "created_at";
|
|
31855
31856
|
tableName: "work_app_github_repositories";
|
|
@@ -32015,7 +32016,7 @@ declare const WorkAppGitHubRepositoryApiInsertSchema: z.ZodObject<OmitGeneratedF
|
|
|
32015
32016
|
repositoryFullName: z.ZodString;
|
|
32016
32017
|
private: z.ZodOptional<z.ZodBoolean>;
|
|
32017
32018
|
}>>, z.core.$strip>;
|
|
32018
|
-
declare const WorkAppGitHubProjectRepositoryAccessSelectSchema:
|
|
32019
|
+
declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
32019
32020
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
32020
32021
|
name: "created_at";
|
|
32021
32022
|
tableName: "work_app_github_project_repository_access";
|
|
@@ -32126,7 +32127,7 @@ declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod19.Bu
|
|
|
32126
32127
|
}, {}, {
|
|
32127
32128
|
length: 256;
|
|
32128
32129
|
}>;
|
|
32129
|
-
},
|
|
32130
|
+
}, drizzle_zod15.BuildRefine<{
|
|
32130
32131
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
32131
32132
|
name: "created_at";
|
|
32132
32133
|
tableName: "work_app_github_project_repository_access";
|
|
@@ -32238,7 +32239,7 @@ declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod19.Bu
|
|
|
32238
32239
|
length: 256;
|
|
32239
32240
|
}>;
|
|
32240
32241
|
}, undefined>, undefined>;
|
|
32241
|
-
declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema:
|
|
32242
|
+
declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
32242
32243
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
32243
32244
|
name: "created_at";
|
|
32244
32245
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
@@ -32368,7 +32369,7 @@ declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema: drizzle_zod19.Bu
|
|
|
32368
32369
|
}, {}, {
|
|
32369
32370
|
length: 256;
|
|
32370
32371
|
}>;
|
|
32371
|
-
},
|
|
32372
|
+
}, drizzle_zod15.BuildRefine<{
|
|
32372
32373
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
32373
32374
|
name: "created_at";
|
|
32374
32375
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
@@ -32522,7 +32523,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
32522
32523
|
all: "all";
|
|
32523
32524
|
selected: "selected";
|
|
32524
32525
|
}>;
|
|
32525
|
-
repositories: z.ZodArray<
|
|
32526
|
+
repositories: z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
32526
32527
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
32527
32528
|
name: "created_at";
|
|
32528
32529
|
tableName: "work_app_github_repositories";
|
|
@@ -32667,7 +32668,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
32667
32668
|
identity: undefined;
|
|
32668
32669
|
generated: undefined;
|
|
32669
32670
|
}, {}, {}>;
|
|
32670
|
-
},
|
|
32671
|
+
}, drizzle_zod15.BuildRefine<{
|
|
32671
32672
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
32672
32673
|
name: "created_at";
|
|
32673
32674
|
tableName: "work_app_github_repositories";
|
|
@@ -32815,4 +32816,4 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
32815
32816
|
}, undefined>, undefined>>;
|
|
32816
32817
|
}, z.core.$strip>;
|
|
32817
32818
|
//#endregion
|
|
32818
|
-
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, 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, 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, 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, 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 };
|
|
32819
|
+
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, 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, 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, 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, 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 };
|