@inkeep/agents-core 0.62.1 → 0.62.2
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/init.js +12 -2
- package/dist/data-access/manage/agents.d.ts +6 -6
- package/dist/data-access/manage/artifactComponents.d.ts +6 -6
- package/dist/data-access/manage/contextConfigs.d.ts +8 -8
- package/dist/data-access/manage/dataComponents.d.ts +4 -4
- package/dist/data-access/manage/functionTools.d.ts +8 -8
- package/dist/data-access/manage/skills.d.ts +8 -8
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgentRelations.d.ts +16 -16
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgents.d.ts +6 -6
- package/dist/data-access/manage/tools.d.ts +9 -9
- package/dist/data-access/runtime/apiKeys.d.ts +8 -8
- package/dist/data-access/runtime/apps.d.ts +4 -4
- package/dist/data-access/runtime/conversations.d.ts +12 -12
- package/dist/data-access/runtime/messages.d.ts +15 -15
- package/dist/data-access/runtime/tasks.d.ts +2 -2
- package/dist/db/manage/manage-schema.d.ts +450 -450
- package/dist/db/runtime/runtime-schema.d.ts +340 -340
- package/dist/middleware/no-auth.d.ts +2 -2
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas.d.ts +367 -367
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ import { JsonSchemaProperty } from "./json-schemas.js";
|
|
|
4
4
|
import "../index.js";
|
|
5
5
|
import { z } from "@hono/zod-openapi";
|
|
6
6
|
import * as drizzle_orm_pg_core220 from "drizzle-orm/pg-core";
|
|
7
|
-
import * as
|
|
7
|
+
import * as drizzle_zod19 from "drizzle-zod";
|
|
8
8
|
|
|
9
9
|
//#region src/validation/schemas.d.ts
|
|
10
10
|
declare const StringRecordSchema: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -131,7 +131,7 @@ type OmitAgentScope<T> = Omit<T, 'tenantId' | 'projectId' | 'agentId'>;
|
|
|
131
131
|
type OmitTenantScope<T> = Omit<T, 'tenantId'>;
|
|
132
132
|
type OmitTimestamps<T> = Omit<T, 'createdAt' | 'updatedAt'>;
|
|
133
133
|
type OmitGeneratedFields<T> = Omit<T, 'id' | 'createdAt' | 'updatedAt'>;
|
|
134
|
-
declare const SubAgentSelectSchema:
|
|
134
|
+
declare const SubAgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
135
135
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
136
136
|
name: "created_at";
|
|
137
137
|
tableName: "sub_agents";
|
|
@@ -382,7 +382,7 @@ declare const SubAgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
382
382
|
}, {}, {
|
|
383
383
|
length: 256;
|
|
384
384
|
}>;
|
|
385
|
-
},
|
|
385
|
+
}, drizzle_zod19.BuildRefine<{
|
|
386
386
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
387
387
|
name: "created_at";
|
|
388
388
|
tableName: "sub_agents";
|
|
@@ -851,7 +851,7 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
851
851
|
}>>>>>>;
|
|
852
852
|
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
853
853
|
}, z.core.$strip>;
|
|
854
|
-
declare const SubAgentRelationSelectSchema:
|
|
854
|
+
declare const SubAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
855
855
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
856
856
|
name: "created_at";
|
|
857
857
|
tableName: "sub_agent_relations";
|
|
@@ -1019,7 +1019,7 @@ declare const SubAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
1019
1019
|
}, {}, {
|
|
1020
1020
|
length: 256;
|
|
1021
1021
|
}>;
|
|
1022
|
-
},
|
|
1022
|
+
}, drizzle_zod19.BuildRefine<{
|
|
1023
1023
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
1024
1024
|
name: "created_at";
|
|
1025
1025
|
tableName: "sub_agent_relations";
|
|
@@ -1290,7 +1290,7 @@ declare const ExternalSubAgentRelationApiInsertSchema: z.ZodObject<OmitProjectSc
|
|
|
1290
1290
|
sourceSubAgentId: z.ZodString;
|
|
1291
1291
|
externalSubAgentId: z.ZodString;
|
|
1292
1292
|
}>, z.core.$strip>;
|
|
1293
|
-
declare const AgentSelectSchema:
|
|
1293
|
+
declare const AgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
1294
1294
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
1295
1295
|
name: "created_at";
|
|
1296
1296
|
tableName: "agent";
|
|
@@ -1608,7 +1608,7 @@ declare const AgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
1608
1608
|
}, {}, {
|
|
1609
1609
|
length: 256;
|
|
1610
1610
|
}>;
|
|
1611
|
-
},
|
|
1611
|
+
}, drizzle_zod19.BuildRefine<{
|
|
1612
1612
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
1613
1613
|
name: "created_at";
|
|
1614
1614
|
tableName: "agent";
|
|
@@ -1927,7 +1927,7 @@ declare const AgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
1927
1927
|
length: 256;
|
|
1928
1928
|
}>;
|
|
1929
1929
|
}, undefined>, undefined>;
|
|
1930
|
-
declare const AgentInsertSchema:
|
|
1930
|
+
declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
1931
1931
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
1932
1932
|
name: "created_at";
|
|
1933
1933
|
tableName: "agent";
|
|
@@ -2245,7 +2245,7 @@ declare const AgentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
2245
2245
|
}, {}, {
|
|
2246
2246
|
length: 256;
|
|
2247
2247
|
}>;
|
|
2248
|
-
},
|
|
2248
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
2249
2249
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
2250
2250
|
name: "created_at";
|
|
2251
2251
|
tableName: "agent";
|
|
@@ -2563,7 +2563,7 @@ declare const AgentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
2563
2563
|
}, {}, {
|
|
2564
2564
|
length: 256;
|
|
2565
2565
|
}>;
|
|
2566
|
-
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "
|
|
2566
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "tenantId" | "projectId" | "defaultSubAgentId" | "contextConfigId" | "models" | "prompt" | "statusUpdates" | "stopWhen" | "executionMode">, undefined>, undefined>;
|
|
2567
2567
|
declare const AgentUpdateSchema: z.ZodObject<{
|
|
2568
2568
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2569
2569
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -3361,10 +3361,10 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3361
3361
|
createdAt: z.ZodString;
|
|
3362
3362
|
updatedAt: z.ZodString;
|
|
3363
3363
|
enabled: z.ZodBoolean;
|
|
3364
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
3365
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
3364
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
3365
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
3366
3366
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
3367
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
3367
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
3368
3368
|
name: z.ZodString;
|
|
3369
3369
|
description: z.ZodNullable<z.ZodString>;
|
|
3370
3370
|
agentId: z.ZodString;
|
|
@@ -3423,7 +3423,7 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3423
3423
|
out: {};
|
|
3424
3424
|
in: {};
|
|
3425
3425
|
}>;
|
|
3426
|
-
declare const TriggerInsertSchema:
|
|
3426
|
+
declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
3427
3427
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
3428
3428
|
name: "created_at";
|
|
3429
3429
|
tableName: "triggers";
|
|
@@ -3793,7 +3793,7 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
3793
3793
|
}, {}, {
|
|
3794
3794
|
length: 256;
|
|
3795
3795
|
}>;
|
|
3796
|
-
},
|
|
3796
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
3797
3797
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
3798
3798
|
name: "created_at";
|
|
3799
3799
|
tableName: "triggers";
|
|
@@ -4163,16 +4163,16 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
4163
4163
|
}, {}, {
|
|
4164
4164
|
length: 256;
|
|
4165
4165
|
}>;
|
|
4166
|
-
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "enabled" | "
|
|
4166
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "enabled" | "tenantId" | "projectId" | "agentId" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification" | "runAsUserId" | "createdBy">, undefined>, undefined>;
|
|
4167
4167
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
4168
4168
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4169
4169
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4170
|
-
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4171
|
-
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4170
|
+
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4171
|
+
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4172
4172
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4173
|
-
authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4173
|
+
authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4174
4174
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4175
|
-
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4175
|
+
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4176
4176
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4177
4177
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4178
4178
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4190,10 +4190,10 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4190
4190
|
createdAt: z.ZodString;
|
|
4191
4191
|
updatedAt: z.ZodString;
|
|
4192
4192
|
enabled: z.ZodBoolean;
|
|
4193
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
4194
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
4193
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4194
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4195
4195
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4196
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
4196
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4197
4197
|
name: z.ZodString;
|
|
4198
4198
|
description: z.ZodNullable<z.ZodString>;
|
|
4199
4199
|
agentId: z.ZodString;
|
|
@@ -4254,12 +4254,12 @@ declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
|
4254
4254
|
name: z.ZodString;
|
|
4255
4255
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4256
4256
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4257
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4258
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4257
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4258
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4259
4259
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4260
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4260
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4261
4261
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4262
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4262
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4263
4263
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4264
4264
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4265
4265
|
}, z.core.$strip>;
|
|
@@ -4270,12 +4270,12 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4270
4270
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4271
4271
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4272
4272
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
4273
|
-
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4274
|
-
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4273
|
+
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4274
|
+
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4275
4275
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4276
|
-
authentication: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4276
|
+
authentication: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4277
4277
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4278
|
-
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4278
|
+
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4279
4279
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4280
4280
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4281
4281
|
}, z.core.$strip>;
|
|
@@ -4286,10 +4286,10 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4286
4286
|
updatedAt: z.ZodString;
|
|
4287
4287
|
description: z.ZodNullable<z.ZodString>;
|
|
4288
4288
|
enabled: z.ZodBoolean;
|
|
4289
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
4290
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
4289
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4290
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4291
4291
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4292
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
4292
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4293
4293
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4294
4294
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4295
4295
|
algorithm: z.ZodEnum<{
|
|
@@ -4344,8 +4344,8 @@ declare const TriggerInvocationSelectSchema: z.ZodObject<{
|
|
|
4344
4344
|
triggerId: z.ZodString;
|
|
4345
4345
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
4346
4346
|
status: z.ZodString;
|
|
4347
|
-
requestPayload: z.ZodType<
|
|
4348
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
4347
|
+
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
4348
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4349
4349
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
4350
4350
|
createdAt: z.ZodString;
|
|
4351
4351
|
agentId: z.ZodString;
|
|
@@ -4365,7 +4365,7 @@ declare const TriggerInvocationSelectSchema: z.ZodObject<{
|
|
|
4365
4365
|
out: {};
|
|
4366
4366
|
in: {};
|
|
4367
4367
|
}>;
|
|
4368
|
-
declare const TriggerInvocationInsertSchema:
|
|
4368
|
+
declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
4369
4369
|
triggerId: drizzle_orm_pg_core220.PgColumn<{
|
|
4370
4370
|
name: "trigger_id";
|
|
4371
4371
|
tableName: "trigger_invocations";
|
|
@@ -4594,7 +4594,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<"insert",
|
|
|
4594
4594
|
}, {}, {
|
|
4595
4595
|
length: 256;
|
|
4596
4596
|
}>;
|
|
4597
|
-
},
|
|
4597
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
4598
4598
|
triggerId: drizzle_orm_pg_core220.PgColumn<{
|
|
4599
4599
|
name: "trigger_id";
|
|
4600
4600
|
tableName: "trigger_invocations";
|
|
@@ -4823,7 +4823,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<"insert",
|
|
|
4823
4823
|
}, {}, {
|
|
4824
4824
|
length: 256;
|
|
4825
4825
|
}>;
|
|
4826
|
-
}, "id" | "createdAt" | "ref" | "status" | "
|
|
4826
|
+
}, "id" | "createdAt" | "ref" | "status" | "tenantId" | "projectId" | "agentId" | "triggerId" | "conversationId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
4827
4827
|
declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
4828
4828
|
triggerId: z.ZodOptional<z.ZodString>;
|
|
4829
4829
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -4845,8 +4845,8 @@ declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
4845
4845
|
hash: string;
|
|
4846
4846
|
}>>>>>;
|
|
4847
4847
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4848
|
-
requestPayload: z.ZodOptional<z.ZodType<
|
|
4849
|
-
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4848
|
+
requestPayload: z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4849
|
+
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4850
4850
|
errorMessage: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4851
4851
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4852
4852
|
agentId: z.ZodOptional<z.ZodString>;
|
|
@@ -4861,8 +4861,8 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4861
4861
|
triggerId: z.ZodString;
|
|
4862
4862
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
4863
4863
|
status: z.ZodString;
|
|
4864
|
-
requestPayload: z.ZodType<
|
|
4865
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
4864
|
+
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
4865
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4866
4866
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
4867
4867
|
createdAt: z.ZodString;
|
|
4868
4868
|
agentId: z.ZodString;
|
|
@@ -4901,8 +4901,8 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
4901
4901
|
status: z.ZodOptional<z.ZodString>;
|
|
4902
4902
|
triggerId: z.ZodString;
|
|
4903
4903
|
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4904
|
-
requestPayload: z.ZodType<
|
|
4905
|
-
transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4904
|
+
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
4905
|
+
transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4906
4906
|
errorMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4907
4907
|
id: z.ZodString;
|
|
4908
4908
|
}, z.core.$strip>;
|
|
@@ -4929,8 +4929,8 @@ declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
4929
4929
|
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4930
4930
|
triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4931
4931
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4932
|
-
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<
|
|
4933
|
-
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4932
|
+
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4933
|
+
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4934
4934
|
errorMessage: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4935
4935
|
}, z.core.$strip>;
|
|
4936
4936
|
declare const CronExpressionSchema: z.ZodString;
|
|
@@ -4963,16 +4963,16 @@ declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
|
4963
4963
|
name: z.ZodString;
|
|
4964
4964
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4965
4965
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4966
|
-
agentId: z.ZodString;
|
|
4967
|
-
projectId: z.ZodString;
|
|
4968
4966
|
tenantId: z.ZodString;
|
|
4967
|
+
projectId: z.ZodString;
|
|
4968
|
+
agentId: z.ZodString;
|
|
4969
4969
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4970
4970
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4971
4971
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4972
4972
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4973
4973
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4974
4974
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4975
|
-
payload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4975
|
+
payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4976
4976
|
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
4977
4977
|
retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
4978
4978
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4984,15 +4984,15 @@ declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
|
4984
4984
|
id: z.ZodOptional<z.ZodString>;
|
|
4985
4985
|
name: z.ZodOptional<z.ZodString>;
|
|
4986
4986
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4987
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
4988
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
4989
4987
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
4988
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
4989
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
4990
4990
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4991
4991
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4992
4992
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4993
4993
|
cronExpression: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4994
4994
|
runAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4995
|
-
payload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4995
|
+
payload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4996
4996
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
4997
4997
|
cronTimezone: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4998
4998
|
maxRetries: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -5033,7 +5033,7 @@ declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
5033
5033
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5034
5034
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5035
5035
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5036
|
-
payload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5036
|
+
payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
5037
5037
|
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
5038
5038
|
retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
5039
5039
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5049,7 +5049,7 @@ declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
|
5049
5049
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5050
5050
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5051
5051
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5052
|
-
payload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5052
|
+
payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
5053
5053
|
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
5054
5054
|
retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
5055
5055
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5066,7 +5066,7 @@ declare const ScheduledTriggerApiUpdateSchema: z.ZodObject<{
|
|
|
5066
5066
|
cronExpression: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5067
5067
|
cronTimezone: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5068
5068
|
runAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5069
|
-
payload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5069
|
+
payload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
5070
5070
|
maxRetries: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNumber>>>;
|
|
5071
5071
|
retryDelaySeconds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNumber>>>;
|
|
5072
5072
|
timeoutSeconds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNumber>>>;
|
|
@@ -5077,7 +5077,7 @@ type ScheduledTriggerUpdate = z.infer<typeof ScheduledTriggerUpdateSchema>;
|
|
|
5077
5077
|
type ScheduledTriggerApiInsert = z.infer<typeof ScheduledTriggerApiInsertSchema>;
|
|
5078
5078
|
type ScheduledTriggerApiSelect = z.infer<typeof ScheduledTriggerApiSelectSchema>;
|
|
5079
5079
|
type ScheduledTriggerApiUpdate = z.infer<typeof ScheduledTriggerApiUpdateSchema>;
|
|
5080
|
-
declare const ScheduledWorkflowSelectSchema:
|
|
5080
|
+
declare const ScheduledWorkflowSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
5081
5081
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
5082
5082
|
name: "created_at";
|
|
5083
5083
|
tableName: "scheduled_workflows";
|
|
@@ -5281,7 +5281,7 @@ declare const ScheduledWorkflowSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
5281
5281
|
}, {}, {
|
|
5282
5282
|
length: 256;
|
|
5283
5283
|
}>;
|
|
5284
|
-
},
|
|
5284
|
+
}, drizzle_zod19.BuildRefine<{
|
|
5285
5285
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
5286
5286
|
name: "created_at";
|
|
5287
5287
|
tableName: "scheduled_workflows";
|
|
@@ -5486,7 +5486,7 @@ declare const ScheduledWorkflowSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
5486
5486
|
length: 256;
|
|
5487
5487
|
}>;
|
|
5488
5488
|
}, undefined>, undefined>;
|
|
5489
|
-
declare const ScheduledWorkflowInsertSchema:
|
|
5489
|
+
declare const ScheduledWorkflowInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
5490
5490
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
5491
5491
|
name: "created_at";
|
|
5492
5492
|
tableName: "scheduled_workflows";
|
|
@@ -5690,7 +5690,7 @@ declare const ScheduledWorkflowInsertSchema: drizzle_zod15.BuildSchema<"insert",
|
|
|
5690
5690
|
}, {}, {
|
|
5691
5691
|
length: 256;
|
|
5692
5692
|
}>;
|
|
5693
|
-
},
|
|
5693
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
5694
5694
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
5695
5695
|
name: "created_at";
|
|
5696
5696
|
tableName: "scheduled_workflows";
|
|
@@ -5894,7 +5894,7 @@ declare const ScheduledWorkflowInsertSchema: drizzle_zod15.BuildSchema<"insert",
|
|
|
5894
5894
|
}, {}, {
|
|
5895
5895
|
length: 256;
|
|
5896
5896
|
}>;
|
|
5897
|
-
}, "id" | "name" | "createdAt" | "updatedAt" | "status" | "description" | "
|
|
5897
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "status" | "description" | "tenantId" | "projectId" | "agentId" | "workflowRunId" | "scheduledTriggerId">, undefined>, undefined>;
|
|
5898
5898
|
declare const ScheduledWorkflowUpdateSchema: z.ZodObject<{
|
|
5899
5899
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5900
5900
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5988,7 +5988,7 @@ declare const ScheduledTriggerInvocationSelectSchema: z.ZodObject<{
|
|
|
5988
5988
|
out: {};
|
|
5989
5989
|
in: {};
|
|
5990
5990
|
}>;
|
|
5991
|
-
declare const ScheduledTriggerInvocationInsertSchema:
|
|
5991
|
+
declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
5992
5992
|
scheduledTriggerId: drizzle_orm_pg_core220.PgColumn<{
|
|
5993
5993
|
name: "scheduled_trigger_id";
|
|
5994
5994
|
tableName: "scheduled_trigger_invocations";
|
|
@@ -6273,7 +6273,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<
|
|
|
6273
6273
|
}, {}, {
|
|
6274
6274
|
length: 256;
|
|
6275
6275
|
}>;
|
|
6276
|
-
},
|
|
6276
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
6277
6277
|
scheduledTriggerId: drizzle_orm_pg_core220.PgColumn<{
|
|
6278
6278
|
name: "scheduled_trigger_id";
|
|
6279
6279
|
tableName: "scheduled_trigger_invocations";
|
|
@@ -6558,7 +6558,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<
|
|
|
6558
6558
|
}, {}, {
|
|
6559
6559
|
length: 256;
|
|
6560
6560
|
}>;
|
|
6561
|
-
}, "id" | "createdAt" | "ref" | "status" | "
|
|
6561
|
+
}, "id" | "createdAt" | "ref" | "status" | "tenantId" | "projectId" | "agentId" | "scheduledTriggerId" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "conversationIds" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
|
|
6562
6562
|
declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
6563
6563
|
scheduledTriggerId: z.ZodOptional<z.ZodString>;
|
|
6564
6564
|
ref: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -6582,7 +6582,7 @@ declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
6582
6582
|
scheduledFor: z.ZodOptional<z.ZodString>;
|
|
6583
6583
|
startedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6584
6584
|
completedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6585
|
-
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
6585
|
+
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
6586
6586
|
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>;
|
|
6587
6587
|
attemptNumber: z.ZodOptional<z.ZodOptional<z.ZodInt>>;
|
|
6588
6588
|
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
@@ -6650,7 +6650,7 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
6650
6650
|
scheduledFor: z.ZodString;
|
|
6651
6651
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6652
6652
|
completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6653
|
-
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
6653
|
+
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
6654
6654
|
conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
6655
6655
|
attemptNumber: z.ZodOptional<z.ZodInt>;
|
|
6656
6656
|
idempotencyKey: z.ZodString;
|
|
@@ -6681,7 +6681,7 @@ declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
6681
6681
|
scheduledFor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6682
6682
|
startedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6683
6683
|
completedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6684
|
-
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
6684
|
+
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
6685
6685
|
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
|
|
6686
6686
|
attemptNumber: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodInt>>>;
|
|
6687
6687
|
idempotencyKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -6827,7 +6827,7 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
6827
6827
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6828
6828
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6829
6829
|
}, z.core.$strip>;
|
|
6830
|
-
declare const TaskRelationSelectSchema:
|
|
6830
|
+
declare const TaskRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
6831
6831
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
6832
6832
|
name: "created_at";
|
|
6833
6833
|
tableName: "task_relations";
|
|
@@ -6976,7 +6976,7 @@ declare const TaskRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
6976
6976
|
}, {}, {
|
|
6977
6977
|
length: 256;
|
|
6978
6978
|
}>;
|
|
6979
|
-
},
|
|
6979
|
+
}, drizzle_zod19.BuildRefine<{
|
|
6980
6980
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
6981
6981
|
name: "created_at";
|
|
6982
6982
|
tableName: "task_relations";
|
|
@@ -7202,7 +7202,7 @@ declare const McpToolDefinitionSchema: z.ZodObject<{
|
|
|
7202
7202
|
description: z.ZodOptional<z.ZodString>;
|
|
7203
7203
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7204
7204
|
}, z.core.$strip>;
|
|
7205
|
-
declare const ToolSelectSchema:
|
|
7205
|
+
declare const ToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
7206
7206
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
7207
7207
|
name: "created_at";
|
|
7208
7208
|
tableName: "tools";
|
|
@@ -7482,7 +7482,7 @@ declare const ToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
7482
7482
|
}, {}, {
|
|
7483
7483
|
length: 256;
|
|
7484
7484
|
}>;
|
|
7485
|
-
},
|
|
7485
|
+
}, drizzle_zod19.BuildRefine<{
|
|
7486
7486
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
7487
7487
|
name: "created_at";
|
|
7488
7488
|
tableName: "tools";
|
|
@@ -7768,8 +7768,8 @@ declare const ToolInsertSchema: z.ZodObject<{
|
|
|
7768
7768
|
name: z.ZodString;
|
|
7769
7769
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7770
7770
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7771
|
-
projectId: z.ZodString;
|
|
7772
7771
|
tenantId: z.ZodString;
|
|
7772
|
+
projectId: z.ZodString;
|
|
7773
7773
|
config: z.ZodObject<{
|
|
7774
7774
|
type: z.ZodLiteral<"mcp">;
|
|
7775
7775
|
mcp: z.ZodObject<{
|
|
@@ -7943,13 +7943,13 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
7943
7943
|
}, z.core.$strip>>>;
|
|
7944
7944
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7945
7945
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
7946
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7946
7947
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7947
7948
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7948
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7949
7949
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7950
7950
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7951
7951
|
}, z.core.$strip>;
|
|
7952
|
-
declare const MessageSelectSchema:
|
|
7952
|
+
declare const MessageSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
7953
7953
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
7954
7954
|
name: "created_at";
|
|
7955
7955
|
tableName: "messages";
|
|
@@ -8345,7 +8345,7 @@ declare const MessageSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
8345
8345
|
}, {}, {
|
|
8346
8346
|
length: 256;
|
|
8347
8347
|
}>;
|
|
8348
|
-
},
|
|
8348
|
+
}, drizzle_zod19.BuildRefine<{
|
|
8349
8349
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
8350
8350
|
name: "created_at";
|
|
8351
8351
|
tableName: "messages";
|
|
@@ -8847,18 +8847,18 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
8847
8847
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
8848
8848
|
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8849
8849
|
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8850
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8851
8850
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8852
8851
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8853
8852
|
fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8854
8853
|
toExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8854
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8855
|
+
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8856
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8855
8857
|
fromTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8856
8858
|
toTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8857
8859
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8858
8860
|
messageType: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8859
|
-
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8860
8861
|
parentMessageId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8861
|
-
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8862
8862
|
a2aSessionId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8863
8863
|
}, z.core.$strip>;
|
|
8864
8864
|
declare const ContextCacheSelectSchema: z.ZodObject<{
|
|
@@ -8867,7 +8867,7 @@ declare const ContextCacheSelectSchema: z.ZodObject<{
|
|
|
8867
8867
|
conversationId: z.ZodString;
|
|
8868
8868
|
contextConfigId: z.ZodString;
|
|
8869
8869
|
contextVariableKey: z.ZodString;
|
|
8870
|
-
value: z.ZodType<
|
|
8870
|
+
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
8871
8871
|
requestHash: z.ZodNullable<z.ZodString>;
|
|
8872
8872
|
fetchedAt: z.ZodString;
|
|
8873
8873
|
fetchSource: z.ZodNullable<z.ZodString>;
|
|
@@ -8893,7 +8893,7 @@ declare const ContextCacheInsertSchema: z.ZodObject<{
|
|
|
8893
8893
|
conversationId: z.ZodString;
|
|
8894
8894
|
contextConfigId: z.ZodString;
|
|
8895
8895
|
contextVariableKey: z.ZodString;
|
|
8896
|
-
value: z.ZodType<
|
|
8896
|
+
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
8897
8897
|
requestHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8898
8898
|
fetchedAt: z.ZodOptional<z.ZodString>;
|
|
8899
8899
|
fetchSource: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8919,7 +8919,7 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
8919
8919
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
8920
8920
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
8921
8921
|
contextVariableKey: z.ZodOptional<z.ZodString>;
|
|
8922
|
-
value: z.ZodOptional<z.ZodType<
|
|
8922
|
+
value: z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
8923
8923
|
requestHash: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
8924
8924
|
fetchedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8925
8925
|
fetchSource: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -8945,7 +8945,7 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8945
8945
|
conversationId: z.ZodString;
|
|
8946
8946
|
contextConfigId: z.ZodString;
|
|
8947
8947
|
contextVariableKey: z.ZodString;
|
|
8948
|
-
value: z.ZodType<
|
|
8948
|
+
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
8949
8949
|
requestHash: z.ZodNullable<z.ZodString>;
|
|
8950
8950
|
fetchedAt: z.ZodString;
|
|
8951
8951
|
fetchSource: z.ZodNullable<z.ZodString>;
|
|
@@ -8968,7 +8968,7 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8968
8968
|
conversationId: z.ZodString;
|
|
8969
8969
|
contextConfigId: z.ZodString;
|
|
8970
8970
|
contextVariableKey: z.ZodString;
|
|
8971
|
-
value: z.ZodType<
|
|
8971
|
+
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
8972
8972
|
requestHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8973
8973
|
fetchedAt: z.ZodOptional<z.ZodString>;
|
|
8974
8974
|
fetchSource: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8998,7 +8998,7 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
8998
8998
|
name: z.ZodString;
|
|
8999
8999
|
hash: z.ZodString;
|
|
9000
9000
|
}, z.core.$strip>>>;
|
|
9001
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<
|
|
9001
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
9002
9002
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9003
9003
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9004
9004
|
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -9155,7 +9155,7 @@ declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
|
9155
9155
|
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9156
9156
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9157
9157
|
}, z.core.$strip>;
|
|
9158
|
-
declare const DatasetRunConversationRelationSelectSchema:
|
|
9158
|
+
declare const DatasetRunConversationRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
9159
9159
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
9160
9160
|
name: "created_at";
|
|
9161
9161
|
tableName: "dataset_run_conversation_relations";
|
|
@@ -9298,7 +9298,7 @@ declare const DatasetRunConversationRelationSelectSchema: drizzle_zod15.BuildSch
|
|
|
9298
9298
|
}, {}, {
|
|
9299
9299
|
length: 256;
|
|
9300
9300
|
}>;
|
|
9301
|
-
},
|
|
9301
|
+
}, drizzle_zod19.BuildRefine<{
|
|
9302
9302
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
9303
9303
|
name: "created_at";
|
|
9304
9304
|
tableName: "dataset_run_conversation_relations";
|
|
@@ -9492,7 +9492,7 @@ declare const DatasetRunConversationRelationApiUpdateSchema: z.ZodObject<{
|
|
|
9492
9492
|
datasetRunId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9493
9493
|
datasetItemId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9494
9494
|
}, z.core.$strip>;
|
|
9495
|
-
declare const EvaluationResultSelectSchema:
|
|
9495
|
+
declare const EvaluationResultSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
9496
9496
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
9497
9497
|
name: "created_at";
|
|
9498
9498
|
tableName: "evaluation_result";
|
|
@@ -9654,7 +9654,7 @@ declare const EvaluationResultSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
9654
9654
|
}, {}, {
|
|
9655
9655
|
length: 256;
|
|
9656
9656
|
}>;
|
|
9657
|
-
},
|
|
9657
|
+
}, drizzle_zod19.BuildRefine<{
|
|
9658
9658
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
9659
9659
|
name: "created_at";
|
|
9660
9660
|
tableName: "evaluation_result";
|
|
@@ -9857,17 +9857,17 @@ declare const EvaluationResultApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
9857
9857
|
id: z.ZodString;
|
|
9858
9858
|
}>, z.core.$strip>;
|
|
9859
9859
|
declare const EvaluationResultApiInsertSchema: z.ZodObject<{
|
|
9860
|
-
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
9861
9860
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9862
9861
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9862
|
+
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
9863
9863
|
conversationId: z.ZodString;
|
|
9864
9864
|
evaluatorId: z.ZodString;
|
|
9865
9865
|
evaluationRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9866
9866
|
}, z.core.$strip>;
|
|
9867
9867
|
declare const EvaluationResultApiUpdateSchema: z.ZodObject<{
|
|
9868
|
-
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
9869
9868
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9870
9869
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9870
|
+
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
9871
9871
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9872
9872
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9873
9873
|
evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -10015,7 +10015,7 @@ declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
|
10015
10015
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10016
10016
|
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10017
10017
|
}, z.core.$strip>;
|
|
10018
|
-
declare const EvaluationRunConfigSelectSchema:
|
|
10018
|
+
declare const EvaluationRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
10019
10019
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
10020
10020
|
name: "created_at";
|
|
10021
10021
|
tableName: "evaluation_run_config";
|
|
@@ -10160,7 +10160,7 @@ declare const EvaluationRunConfigSelectSchema: drizzle_zod15.BuildSchema<"select
|
|
|
10160
10160
|
}, {}, {
|
|
10161
10161
|
length: 256;
|
|
10162
10162
|
}>;
|
|
10163
|
-
},
|
|
10163
|
+
}, drizzle_zod19.BuildRefine<{
|
|
10164
10164
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
10165
10165
|
name: "created_at";
|
|
10166
10166
|
tableName: "evaluation_run_config";
|
|
@@ -10367,7 +10367,7 @@ declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
|
10367
10367
|
isActive: z.ZodBoolean;
|
|
10368
10368
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
10369
10369
|
}, z.core.$strip>;
|
|
10370
|
-
declare const EvaluationJobConfigSelectSchema:
|
|
10370
|
+
declare const EvaluationJobConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
10371
10371
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
10372
10372
|
name: "created_at";
|
|
10373
10373
|
tableName: "evaluation_job_config";
|
|
@@ -10492,7 +10492,7 @@ declare const EvaluationJobConfigSelectSchema: drizzle_zod15.BuildSchema<"select
|
|
|
10492
10492
|
}, {}, {
|
|
10493
10493
|
length: 256;
|
|
10494
10494
|
}>;
|
|
10495
|
-
},
|
|
10495
|
+
}, drizzle_zod19.BuildRefine<{
|
|
10496
10496
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
10497
10497
|
name: "created_at";
|
|
10498
10498
|
tableName: "evaluation_job_config";
|
|
@@ -10799,7 +10799,7 @@ declare const EvaluationJobConfigApiUpdateSchema: z.ZodObject<{
|
|
|
10799
10799
|
} | undefined;
|
|
10800
10800
|
}>>>>>>>;
|
|
10801
10801
|
}, z.core.$strip>;
|
|
10802
|
-
declare const EvaluationSuiteConfigSelectSchema:
|
|
10802
|
+
declare const EvaluationSuiteConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
10803
10803
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
10804
10804
|
name: "created_at";
|
|
10805
10805
|
tableName: "evaluation_suite_config";
|
|
@@ -10927,7 +10927,7 @@ declare const EvaluationSuiteConfigSelectSchema: drizzle_zod15.BuildSchema<"sele
|
|
|
10927
10927
|
}, {}, {
|
|
10928
10928
|
length: 256;
|
|
10929
10929
|
}>;
|
|
10930
|
-
},
|
|
10930
|
+
}, drizzle_zod19.BuildRefine<{
|
|
10931
10931
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
10932
10932
|
name: "created_at";
|
|
10933
10933
|
tableName: "evaluation_suite_config";
|
|
@@ -11103,7 +11103,7 @@ declare const EvaluationSuiteConfigApiUpdateSchema: z.ZodObject<{
|
|
|
11103
11103
|
sampleRate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>>;
|
|
11104
11104
|
evaluatorIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11105
11105
|
}, z.core.$strip>;
|
|
11106
|
-
declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema:
|
|
11106
|
+
declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
11107
11107
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
11108
11108
|
name: "created_at";
|
|
11109
11109
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
@@ -11233,7 +11233,7 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: driz
|
|
|
11233
11233
|
}, {}, {
|
|
11234
11234
|
length: 256;
|
|
11235
11235
|
}>;
|
|
11236
|
-
},
|
|
11236
|
+
}, drizzle_zod19.BuildRefine<{
|
|
11237
11237
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
11238
11238
|
name: "created_at";
|
|
11239
11239
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
@@ -11409,7 +11409,7 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiUpdateSchema: z
|
|
|
11409
11409
|
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11410
11410
|
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11411
11411
|
}, z.core.$strip>;
|
|
11412
|
-
declare const EvaluationJobConfigEvaluatorRelationSelectSchema:
|
|
11412
|
+
declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
11413
11413
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
11414
11414
|
name: "created_at";
|
|
11415
11415
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
@@ -11539,7 +11539,7 @@ declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod15.Bu
|
|
|
11539
11539
|
}, {}, {
|
|
11540
11540
|
length: 256;
|
|
11541
11541
|
}>;
|
|
11542
|
-
},
|
|
11542
|
+
}, drizzle_zod19.BuildRefine<{
|
|
11543
11543
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
11544
11544
|
name: "created_at";
|
|
11545
11545
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
@@ -11715,7 +11715,7 @@ declare const EvaluationJobConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
|
|
|
11715
11715
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11716
11716
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11717
11717
|
}, z.core.$strip>;
|
|
11718
|
-
declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema:
|
|
11718
|
+
declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
11719
11719
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
11720
11720
|
name: "created_at";
|
|
11721
11721
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
@@ -11845,7 +11845,7 @@ declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod15.
|
|
|
11845
11845
|
}, {}, {
|
|
11846
11846
|
length: 256;
|
|
11847
11847
|
}>;
|
|
11848
|
-
},
|
|
11848
|
+
}, drizzle_zod19.BuildRefine<{
|
|
11849
11849
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
11850
11850
|
name: "created_at";
|
|
11851
11851
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
@@ -12021,7 +12021,7 @@ declare const EvaluationSuiteConfigEvaluatorRelationApiUpdateSchema: z.ZodObject
|
|
|
12021
12021
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12022
12022
|
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12023
12023
|
}, z.core.$strip>;
|
|
12024
|
-
declare const EvaluatorSelectSchema:
|
|
12024
|
+
declare const EvaluatorSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
12025
12025
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
12026
12026
|
name: "created_at";
|
|
12027
12027
|
tableName: "evaluator";
|
|
@@ -12229,7 +12229,7 @@ declare const EvaluatorSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
12229
12229
|
}, {}, {
|
|
12230
12230
|
length: 256;
|
|
12231
12231
|
}>;
|
|
12232
|
-
},
|
|
12232
|
+
}, drizzle_zod19.BuildRefine<{
|
|
12233
12233
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
12234
12234
|
name: "created_at";
|
|
12235
12235
|
tableName: "evaluator";
|
|
@@ -12563,7 +12563,7 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
12563
12563
|
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12564
12564
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
|
|
12565
12565
|
}, z.core.$strip>;
|
|
12566
|
-
declare const DatasetSelectSchema:
|
|
12566
|
+
declare const DatasetSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
12567
12567
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
12568
12568
|
name: "created_at";
|
|
12569
12569
|
tableName: "dataset";
|
|
@@ -12674,7 +12674,7 @@ declare const DatasetSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
12674
12674
|
}, {}, {
|
|
12675
12675
|
length: 256;
|
|
12676
12676
|
}>;
|
|
12677
|
-
},
|
|
12677
|
+
}, drizzle_zod19.BuildRefine<{
|
|
12678
12678
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
12679
12679
|
name: "created_at";
|
|
12680
12680
|
tableName: "dataset";
|
|
@@ -12826,7 +12826,7 @@ declare const DatasetApiUpdateSchema: z.ZodObject<{
|
|
|
12826
12826
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12827
12827
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12828
12828
|
}, z.core.$strip>;
|
|
12829
|
-
declare const DatasetItemSelectSchema:
|
|
12829
|
+
declare const DatasetItemSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
12830
12830
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
12831
12831
|
name: "created_at";
|
|
12832
12832
|
tableName: "dataset_item";
|
|
@@ -13014,7 +13014,7 @@ declare const DatasetItemSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
13014
13014
|
}, {}, {
|
|
13015
13015
|
length: 256;
|
|
13016
13016
|
}>;
|
|
13017
|
-
},
|
|
13017
|
+
}, drizzle_zod19.BuildRefine<{
|
|
13018
13018
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
13019
13019
|
name: "created_at";
|
|
13020
13020
|
tableName: "dataset_item";
|
|
@@ -13363,9 +13363,9 @@ declare const DatasetItemApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
13363
13363
|
id: z.ZodString;
|
|
13364
13364
|
}>, z.core.$strip>;
|
|
13365
13365
|
declare const DatasetItemApiInsertSchema: z.ZodObject<{
|
|
13366
|
-
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13367
13366
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13368
13367
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13368
|
+
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13369
13369
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13370
13370
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
13371
13371
|
prompt: string;
|
|
@@ -13410,9 +13410,9 @@ declare const DatasetItemApiInsertSchema: z.ZodObject<{
|
|
|
13410
13410
|
}>>>>;
|
|
13411
13411
|
}, z.core.$strip>;
|
|
13412
13412
|
declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
13413
|
-
input: z.ZodOptional<z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>>;
|
|
13414
13413
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13415
13414
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13415
|
+
input: z.ZodOptional<z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>>;
|
|
13416
13416
|
expectedOutput: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>>>;
|
|
13417
13417
|
simulationAgent: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
13418
13418
|
prompt: string;
|
|
@@ -13457,8 +13457,8 @@ declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
|
13457
13457
|
}>>>>>>;
|
|
13458
13458
|
}, z.core.$strip>;
|
|
13459
13459
|
declare const DatasetRunItemSchema: z.ZodObject<{
|
|
13460
|
-
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13461
13460
|
id: z.ZodOptional<z.ZodString>;
|
|
13461
|
+
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13462
13462
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13463
13463
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
13464
13464
|
prompt: string;
|
|
@@ -13506,8 +13506,8 @@ declare const DatasetRunItemSchema: z.ZodObject<{
|
|
|
13506
13506
|
declare const TriggerDatasetRunSchema: z.ZodObject<{
|
|
13507
13507
|
datasetRunId: z.ZodString;
|
|
13508
13508
|
items: z.ZodArray<z.ZodObject<{
|
|
13509
|
-
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13510
13509
|
id: z.ZodOptional<z.ZodString>;
|
|
13510
|
+
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13511
13511
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13512
13512
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
13513
13513
|
prompt: string;
|
|
@@ -13585,7 +13585,7 @@ declare const TriggerEvaluationJobSchema: z.ZodObject<{
|
|
|
13585
13585
|
}, z.core.$strip>>;
|
|
13586
13586
|
}, z.core.$strip>>>;
|
|
13587
13587
|
}, z.core.$strip>;
|
|
13588
|
-
declare const DatasetRunConfigSelectSchema:
|
|
13588
|
+
declare const DatasetRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
13589
13589
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
13590
13590
|
name: "created_at";
|
|
13591
13591
|
tableName: "dataset_run_config";
|
|
@@ -13732,7 +13732,7 @@ declare const DatasetRunConfigSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
13732
13732
|
}, {}, {
|
|
13733
13733
|
length: 256;
|
|
13734
13734
|
}>;
|
|
13735
|
-
},
|
|
13735
|
+
}, drizzle_zod19.BuildRefine<{
|
|
13736
13736
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
13737
13737
|
name: "created_at";
|
|
13738
13738
|
tableName: "dataset_run_config";
|
|
@@ -13930,7 +13930,7 @@ declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
|
13930
13930
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13931
13931
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13932
13932
|
}, z.core.$strip>;
|
|
13933
|
-
declare const DatasetRunConfigAgentRelationSelectSchema:
|
|
13933
|
+
declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
13934
13934
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
13935
13935
|
name: "created_at";
|
|
13936
13936
|
tableName: "dataset_run_config_agent_relations";
|
|
@@ -14060,7 +14060,7 @@ declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod15.BuildSche
|
|
|
14060
14060
|
}, {}, {
|
|
14061
14061
|
length: 256;
|
|
14062
14062
|
}>;
|
|
14063
|
-
},
|
|
14063
|
+
}, drizzle_zod19.BuildRefine<{
|
|
14064
14064
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
14065
14065
|
name: "created_at";
|
|
14066
14066
|
tableName: "dataset_run_config_agent_relations";
|
|
@@ -14238,9 +14238,9 @@ declare const SkillInsertSchema: z.ZodObject<{
|
|
|
14238
14238
|
name: z.ZodString;
|
|
14239
14239
|
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
14240
14240
|
description: z.ZodString;
|
|
14241
|
-
projectId: z.ZodString;
|
|
14242
|
-
tenantId: z.ZodString;
|
|
14243
14241
|
content: z.ZodString;
|
|
14242
|
+
tenantId: z.ZodString;
|
|
14243
|
+
projectId: z.ZodString;
|
|
14244
14244
|
}, {
|
|
14245
14245
|
out: {};
|
|
14246
14246
|
in: {};
|
|
@@ -14248,9 +14248,9 @@ declare const SkillInsertSchema: z.ZodObject<{
|
|
|
14248
14248
|
declare const SkillUpdateSchema: z.ZodObject<{
|
|
14249
14249
|
metadata: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
14250
14250
|
description: z.ZodOptional<z.ZodString>;
|
|
14251
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
14252
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
14253
14251
|
content: z.ZodOptional<z.ZodString>;
|
|
14252
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
14253
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
14254
14254
|
}, {
|
|
14255
14255
|
out: {};
|
|
14256
14256
|
in: {};
|
|
@@ -14270,16 +14270,16 @@ declare const SkillApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
14270
14270
|
name: z.ZodString;
|
|
14271
14271
|
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
14272
14272
|
description: z.ZodString;
|
|
14273
|
-
projectId: z.ZodString;
|
|
14274
|
-
tenantId: z.ZodString;
|
|
14275
14273
|
content: z.ZodString;
|
|
14274
|
+
tenantId: z.ZodString;
|
|
14275
|
+
projectId: z.ZodString;
|
|
14276
14276
|
}>, z.core.$strip>;
|
|
14277
14277
|
declare const SkillApiUpdateSchema: z.ZodObject<{
|
|
14278
14278
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>>;
|
|
14279
14279
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14280
14280
|
content: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14281
14281
|
}, z.core.$strip>;
|
|
14282
|
-
declare const DataComponentSelectSchema:
|
|
14282
|
+
declare const DataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
14283
14283
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
14284
14284
|
name: "created_at";
|
|
14285
14285
|
tableName: "data_components";
|
|
@@ -14465,7 +14465,7 @@ declare const DataComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
14465
14465
|
}, {}, {
|
|
14466
14466
|
length: 256;
|
|
14467
14467
|
}>;
|
|
14468
|
-
},
|
|
14468
|
+
}, drizzle_zod19.BuildRefine<{
|
|
14469
14469
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
14470
14470
|
name: "created_at";
|
|
14471
14471
|
tableName: "data_components";
|
|
@@ -14656,8 +14656,8 @@ declare const DataComponentInsertSchema: z.ZodObject<{
|
|
|
14656
14656
|
id: z.ZodString;
|
|
14657
14657
|
name: z.ZodString;
|
|
14658
14658
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14659
|
-
projectId: z.ZodString;
|
|
14660
14659
|
tenantId: z.ZodString;
|
|
14660
|
+
projectId: z.ZodString;
|
|
14661
14661
|
props: z.ZodType<{
|
|
14662
14662
|
[x: string]: unknown;
|
|
14663
14663
|
type: "object";
|
|
@@ -14708,8 +14708,8 @@ declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
|
14708
14708
|
id: z.ZodOptional<z.ZodString>;
|
|
14709
14709
|
name: z.ZodOptional<z.ZodString>;
|
|
14710
14710
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
14711
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
14712
14711
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
14712
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
14713
14713
|
props: z.ZodOptional<z.ZodType<{
|
|
14714
14714
|
[x: string]: unknown;
|
|
14715
14715
|
type: "object";
|
|
@@ -14857,7 +14857,7 @@ declare const DataComponentApiUpdateSchema: z.ZodObject<{
|
|
|
14857
14857
|
description: z.ZodOptional<z.ZodString>;
|
|
14858
14858
|
}, z.core.$loose>;
|
|
14859
14859
|
}, z.core.$strip>;
|
|
14860
|
-
declare const SubAgentDataComponentSelectSchema:
|
|
14860
|
+
declare const SubAgentDataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
14861
14861
|
dataComponentId: drizzle_orm_pg_core220.PgColumn<{
|
|
14862
14862
|
name: "data_component_id";
|
|
14863
14863
|
tableName: "sub_agent_data_components";
|
|
@@ -14989,7 +14989,7 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod15.BuildSchema<"sele
|
|
|
14989
14989
|
}, {}, {
|
|
14990
14990
|
length: 256;
|
|
14991
14991
|
}>;
|
|
14992
|
-
},
|
|
14992
|
+
}, drizzle_zod19.BuildRefine<{
|
|
14993
14993
|
dataComponentId: drizzle_orm_pg_core220.PgColumn<{
|
|
14994
14994
|
name: "data_component_id";
|
|
14995
14995
|
tableName: "sub_agent_data_components";
|
|
@@ -15122,7 +15122,7 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod15.BuildSchema<"sele
|
|
|
15122
15122
|
length: 256;
|
|
15123
15123
|
}>;
|
|
15124
15124
|
}, undefined>, undefined>;
|
|
15125
|
-
declare const SubAgentDataComponentInsertSchema:
|
|
15125
|
+
declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
15126
15126
|
dataComponentId: drizzle_orm_pg_core220.PgColumn<{
|
|
15127
15127
|
name: "data_component_id";
|
|
15128
15128
|
tableName: "sub_agent_data_components";
|
|
@@ -15254,7 +15254,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod15.BuildSchema<"inse
|
|
|
15254
15254
|
}, {}, {
|
|
15255
15255
|
length: 256;
|
|
15256
15256
|
}>;
|
|
15257
|
-
},
|
|
15257
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
15258
15258
|
dataComponentId: drizzle_orm_pg_core220.PgColumn<{
|
|
15259
15259
|
name: "data_component_id";
|
|
15260
15260
|
tableName: "sub_agent_data_components";
|
|
@@ -15386,7 +15386,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod15.BuildSchema<"inse
|
|
|
15386
15386
|
}, {}, {
|
|
15387
15387
|
length: 256;
|
|
15388
15388
|
}>;
|
|
15389
|
-
}, "id" | "createdAt" | "
|
|
15389
|
+
}, "id" | "createdAt" | "tenantId" | "projectId" | "agentId" | "subAgentId" | "dataComponentId">, undefined>, undefined>;
|
|
15390
15390
|
declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
15391
15391
|
dataComponentId: z.ZodOptional<z.ZodString>;
|
|
15392
15392
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -15422,7 +15422,7 @@ declare const SubAgentDataComponentApiUpdateSchema: z.ZodObject<{
|
|
|
15422
15422
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15423
15423
|
dataComponentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15424
15424
|
}, z.core.$strip>;
|
|
15425
|
-
declare const ArtifactComponentSelectSchema:
|
|
15425
|
+
declare const ArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
15426
15426
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
15427
15427
|
name: "created_at";
|
|
15428
15428
|
tableName: "artifact_components";
|
|
@@ -15608,7 +15608,7 @@ declare const ArtifactComponentSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
15608
15608
|
}, {}, {
|
|
15609
15609
|
length: 256;
|
|
15610
15610
|
}>;
|
|
15611
|
-
},
|
|
15611
|
+
}, drizzle_zod19.BuildRefine<{
|
|
15612
15612
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
15613
15613
|
name: "created_at";
|
|
15614
15614
|
tableName: "artifact_components";
|
|
@@ -16031,7 +16031,7 @@ declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
|
16031
16031
|
mockData: Record<string, unknown>;
|
|
16032
16032
|
}>>>>>>;
|
|
16033
16033
|
}, z.core.$strip>;
|
|
16034
|
-
declare const SubAgentArtifactComponentSelectSchema:
|
|
16034
|
+
declare const SubAgentArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
16035
16035
|
artifactComponentId: drizzle_orm_pg_core220.PgColumn<{
|
|
16036
16036
|
name: "artifact_component_id";
|
|
16037
16037
|
tableName: "sub_agent_artifact_components";
|
|
@@ -16163,7 +16163,7 @@ declare const SubAgentArtifactComponentSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
16163
16163
|
}, {}, {
|
|
16164
16164
|
length: 256;
|
|
16165
16165
|
}>;
|
|
16166
|
-
},
|
|
16166
|
+
}, drizzle_zod19.BuildRefine<{
|
|
16167
16167
|
artifactComponentId: drizzle_orm_pg_core220.PgColumn<{
|
|
16168
16168
|
name: "artifact_component_id";
|
|
16169
16169
|
tableName: "sub_agent_artifact_components";
|
|
@@ -16450,8 +16450,8 @@ declare const ExternalAgentInsertSchema: z.ZodObject<{
|
|
|
16450
16450
|
id: z.ZodString;
|
|
16451
16451
|
name: z.ZodString;
|
|
16452
16452
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16453
|
-
projectId: z.ZodString;
|
|
16454
16453
|
tenantId: z.ZodString;
|
|
16454
|
+
projectId: z.ZodString;
|
|
16455
16455
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16456
16456
|
baseUrl: z.ZodURL;
|
|
16457
16457
|
}, {
|
|
@@ -16462,8 +16462,8 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
|
16462
16462
|
id: z.ZodOptional<z.ZodString>;
|
|
16463
16463
|
name: z.ZodOptional<z.ZodString>;
|
|
16464
16464
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16465
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
16466
16465
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
16466
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
16467
16467
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16468
16468
|
baseUrl: z.ZodOptional<z.ZodURL>;
|
|
16469
16469
|
}, {
|
|
@@ -16485,8 +16485,8 @@ declare const ExternalAgentApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
16485
16485
|
id: z.ZodString;
|
|
16486
16486
|
name: z.ZodString;
|
|
16487
16487
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16488
|
-
projectId: z.ZodString;
|
|
16489
16488
|
tenantId: z.ZodString;
|
|
16489
|
+
projectId: z.ZodString;
|
|
16490
16490
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16491
16491
|
baseUrl: z.ZodURL;
|
|
16492
16492
|
}>, z.core.$strip>;
|
|
@@ -16578,7 +16578,7 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16578
16578
|
baseUrl: z.ZodString;
|
|
16579
16579
|
type: z.ZodLiteral<"external">;
|
|
16580
16580
|
}, z.core.$strip>], "type">;
|
|
16581
|
-
declare const ApiKeySelectSchema:
|
|
16581
|
+
declare const ApiKeySelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
16582
16582
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
16583
16583
|
name: "created_at";
|
|
16584
16584
|
tableName: "api_keys";
|
|
@@ -16799,7 +16799,7 @@ declare const ApiKeySelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
16799
16799
|
}, {}, {
|
|
16800
16800
|
length: 256;
|
|
16801
16801
|
}>;
|
|
16802
|
-
},
|
|
16802
|
+
}, drizzle_zod19.BuildRefine<{
|
|
16803
16803
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
16804
16804
|
name: "created_at";
|
|
16805
16805
|
tableName: "api_keys";
|
|
@@ -17297,7 +17297,7 @@ declare const AppConfigResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
17297
17297
|
type: z.ZodLiteral<"api">;
|
|
17298
17298
|
api: z.ZodDefault<z.ZodObject<{}, z.core.$strip>>;
|
|
17299
17299
|
}, z.core.$strip>], "type">;
|
|
17300
|
-
declare const AppSelectSchema:
|
|
17300
|
+
declare const AppSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
17301
17301
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
17302
17302
|
name: "created_at";
|
|
17303
17303
|
tableName: "apps";
|
|
@@ -17591,7 +17591,7 @@ declare const AppSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
17591
17591
|
identity: undefined;
|
|
17592
17592
|
generated: undefined;
|
|
17593
17593
|
}, {}, {}>;
|
|
17594
|
-
},
|
|
17594
|
+
}, drizzle_zod19.BuildRefine<{
|
|
17595
17595
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
17596
17596
|
name: "created_at";
|
|
17597
17597
|
tableName: "apps";
|
|
@@ -17940,8 +17940,8 @@ declare const AppUpdateSchema: z.ZodObject<{
|
|
|
17940
17940
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17941
17941
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17942
17942
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
17943
|
-
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17944
17943
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17944
|
+
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17945
17945
|
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17946
17946
|
config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
17947
17947
|
type: z.ZodLiteral<"web_client">;
|
|
@@ -17978,7 +17978,7 @@ declare const AppUpdateSchema: z.ZodObject<{
|
|
|
17978
17978
|
out: {};
|
|
17979
17979
|
in: {};
|
|
17980
17980
|
}>;
|
|
17981
|
-
declare const AppApiSelectSchema:
|
|
17981
|
+
declare const AppApiSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
17982
17982
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
17983
17983
|
name: "created_at";
|
|
17984
17984
|
tableName: "apps";
|
|
@@ -18272,7 +18272,7 @@ declare const AppApiSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
18272
18272
|
identity: undefined;
|
|
18273
18273
|
generated: undefined;
|
|
18274
18274
|
}, {}, {}>;
|
|
18275
|
-
},
|
|
18275
|
+
}, drizzle_zod19.BuildRefine<{
|
|
18276
18276
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
18277
18277
|
name: "created_at";
|
|
18278
18278
|
tableName: "apps";
|
|
@@ -18568,15 +18568,15 @@ declare const AppApiSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
18568
18568
|
}, {}, {}>;
|
|
18569
18569
|
}, undefined>, undefined>;
|
|
18570
18570
|
declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
18571
|
-
type: z.ZodString;
|
|
18572
18571
|
id: z.ZodString;
|
|
18573
18572
|
name: z.ZodString;
|
|
18574
18573
|
createdAt: z.ZodString;
|
|
18575
18574
|
updatedAt: z.ZodString;
|
|
18576
18575
|
description: z.ZodNullable<z.ZodString>;
|
|
18577
18576
|
enabled: z.ZodBoolean;
|
|
18578
|
-
|
|
18577
|
+
type: z.ZodString;
|
|
18579
18578
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
18579
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
18580
18580
|
prompt: z.ZodNullable<z.ZodString>;
|
|
18581
18581
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
18582
18582
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
@@ -18614,17 +18614,17 @@ declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
|
18614
18614
|
in: {};
|
|
18615
18615
|
}>;
|
|
18616
18616
|
declare const AppApiInsertSchema: z.ZodObject<{
|
|
18617
|
-
type: z.ZodEnum<{
|
|
18618
|
-
web_client: "web_client";
|
|
18619
|
-
api: "api";
|
|
18620
|
-
}>;
|
|
18621
18617
|
name: z.ZodString;
|
|
18622
18618
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18623
18619
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18624
18620
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18625
18621
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
18626
|
-
|
|
18622
|
+
type: z.ZodEnum<{
|
|
18623
|
+
web_client: "web_client";
|
|
18624
|
+
api: "api";
|
|
18625
|
+
}>;
|
|
18627
18626
|
tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18627
|
+
projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18628
18628
|
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18629
18629
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18630
18630
|
type: z.ZodLiteral<"web_client">;
|
|
@@ -18665,8 +18665,8 @@ declare const AppApiUpdateSchema: z.ZodObject<{
|
|
|
18665
18665
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18666
18666
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18667
18667
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18668
|
-
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18669
18668
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18669
|
+
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18670
18670
|
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18671
18671
|
config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18672
18672
|
type: z.ZodLiteral<"web_client">;
|
|
@@ -18706,15 +18706,15 @@ declare const AppApiUpdateSchema: z.ZodObject<{
|
|
|
18706
18706
|
declare const AppApiCreationResponseSchema: z.ZodObject<{
|
|
18707
18707
|
data: z.ZodObject<{
|
|
18708
18708
|
app: z.ZodObject<{
|
|
18709
|
-
type: z.ZodString;
|
|
18710
18709
|
id: z.ZodString;
|
|
18711
18710
|
name: z.ZodString;
|
|
18712
18711
|
createdAt: z.ZodString;
|
|
18713
18712
|
updatedAt: z.ZodString;
|
|
18714
18713
|
description: z.ZodNullable<z.ZodString>;
|
|
18715
18714
|
enabled: z.ZodBoolean;
|
|
18716
|
-
|
|
18715
|
+
type: z.ZodString;
|
|
18717
18716
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
18717
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
18718
18718
|
prompt: z.ZodNullable<z.ZodString>;
|
|
18719
18719
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
18720
18720
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
@@ -18753,7 +18753,7 @@ declare const AppApiCreationResponseSchema: z.ZodObject<{
|
|
|
18753
18753
|
}>;
|
|
18754
18754
|
}, z.core.$strip>;
|
|
18755
18755
|
}, z.core.$strip>;
|
|
18756
|
-
declare const CredentialReferenceSelectSchema:
|
|
18756
|
+
declare const CredentialReferenceSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
18757
18757
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
18758
18758
|
name: "created_at";
|
|
18759
18759
|
tableName: "credential_references";
|
|
@@ -18978,7 +18978,7 @@ declare const CredentialReferenceSelectSchema: drizzle_zod15.BuildSchema<"select
|
|
|
18978
18978
|
}, {}, {
|
|
18979
18979
|
length: 256;
|
|
18980
18980
|
}>;
|
|
18981
|
-
},
|
|
18981
|
+
}, drizzle_zod19.BuildRefine<{
|
|
18982
18982
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
18983
18983
|
name: "created_at";
|
|
18984
18984
|
tableName: "credential_references";
|
|
@@ -19205,31 +19205,31 @@ declare const CredentialReferenceSelectSchema: drizzle_zod15.BuildSchema<"select
|
|
|
19205
19205
|
}>;
|
|
19206
19206
|
}, undefined>, undefined>;
|
|
19207
19207
|
declare const CredentialReferenceInsertSchema: z.ZodObject<{
|
|
19208
|
-
type: z.ZodString;
|
|
19209
19208
|
id: z.ZodString;
|
|
19210
19209
|
name: z.ZodString;
|
|
19211
19210
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19212
|
-
|
|
19211
|
+
type: z.ZodString;
|
|
19213
19212
|
tenantId: z.ZodString;
|
|
19214
|
-
|
|
19213
|
+
projectId: z.ZodString;
|
|
19215
19214
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19216
19215
|
credentialStoreId: z.ZodString;
|
|
19217
19216
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19217
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19218
19218
|
}, {
|
|
19219
19219
|
out: {};
|
|
19220
19220
|
in: {};
|
|
19221
19221
|
}>;
|
|
19222
19222
|
declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
19223
|
-
type: z.ZodOptional<z.ZodString>;
|
|
19224
19223
|
id: z.ZodOptional<z.ZodString>;
|
|
19225
19224
|
name: z.ZodOptional<z.ZodString>;
|
|
19226
19225
|
userId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19227
|
-
|
|
19226
|
+
type: z.ZodOptional<z.ZodString>;
|
|
19228
19227
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19229
|
-
|
|
19228
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
19230
19229
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19231
19230
|
credentialStoreId: z.ZodOptional<z.ZodString>;
|
|
19232
19231
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
19232
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19233
19233
|
}, {
|
|
19234
19234
|
out: {};
|
|
19235
19235
|
in: {};
|
|
@@ -19240,17 +19240,17 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
19240
19240
|
createdAt: z.ZodString;
|
|
19241
19241
|
updatedAt: z.ZodString;
|
|
19242
19242
|
userId: z.ZodNullable<z.ZodString>;
|
|
19243
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
19244
19243
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
19245
19244
|
credentialStoreId: z.ZodString;
|
|
19246
19245
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
19246
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
19247
19247
|
type: z.ZodEnum<{
|
|
19248
19248
|
readonly memory: "memory";
|
|
19249
19249
|
readonly keychain: "keychain";
|
|
19250
19250
|
readonly nango: "nango";
|
|
19251
19251
|
readonly composio: "composio";
|
|
19252
19252
|
}>;
|
|
19253
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
19253
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
19254
19254
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
19255
19255
|
name: "created_at";
|
|
19256
19256
|
tableName: "tools";
|
|
@@ -19530,7 +19530,7 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
19530
19530
|
}, {}, {
|
|
19531
19531
|
length: 256;
|
|
19532
19532
|
}>;
|
|
19533
|
-
},
|
|
19533
|
+
}, drizzle_zod19.BuildRefine<{
|
|
19534
19534
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
19535
19535
|
name: "created_at";
|
|
19536
19536
|
tableName: "tools";
|
|
@@ -19830,10 +19830,10 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
19830
19830
|
id: z.ZodString;
|
|
19831
19831
|
name: z.ZodString;
|
|
19832
19832
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19833
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19834
19833
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19835
19834
|
credentialStoreId: z.ZodString;
|
|
19836
19835
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19836
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19837
19837
|
type: z.ZodEnum<{
|
|
19838
19838
|
readonly memory: "memory";
|
|
19839
19839
|
readonly keychain: "keychain";
|
|
@@ -19845,10 +19845,10 @@ declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
|
19845
19845
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19846
19846
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19847
19847
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19848
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19849
19848
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19850
19849
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19851
19850
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
19851
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19852
19852
|
type: z.ZodOptional<z.ZodEnum<{
|
|
19853
19853
|
readonly memory: "memory";
|
|
19854
19854
|
readonly keychain: "keychain";
|
|
@@ -19917,8 +19917,8 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
19917
19917
|
name: z.ZodString;
|
|
19918
19918
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19919
19919
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
19920
|
-
projectId: z.ZodString;
|
|
19921
19920
|
tenantId: z.ZodString;
|
|
19921
|
+
projectId: z.ZodString;
|
|
19922
19922
|
config: z.ZodObject<{
|
|
19923
19923
|
type: z.ZodLiteral<"mcp">;
|
|
19924
19924
|
mcp: z.ZodObject<{
|
|
@@ -20011,10 +20011,10 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
20011
20011
|
id: z.ZodString;
|
|
20012
20012
|
name: z.ZodString;
|
|
20013
20013
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20014
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20015
20014
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20016
20015
|
credentialStoreId: z.ZodString;
|
|
20017
20016
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20017
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20018
20018
|
type: z.ZodEnum<{
|
|
20019
20019
|
readonly memory: "memory";
|
|
20020
20020
|
readonly keychain: "keychain";
|
|
@@ -20038,8 +20038,8 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
20038
20038
|
name: z.ZodOptional<z.ZodString>;
|
|
20039
20039
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20040
20040
|
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
20041
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
20042
20041
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
20042
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
20043
20043
|
config: z.ZodOptional<z.ZodObject<{
|
|
20044
20044
|
type: z.ZodLiteral<"mcp">;
|
|
20045
20045
|
mcp: z.ZodObject<{
|
|
@@ -20110,8 +20110,8 @@ declare const ToolApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
20110
20110
|
name: z.ZodString;
|
|
20111
20111
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20112
20112
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
20113
|
-
projectId: z.ZodString;
|
|
20114
20113
|
tenantId: z.ZodString;
|
|
20114
|
+
projectId: z.ZodString;
|
|
20115
20115
|
config: z.ZodObject<{
|
|
20116
20116
|
type: z.ZodLiteral<"mcp">;
|
|
20117
20117
|
mcp: z.ZodObject<{
|
|
@@ -20183,7 +20183,7 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
20183
20183
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20184
20184
|
isWorkApp: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
20185
20185
|
}, z.core.$strip>;
|
|
20186
|
-
declare const FunctionToolSelectSchema:
|
|
20186
|
+
declare const FunctionToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
20187
20187
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
20188
20188
|
name: "created_at";
|
|
20189
20189
|
tableName: "function_tools";
|
|
@@ -20349,7 +20349,7 @@ declare const FunctionToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
20349
20349
|
}, {}, {
|
|
20350
20350
|
length: 256;
|
|
20351
20351
|
}>;
|
|
20352
|
-
},
|
|
20352
|
+
}, drizzle_zod19.BuildRefine<{
|
|
20353
20353
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
20354
20354
|
name: "created_at";
|
|
20355
20355
|
tableName: "function_tools";
|
|
@@ -20520,9 +20520,9 @@ declare const FunctionToolInsertSchema: z.ZodObject<{
|
|
|
20520
20520
|
id: z.ZodString;
|
|
20521
20521
|
name: z.ZodString;
|
|
20522
20522
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20523
|
-
agentId: z.ZodString;
|
|
20524
|
-
projectId: z.ZodString;
|
|
20525
20523
|
tenantId: z.ZodString;
|
|
20524
|
+
projectId: z.ZodString;
|
|
20525
|
+
agentId: z.ZodString;
|
|
20526
20526
|
functionId: z.ZodString;
|
|
20527
20527
|
}, {
|
|
20528
20528
|
out: {};
|
|
@@ -20532,9 +20532,9 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
20532
20532
|
id: z.ZodOptional<z.ZodString>;
|
|
20533
20533
|
name: z.ZodOptional<z.ZodString>;
|
|
20534
20534
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20535
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
20536
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
20537
20535
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
20536
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
20537
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
20538
20538
|
functionId: z.ZodOptional<z.ZodString>;
|
|
20539
20539
|
}, {
|
|
20540
20540
|
out: {};
|
|
@@ -20554,9 +20554,9 @@ declare const FunctionToolApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
|
20554
20554
|
id: z.ZodString;
|
|
20555
20555
|
name: z.ZodString;
|
|
20556
20556
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20557
|
-
agentId: z.ZodString;
|
|
20558
|
-
projectId: z.ZodString;
|
|
20559
20557
|
tenantId: z.ZodString;
|
|
20558
|
+
projectId: z.ZodString;
|
|
20559
|
+
agentId: z.ZodString;
|
|
20560
20560
|
functionId: z.ZodString;
|
|
20561
20561
|
}>, z.core.$strip>;
|
|
20562
20562
|
declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
@@ -20566,7 +20566,7 @@ declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
|
20566
20566
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20567
20567
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20568
20568
|
}, z.core.$strip>;
|
|
20569
|
-
declare const SubAgentFunctionToolRelationSelectSchema:
|
|
20569
|
+
declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
20570
20570
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
20571
20571
|
name: "created_at";
|
|
20572
20572
|
tableName: "sub_agent_function_tool_relations";
|
|
@@ -20738,7 +20738,7 @@ declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod15.BuildSchem
|
|
|
20738
20738
|
}, {}, {
|
|
20739
20739
|
length: 256;
|
|
20740
20740
|
}>;
|
|
20741
|
-
},
|
|
20741
|
+
}, drizzle_zod19.BuildRefine<{
|
|
20742
20742
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
20743
20743
|
name: "created_at";
|
|
20744
20744
|
tableName: "sub_agent_function_tool_relations";
|
|
@@ -20914,7 +20914,7 @@ declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod15.BuildSchem
|
|
|
20914
20914
|
declare const SubAgentFunctionToolRelationInsertSchema: z.ZodObject<{
|
|
20915
20915
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
20916
20916
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
20917
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
20917
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
20918
20918
|
agentId: z.ZodString;
|
|
20919
20919
|
projectId: z.ZodString;
|
|
20920
20920
|
tenantId: z.ZodString;
|
|
@@ -20929,7 +20929,7 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<OmitAgent
|
|
|
20929
20929
|
createdAt: z.ZodString;
|
|
20930
20930
|
updatedAt: z.ZodString;
|
|
20931
20931
|
functionToolId: z.ZodString;
|
|
20932
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
20932
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
20933
20933
|
subAgentId: z.ZodString;
|
|
20934
20934
|
agentId: z.ZodString;
|
|
20935
20935
|
projectId: z.ZodString;
|
|
@@ -20939,12 +20939,12 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<OmitAgent
|
|
|
20939
20939
|
declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
|
|
20940
20940
|
subAgentId: z.ZodString;
|
|
20941
20941
|
functionToolId: z.ZodString;
|
|
20942
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
20942
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
20943
20943
|
}, {
|
|
20944
20944
|
out: {};
|
|
20945
20945
|
in: {};
|
|
20946
20946
|
}>;
|
|
20947
|
-
declare const FunctionSelectSchema:
|
|
20947
|
+
declare const FunctionSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
20948
20948
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
20949
20949
|
name: "created_at";
|
|
20950
20950
|
tableName: "functions";
|
|
@@ -21091,7 +21091,7 @@ declare const FunctionSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
21091
21091
|
}, {}, {
|
|
21092
21092
|
length: 256;
|
|
21093
21093
|
}>;
|
|
21094
|
-
},
|
|
21094
|
+
}, drizzle_zod19.BuildRefine<{
|
|
21095
21095
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
21096
21096
|
name: "created_at";
|
|
21097
21097
|
tableName: "functions";
|
|
@@ -21332,10 +21332,10 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
21332
21332
|
id: z.ZodString;
|
|
21333
21333
|
name: z.ZodString;
|
|
21334
21334
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21335
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21336
21335
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21337
21336
|
credentialStoreId: z.ZodString;
|
|
21338
21337
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
21338
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21339
21339
|
type: z.ZodEnum<{
|
|
21340
21340
|
readonly memory: "memory";
|
|
21341
21341
|
readonly keychain: "keychain";
|
|
@@ -21359,22 +21359,22 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
21359
21359
|
}>;
|
|
21360
21360
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
21361
21361
|
id: z.ZodOptional<z.ZodString>;
|
|
21362
|
+
tenantId: z.ZodString;
|
|
21363
|
+
projectId: z.ZodString;
|
|
21362
21364
|
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
21363
21365
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
21364
21366
|
agentId: z.ZodString;
|
|
21365
|
-
projectId: z.ZodString;
|
|
21366
|
-
tenantId: z.ZodString;
|
|
21367
21367
|
}, {
|
|
21368
21368
|
out: {};
|
|
21369
21369
|
in: {};
|
|
21370
21370
|
}>;
|
|
21371
21371
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
21372
21372
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21373
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
21374
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
21373
21375
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
21374
21376
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
21375
21377
|
agentId: z.ZodOptional<z.ZodString>;
|
|
21376
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
21377
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
21378
21378
|
}, {
|
|
21379
21379
|
out: {};
|
|
21380
21380
|
in: {};
|
|
@@ -21396,7 +21396,7 @@ declare const ContextConfigApiUpdateSchema: z.ZodObject<{
|
|
|
21396
21396
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
21397
21397
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
21398
21398
|
}, z.core.$strip>;
|
|
21399
|
-
declare const SubAgentToolRelationSelectSchema:
|
|
21399
|
+
declare const SubAgentToolRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
21400
21400
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
21401
21401
|
name: "created_at";
|
|
21402
21402
|
tableName: "sub_agent_tool_relations";
|
|
@@ -21606,7 +21606,7 @@ declare const SubAgentToolRelationSelectSchema: drizzle_zod15.BuildSchema<"selec
|
|
|
21606
21606
|
}, {}, {
|
|
21607
21607
|
length: 256;
|
|
21608
21608
|
}>;
|
|
21609
|
-
},
|
|
21609
|
+
}, drizzle_zod19.BuildRefine<{
|
|
21610
21610
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
21611
21611
|
name: "created_at";
|
|
21612
21612
|
tableName: "sub_agent_tool_relations";
|
|
@@ -21857,9 +21857,9 @@ declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
21857
21857
|
createdAt: z.ZodString;
|
|
21858
21858
|
updatedAt: z.ZodString;
|
|
21859
21859
|
toolId: z.ZodString;
|
|
21860
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
21861
|
-
headers: z.ZodNullable<z.ZodType<
|
|
21862
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
21860
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
21861
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
21862
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
21863
21863
|
subAgentId: z.ZodString;
|
|
21864
21864
|
agentId: z.ZodString;
|
|
21865
21865
|
projectId: z.ZodString;
|
|
@@ -21893,7 +21893,7 @@ declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
|
21893
21893
|
}, z.core.$strip>>>>>>;
|
|
21894
21894
|
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
21895
21895
|
}, z.core.$strip>;
|
|
21896
|
-
declare const SubAgentExternalAgentRelationSelectSchema:
|
|
21896
|
+
declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
21897
21897
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
21898
21898
|
name: "created_at";
|
|
21899
21899
|
tableName: "sub_agent_external_agent_relations";
|
|
@@ -22061,7 +22061,7 @@ declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod15.BuildSche
|
|
|
22061
22061
|
}, {}, {
|
|
22062
22062
|
length: 256;
|
|
22063
22063
|
}>;
|
|
22064
|
-
},
|
|
22064
|
+
}, drizzle_zod19.BuildRefine<{
|
|
22065
22065
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
22066
22066
|
name: "created_at";
|
|
22067
22067
|
tableName: "sub_agent_external_agent_relations";
|
|
@@ -22262,7 +22262,7 @@ declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<OmitAgen
|
|
|
22262
22262
|
createdAt: z.ZodString;
|
|
22263
22263
|
updatedAt: z.ZodString;
|
|
22264
22264
|
externalAgentId: z.ZodString;
|
|
22265
|
-
headers: z.ZodNullable<z.ZodType<
|
|
22265
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
22266
22266
|
subAgentId: z.ZodString;
|
|
22267
22267
|
agentId: z.ZodString;
|
|
22268
22268
|
projectId: z.ZodString;
|
|
@@ -22283,7 +22283,7 @@ declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
22283
22283
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22284
22284
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22285
22285
|
}, z.core.$strip>;
|
|
22286
|
-
declare const SubAgentTeamAgentRelationSelectSchema:
|
|
22286
|
+
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
22287
22287
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
22288
22288
|
name: "created_at";
|
|
22289
22289
|
tableName: "sub_agent_team_agent_relations";
|
|
@@ -22451,7 +22451,7 @@ declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
22451
22451
|
}, {}, {
|
|
22452
22452
|
length: 256;
|
|
22453
22453
|
}>;
|
|
22454
|
-
},
|
|
22454
|
+
}, drizzle_zod19.BuildRefine<{
|
|
22455
22455
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
22456
22456
|
name: "created_at";
|
|
22457
22457
|
tableName: "sub_agent_team_agent_relations";
|
|
@@ -22652,7 +22652,7 @@ declare const SubAgentTeamAgentRelationApiSelectSchema: z.ZodObject<OmitAgentSco
|
|
|
22652
22652
|
createdAt: z.ZodString;
|
|
22653
22653
|
updatedAt: z.ZodString;
|
|
22654
22654
|
targetAgentId: z.ZodString;
|
|
22655
|
-
headers: z.ZodNullable<z.ZodType<
|
|
22655
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
22656
22656
|
subAgentId: z.ZodString;
|
|
22657
22657
|
agentId: z.ZodString;
|
|
22658
22658
|
projectId: z.ZodString;
|
|
@@ -22673,7 +22673,7 @@ declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
22673
22673
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22674
22674
|
targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22675
22675
|
}, z.core.$strip>;
|
|
22676
|
-
declare const LedgerArtifactSelectSchema:
|
|
22676
|
+
declare const LedgerArtifactSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
22677
22677
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
22678
22678
|
name: "created_at";
|
|
22679
22679
|
tableName: "ledger_artifacts";
|
|
@@ -23008,7 +23008,7 @@ declare const LedgerArtifactSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
23008
23008
|
}, {}, {
|
|
23009
23009
|
length: 256;
|
|
23010
23010
|
}>;
|
|
23011
|
-
},
|
|
23011
|
+
}, drizzle_zod19.BuildRefine<{
|
|
23012
23012
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
23013
23013
|
name: "created_at";
|
|
23014
23014
|
tableName: "ledger_artifacts";
|
|
@@ -23344,7 +23344,7 @@ declare const LedgerArtifactSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
23344
23344
|
length: 256;
|
|
23345
23345
|
}>;
|
|
23346
23346
|
}, undefined>, undefined>;
|
|
23347
|
-
declare const LedgerArtifactInsertSchema:
|
|
23347
|
+
declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
23348
23348
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
23349
23349
|
name: "created_at";
|
|
23350
23350
|
tableName: "ledger_artifacts";
|
|
@@ -23679,7 +23679,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
23679
23679
|
}, {}, {
|
|
23680
23680
|
length: 256;
|
|
23681
23681
|
}>;
|
|
23682
|
-
},
|
|
23682
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
23683
23683
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
23684
23684
|
name: "created_at";
|
|
23685
23685
|
tableName: "ledger_artifacts";
|
|
@@ -24014,7 +24014,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
24014
24014
|
}, {}, {
|
|
24015
24015
|
length: 256;
|
|
24016
24016
|
}>;
|
|
24017
|
-
}, "
|
|
24017
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "metadata" | "description" | "type" | "tenantId" | "projectId" | "taskId" | "contextId" | "visibility" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
24018
24018
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
24019
24019
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24020
24020
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -24024,12 +24024,12 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
24024
24024
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24025
24025
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24026
24026
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24027
|
-
parts: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24028
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24027
|
+
parts: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
24028
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
24029
24029
|
summary: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24030
|
-
mime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24030
|
+
mime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
24031
24031
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24032
|
-
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24032
|
+
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
24033
24033
|
derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24034
24034
|
projectId: z.ZodOptional<z.ZodString>;
|
|
24035
24035
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
@@ -24047,12 +24047,12 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
24047
24047
|
type: z.ZodString;
|
|
24048
24048
|
name: z.ZodNullable<z.ZodString>;
|
|
24049
24049
|
description: z.ZodNullable<z.ZodString>;
|
|
24050
|
-
parts: z.ZodNullable<z.ZodType<
|
|
24051
|
-
metadata: z.ZodNullable<z.ZodType<
|
|
24050
|
+
parts: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
24051
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
24052
24052
|
summary: z.ZodNullable<z.ZodString>;
|
|
24053
|
-
mime: z.ZodNullable<z.ZodType<
|
|
24053
|
+
mime: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
24054
24054
|
visibility: z.ZodNullable<z.ZodString>;
|
|
24055
|
-
allowedAgents: z.ZodNullable<z.ZodType<
|
|
24055
|
+
allowedAgents: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
24056
24056
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
24057
24057
|
projectId: z.ZodString;
|
|
24058
24058
|
tenantId: z.ZodString;
|
|
@@ -24067,33 +24067,33 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
24067
24067
|
type: z.ZodOptional<z.ZodString>;
|
|
24068
24068
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24069
24069
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24070
|
-
parts: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24071
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24070
|
+
parts: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24071
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24072
24072
|
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24073
|
-
mime: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24073
|
+
mime: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24074
24074
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24075
|
-
allowedAgents: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24075
|
+
allowedAgents: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24076
24076
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24077
24077
|
projectId: z.ZodString;
|
|
24078
24078
|
tenantId: z.ZodString;
|
|
24079
24079
|
id: z.ZodString;
|
|
24080
24080
|
}>, z.core.$strip>;
|
|
24081
24081
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
24082
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24083
24082
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24084
24083
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24085
24084
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24086
24085
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24087
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24086
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
24088
24087
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24088
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24089
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24089
24090
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24090
24091
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24091
|
-
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24092
24092
|
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24093
|
-
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24093
|
+
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
24094
24094
|
summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24095
|
-
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24096
|
-
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24095
|
+
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
24096
|
+
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
24097
24097
|
derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24098
24098
|
}, z.core.$strip>;
|
|
24099
24099
|
declare const StatusComponentSchema: z.ZodObject<{
|
|
@@ -24313,9 +24313,9 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24313
24313
|
id: z.ZodString;
|
|
24314
24314
|
name: z.ZodString;
|
|
24315
24315
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24316
|
-
agentId: z.ZodString;
|
|
24317
|
-
projectId: z.ZodString;
|
|
24318
24316
|
tenantId: z.ZodString;
|
|
24317
|
+
projectId: z.ZodString;
|
|
24318
|
+
agentId: z.ZodString;
|
|
24319
24319
|
functionId: z.ZodString;
|
|
24320
24320
|
}>, z.core.$strip>>>;
|
|
24321
24321
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -24328,8 +24328,8 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24328
24328
|
id: z.ZodString;
|
|
24329
24329
|
name: z.ZodString;
|
|
24330
24330
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24331
|
-
projectId: z.ZodString;
|
|
24332
24331
|
tenantId: z.ZodString;
|
|
24332
|
+
projectId: z.ZodString;
|
|
24333
24333
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24334
24334
|
baseUrl: z.ZodURL;
|
|
24335
24335
|
}>, z.core.$strip>>>;
|
|
@@ -24343,8 +24343,8 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24343
24343
|
name: z.ZodString;
|
|
24344
24344
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24345
24345
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24346
|
-
projectId: z.ZodString;
|
|
24347
24346
|
tenantId: z.ZodString;
|
|
24347
|
+
projectId: z.ZodString;
|
|
24348
24348
|
config: z.ZodObject<{
|
|
24349
24349
|
type: z.ZodLiteral<"mcp">;
|
|
24350
24350
|
mcp: z.ZodObject<{
|
|
@@ -24383,12 +24383,12 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24383
24383
|
name: z.ZodString;
|
|
24384
24384
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24385
24385
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24386
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24387
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24386
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24387
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24388
24388
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24389
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24389
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24390
24390
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24391
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24391
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24392
24392
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24393
24393
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24394
24394
|
}, z.core.$strip>>>;
|
|
@@ -24402,7 +24402,7 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24402
24402
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24403
24403
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24404
24404
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24405
|
-
payload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24405
|
+
payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24406
24406
|
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
24407
24407
|
retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
24408
24408
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -24511,9 +24511,9 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24511
24511
|
id: z.ZodString;
|
|
24512
24512
|
name: z.ZodString;
|
|
24513
24513
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24514
|
-
agentId: z.ZodString;
|
|
24515
|
-
projectId: z.ZodString;
|
|
24516
24514
|
tenantId: z.ZodString;
|
|
24515
|
+
projectId: z.ZodString;
|
|
24516
|
+
agentId: z.ZodString;
|
|
24517
24517
|
functionId: z.ZodString;
|
|
24518
24518
|
}>, z.core.$strip>>>;
|
|
24519
24519
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -24526,8 +24526,8 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24526
24526
|
id: z.ZodString;
|
|
24527
24527
|
name: z.ZodString;
|
|
24528
24528
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24529
|
-
projectId: z.ZodString;
|
|
24530
24529
|
tenantId: z.ZodString;
|
|
24530
|
+
projectId: z.ZodString;
|
|
24531
24531
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24532
24532
|
baseUrl: z.ZodURL;
|
|
24533
24533
|
}>, z.core.$strip>>>;
|
|
@@ -24541,8 +24541,8 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24541
24541
|
name: z.ZodString;
|
|
24542
24542
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24543
24543
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24544
|
-
projectId: z.ZodString;
|
|
24545
24544
|
tenantId: z.ZodString;
|
|
24545
|
+
projectId: z.ZodString;
|
|
24546
24546
|
config: z.ZodObject<{
|
|
24547
24547
|
type: z.ZodLiteral<"mcp">;
|
|
24548
24548
|
mcp: z.ZodObject<{
|
|
@@ -24581,12 +24581,12 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24581
24581
|
name: z.ZodString;
|
|
24582
24582
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24583
24583
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24584
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24585
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24584
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24585
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24586
24586
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24587
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24587
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24588
24588
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24589
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24589
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24590
24590
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24591
24591
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24592
24592
|
}, z.core.$strip>>>;
|
|
@@ -24600,7 +24600,7 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24600
24600
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24601
24601
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24602
24602
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24603
|
-
payload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24603
|
+
payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24604
24604
|
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
24605
24605
|
retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
24606
24606
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -24921,9 +24921,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24921
24921
|
id: z.ZodString;
|
|
24922
24922
|
name: z.ZodString;
|
|
24923
24923
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24924
|
-
agentId: z.ZodString;
|
|
24925
|
-
projectId: z.ZodString;
|
|
24926
24924
|
tenantId: z.ZodString;
|
|
24925
|
+
projectId: z.ZodString;
|
|
24926
|
+
agentId: z.ZodString;
|
|
24927
24927
|
functionId: z.ZodString;
|
|
24928
24928
|
}>, z.core.$strip>>>;
|
|
24929
24929
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -24936,8 +24936,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24936
24936
|
id: z.ZodString;
|
|
24937
24937
|
name: z.ZodString;
|
|
24938
24938
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24939
|
-
projectId: z.ZodString;
|
|
24940
24939
|
tenantId: z.ZodString;
|
|
24940
|
+
projectId: z.ZodString;
|
|
24941
24941
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24942
24942
|
baseUrl: z.ZodURL;
|
|
24943
24943
|
}>, z.core.$strip>>>;
|
|
@@ -24951,8 +24951,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24951
24951
|
name: z.ZodString;
|
|
24952
24952
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24953
24953
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24954
|
-
projectId: z.ZodString;
|
|
24955
24954
|
tenantId: z.ZodString;
|
|
24955
|
+
projectId: z.ZodString;
|
|
24956
24956
|
config: z.ZodObject<{
|
|
24957
24957
|
type: z.ZodLiteral<"mcp">;
|
|
24958
24958
|
mcp: z.ZodObject<{
|
|
@@ -24991,12 +24991,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24991
24991
|
name: z.ZodString;
|
|
24992
24992
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24993
24993
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24994
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24995
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24994
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24995
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24996
24996
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24997
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24997
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24998
24998
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24999
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24999
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25000
25000
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25001
25001
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25002
25002
|
}, z.core.$strip>>>;
|
|
@@ -25010,7 +25010,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25010
25010
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25011
25011
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25012
25012
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25013
|
-
payload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25013
|
+
payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25014
25014
|
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
25015
25015
|
retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
25016
25016
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -25022,8 +25022,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25022
25022
|
name: z.ZodString;
|
|
25023
25023
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25024
25024
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25025
|
-
projectId: z.ZodString;
|
|
25026
25025
|
tenantId: z.ZodString;
|
|
25026
|
+
projectId: z.ZodString;
|
|
25027
25027
|
config: z.ZodObject<{
|
|
25028
25028
|
type: z.ZodLiteral<"mcp">;
|
|
25029
25029
|
mcp: z.ZodObject<{
|
|
@@ -25061,9 +25061,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25061
25061
|
id: z.ZodString;
|
|
25062
25062
|
name: z.ZodString;
|
|
25063
25063
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25064
|
-
agentId: z.ZodString;
|
|
25065
|
-
projectId: z.ZodString;
|
|
25066
25064
|
tenantId: z.ZodString;
|
|
25065
|
+
projectId: z.ZodString;
|
|
25066
|
+
agentId: z.ZodString;
|
|
25067
25067
|
functionId: z.ZodString;
|
|
25068
25068
|
}>, z.core.$strip>>>;
|
|
25069
25069
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -25076,9 +25076,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25076
25076
|
name: z.ZodString;
|
|
25077
25077
|
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
25078
25078
|
description: z.ZodString;
|
|
25079
|
-
projectId: z.ZodString;
|
|
25080
|
-
tenantId: z.ZodString;
|
|
25081
25079
|
content: z.ZodString;
|
|
25080
|
+
tenantId: z.ZodString;
|
|
25081
|
+
projectId: z.ZodString;
|
|
25082
25082
|
}>, z.core.$strip>>>;
|
|
25083
25083
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25084
25084
|
id: z.ZodString;
|
|
@@ -25137,8 +25137,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25137
25137
|
id: z.ZodString;
|
|
25138
25138
|
name: z.ZodString;
|
|
25139
25139
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25140
|
-
projectId: z.ZodString;
|
|
25141
25140
|
tenantId: z.ZodString;
|
|
25141
|
+
projectId: z.ZodString;
|
|
25142
25142
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25143
25143
|
baseUrl: z.ZodURL;
|
|
25144
25144
|
}>, z.core.$strip>>>;
|
|
@@ -25161,10 +25161,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25161
25161
|
id: z.ZodString;
|
|
25162
25162
|
name: z.ZodString;
|
|
25163
25163
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25164
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25165
25164
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25166
25165
|
credentialStoreId: z.ZodString;
|
|
25167
25166
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
25167
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25168
25168
|
type: z.ZodEnum<{
|
|
25169
25169
|
readonly memory: "memory";
|
|
25170
25170
|
readonly keychain: "keychain";
|
|
@@ -26270,17 +26270,17 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26270
26270
|
createdAt: z.ZodString;
|
|
26271
26271
|
updatedAt: z.ZodString;
|
|
26272
26272
|
userId: z.ZodNullable<z.ZodString>;
|
|
26273
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
26274
26273
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
26275
26274
|
credentialStoreId: z.ZodString;
|
|
26276
26275
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26276
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
26277
26277
|
type: z.ZodEnum<{
|
|
26278
26278
|
readonly memory: "memory";
|
|
26279
26279
|
readonly keychain: "keychain";
|
|
26280
26280
|
readonly nango: "nango";
|
|
26281
26281
|
readonly composio: "composio";
|
|
26282
26282
|
}>;
|
|
26283
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
26283
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
26284
26284
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
26285
26285
|
name: "created_at";
|
|
26286
26286
|
tableName: "tools";
|
|
@@ -26560,7 +26560,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26560
26560
|
}, {}, {
|
|
26561
26561
|
length: 256;
|
|
26562
26562
|
}>;
|
|
26563
|
-
},
|
|
26563
|
+
}, drizzle_zod19.BuildRefine<{
|
|
26564
26564
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
26565
26565
|
name: "created_at";
|
|
26566
26566
|
tableName: "tools";
|
|
@@ -27067,17 +27067,17 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27067
27067
|
createdAt: z.ZodString;
|
|
27068
27068
|
updatedAt: z.ZodString;
|
|
27069
27069
|
userId: z.ZodNullable<z.ZodString>;
|
|
27070
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
27071
27070
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
27072
27071
|
credentialStoreId: z.ZodString;
|
|
27073
27072
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27073
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
27074
27074
|
type: z.ZodEnum<{
|
|
27075
27075
|
readonly memory: "memory";
|
|
27076
27076
|
readonly keychain: "keychain";
|
|
27077
27077
|
readonly nango: "nango";
|
|
27078
27078
|
readonly composio: "composio";
|
|
27079
27079
|
}>;
|
|
27080
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
27080
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
27081
27081
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
27082
27082
|
name: "created_at";
|
|
27083
27083
|
tableName: "tools";
|
|
@@ -27357,7 +27357,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27357
27357
|
}, {}, {
|
|
27358
27358
|
length: 256;
|
|
27359
27359
|
}>;
|
|
27360
|
-
},
|
|
27360
|
+
}, drizzle_zod19.BuildRefine<{
|
|
27361
27361
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
27362
27362
|
name: "created_at";
|
|
27363
27363
|
tableName: "tools";
|
|
@@ -28177,17 +28177,17 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
28177
28177
|
createdAt: z.ZodString;
|
|
28178
28178
|
updatedAt: z.ZodString;
|
|
28179
28179
|
userId: z.ZodNullable<z.ZodString>;
|
|
28180
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
28181
28180
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
28182
28181
|
credentialStoreId: z.ZodString;
|
|
28183
28182
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28183
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
28184
28184
|
type: z.ZodEnum<{
|
|
28185
28185
|
readonly memory: "memory";
|
|
28186
28186
|
readonly keychain: "keychain";
|
|
28187
28187
|
readonly nango: "nango";
|
|
28188
28188
|
readonly composio: "composio";
|
|
28189
28189
|
}>;
|
|
28190
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
28190
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
28191
28191
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
28192
28192
|
name: "created_at";
|
|
28193
28193
|
tableName: "tools";
|
|
@@ -28467,7 +28467,7 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
28467
28467
|
}, {}, {
|
|
28468
28468
|
length: 256;
|
|
28469
28469
|
}>;
|
|
28470
|
-
},
|
|
28470
|
+
}, drizzle_zod19.BuildRefine<{
|
|
28471
28471
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
28472
28472
|
name: "created_at";
|
|
28473
28473
|
tableName: "tools";
|
|
@@ -28793,7 +28793,7 @@ declare const SubAgentFunctionToolRelationResponse: z.ZodObject<{
|
|
|
28793
28793
|
createdAt: z.ZodString;
|
|
28794
28794
|
updatedAt: z.ZodString;
|
|
28795
28795
|
functionToolId: z.ZodString;
|
|
28796
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
28796
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28797
28797
|
subAgentId: z.ZodString;
|
|
28798
28798
|
agentId: z.ZodString;
|
|
28799
28799
|
projectId: z.ZodString;
|
|
@@ -28925,9 +28925,9 @@ declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
|
28925
28925
|
createdAt: z.ZodString;
|
|
28926
28926
|
updatedAt: z.ZodString;
|
|
28927
28927
|
toolId: z.ZodString;
|
|
28928
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
28929
|
-
headers: z.ZodNullable<z.ZodType<
|
|
28930
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
28928
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28929
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28930
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28931
28931
|
subAgentId: z.ZodString;
|
|
28932
28932
|
agentId: z.ZodString;
|
|
28933
28933
|
projectId: z.ZodString;
|
|
@@ -28940,10 +28940,10 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
28940
28940
|
createdAt: z.ZodString;
|
|
28941
28941
|
updatedAt: z.ZodString;
|
|
28942
28942
|
enabled: z.ZodBoolean;
|
|
28943
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
28944
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
28943
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28944
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28945
28945
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
28946
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
28946
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28947
28947
|
name: z.ZodString;
|
|
28948
28948
|
description: z.ZodNullable<z.ZodString>;
|
|
28949
28949
|
agentId: z.ZodString;
|
|
@@ -29005,8 +29005,8 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
29005
29005
|
triggerId: z.ZodString;
|
|
29006
29006
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
29007
29007
|
status: z.ZodString;
|
|
29008
|
-
requestPayload: z.ZodType<
|
|
29009
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
29008
|
+
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
29009
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29010
29010
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
29011
29011
|
createdAt: z.ZodString;
|
|
29012
29012
|
agentId: z.ZodString;
|
|
@@ -29340,15 +29340,15 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
29340
29340
|
}, z.core.$strip>;
|
|
29341
29341
|
declare const AppResponse: z.ZodObject<{
|
|
29342
29342
|
data: z.ZodObject<{
|
|
29343
|
-
type: z.ZodString;
|
|
29344
29343
|
id: z.ZodString;
|
|
29345
29344
|
name: z.ZodString;
|
|
29346
29345
|
createdAt: z.ZodString;
|
|
29347
29346
|
updatedAt: z.ZodString;
|
|
29348
29347
|
description: z.ZodNullable<z.ZodString>;
|
|
29349
29348
|
enabled: z.ZodBoolean;
|
|
29350
|
-
|
|
29349
|
+
type: z.ZodString;
|
|
29351
29350
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
29351
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
29352
29352
|
prompt: z.ZodNullable<z.ZodString>;
|
|
29353
29353
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
29354
29354
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
@@ -29388,15 +29388,15 @@ declare const AppResponse: z.ZodObject<{
|
|
|
29388
29388
|
}, z.core.$strip>;
|
|
29389
29389
|
declare const AppListResponse: z.ZodObject<{
|
|
29390
29390
|
data: z.ZodArray<z.ZodObject<{
|
|
29391
|
-
type: z.ZodString;
|
|
29392
29391
|
id: z.ZodString;
|
|
29393
29392
|
name: z.ZodString;
|
|
29394
29393
|
createdAt: z.ZodString;
|
|
29395
29394
|
updatedAt: z.ZodString;
|
|
29396
29395
|
description: z.ZodNullable<z.ZodString>;
|
|
29397
29396
|
enabled: z.ZodBoolean;
|
|
29398
|
-
|
|
29397
|
+
type: z.ZodString;
|
|
29399
29398
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
29399
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
29400
29400
|
prompt: z.ZodNullable<z.ZodString>;
|
|
29401
29401
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
29402
29402
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
@@ -29447,17 +29447,17 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
29447
29447
|
createdAt: z.ZodString;
|
|
29448
29448
|
updatedAt: z.ZodString;
|
|
29449
29449
|
userId: z.ZodNullable<z.ZodString>;
|
|
29450
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
29451
29450
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
29452
29451
|
credentialStoreId: z.ZodString;
|
|
29453
29452
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29453
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
29454
29454
|
type: z.ZodEnum<{
|
|
29455
29455
|
readonly memory: "memory";
|
|
29456
29456
|
readonly keychain: "keychain";
|
|
29457
29457
|
readonly nango: "nango";
|
|
29458
29458
|
readonly composio: "composio";
|
|
29459
29459
|
}>;
|
|
29460
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
29460
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
29461
29461
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
29462
29462
|
name: "created_at";
|
|
29463
29463
|
tableName: "tools";
|
|
@@ -29737,7 +29737,7 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
29737
29737
|
}, {}, {
|
|
29738
29738
|
length: 256;
|
|
29739
29739
|
}>;
|
|
29740
|
-
},
|
|
29740
|
+
}, drizzle_zod19.BuildRefine<{
|
|
29741
29741
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
29742
29742
|
name: "created_at";
|
|
29743
29743
|
tableName: "tools";
|
|
@@ -30081,7 +30081,7 @@ declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
|
|
|
30081
30081
|
createdAt: z.ZodString;
|
|
30082
30082
|
updatedAt: z.ZodString;
|
|
30083
30083
|
functionToolId: z.ZodString;
|
|
30084
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
30084
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30085
30085
|
subAgentId: z.ZodString;
|
|
30086
30086
|
agentId: z.ZodString;
|
|
30087
30087
|
projectId: z.ZodString;
|
|
@@ -30269,9 +30269,9 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
|
30269
30269
|
createdAt: z.ZodString;
|
|
30270
30270
|
updatedAt: z.ZodString;
|
|
30271
30271
|
toolId: z.ZodString;
|
|
30272
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
30273
|
-
headers: z.ZodNullable<z.ZodType<
|
|
30274
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
30272
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30273
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30274
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30275
30275
|
subAgentId: z.ZodString;
|
|
30276
30276
|
agentId: z.ZodString;
|
|
30277
30277
|
projectId: z.ZodString;
|
|
@@ -30290,10 +30290,10 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
30290
30290
|
createdAt: z.ZodString;
|
|
30291
30291
|
updatedAt: z.ZodString;
|
|
30292
30292
|
enabled: z.ZodBoolean;
|
|
30293
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
30294
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
30293
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30294
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30295
30295
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30296
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
30296
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30297
30297
|
name: z.ZodString;
|
|
30298
30298
|
description: z.ZodNullable<z.ZodString>;
|
|
30299
30299
|
agentId: z.ZodString;
|
|
@@ -30361,8 +30361,8 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
30361
30361
|
triggerId: z.ZodString;
|
|
30362
30362
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
30363
30363
|
status: z.ZodString;
|
|
30364
|
-
requestPayload: z.ZodType<
|
|
30365
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
30364
|
+
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
30365
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30366
30366
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
30367
30367
|
createdAt: z.ZodString;
|
|
30368
30368
|
agentId: z.ZodString;
|
|
@@ -30394,10 +30394,10 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
30394
30394
|
updatedAt: z.ZodString;
|
|
30395
30395
|
description: z.ZodNullable<z.ZodString>;
|
|
30396
30396
|
enabled: z.ZodBoolean;
|
|
30397
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
30398
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
30397
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30398
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30399
30399
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30400
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
30400
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30401
30401
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30402
30402
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30403
30403
|
algorithm: z.ZodEnum<{
|
|
@@ -30457,10 +30457,10 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
30457
30457
|
updatedAt: z.ZodString;
|
|
30458
30458
|
description: z.ZodNullable<z.ZodString>;
|
|
30459
30459
|
enabled: z.ZodBoolean;
|
|
30460
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
30461
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
30460
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30461
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30462
30462
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30463
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
30463
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30464
30464
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30465
30465
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30466
30466
|
algorithm: z.ZodEnum<{
|
|
@@ -30521,10 +30521,10 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30521
30521
|
updatedAt: z.ZodString;
|
|
30522
30522
|
description: z.ZodNullable<z.ZodString>;
|
|
30523
30523
|
enabled: z.ZodBoolean;
|
|
30524
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
30525
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
30524
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30525
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30526
30526
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30527
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
30527
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30528
30528
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30529
30529
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30530
30530
|
algorithm: z.ZodEnum<{
|
|
@@ -30977,9 +30977,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30977
30977
|
id: z.ZodString;
|
|
30978
30978
|
name: z.ZodString;
|
|
30979
30979
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30980
|
-
agentId: z.ZodString;
|
|
30981
|
-
projectId: z.ZodString;
|
|
30982
30980
|
tenantId: z.ZodString;
|
|
30981
|
+
projectId: z.ZodString;
|
|
30982
|
+
agentId: z.ZodString;
|
|
30983
30983
|
functionId: z.ZodString;
|
|
30984
30984
|
}>, z.core.$strip>>>;
|
|
30985
30985
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -30992,8 +30992,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30992
30992
|
id: z.ZodString;
|
|
30993
30993
|
name: z.ZodString;
|
|
30994
30994
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30995
|
-
projectId: z.ZodString;
|
|
30996
30995
|
tenantId: z.ZodString;
|
|
30996
|
+
projectId: z.ZodString;
|
|
30997
30997
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30998
30998
|
baseUrl: z.ZodURL;
|
|
30999
30999
|
}>, z.core.$strip>>>;
|
|
@@ -31007,8 +31007,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31007
31007
|
name: z.ZodString;
|
|
31008
31008
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31009
31009
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
31010
|
-
projectId: z.ZodString;
|
|
31011
31010
|
tenantId: z.ZodString;
|
|
31011
|
+
projectId: z.ZodString;
|
|
31012
31012
|
config: z.ZodObject<{
|
|
31013
31013
|
type: z.ZodLiteral<"mcp">;
|
|
31014
31014
|
mcp: z.ZodObject<{
|
|
@@ -31047,12 +31047,12 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31047
31047
|
name: z.ZodString;
|
|
31048
31048
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31049
31049
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
31050
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
31051
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
31050
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
31051
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
31052
31052
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31053
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
31053
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
31054
31054
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31055
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
31055
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
31056
31056
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31057
31057
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31058
31058
|
}, z.core.$strip>>>;
|
|
@@ -31066,7 +31066,7 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31066
31066
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31067
31067
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31068
31068
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31069
|
-
payload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
31069
|
+
payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
31070
31070
|
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
31071
31071
|
retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
31072
31072
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -31078,8 +31078,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31078
31078
|
name: z.ZodString;
|
|
31079
31079
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31080
31080
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
31081
|
-
projectId: z.ZodString;
|
|
31082
31081
|
tenantId: z.ZodString;
|
|
31082
|
+
projectId: z.ZodString;
|
|
31083
31083
|
config: z.ZodObject<{
|
|
31084
31084
|
type: z.ZodLiteral<"mcp">;
|
|
31085
31085
|
mcp: z.ZodObject<{
|
|
@@ -31117,9 +31117,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31117
31117
|
id: z.ZodString;
|
|
31118
31118
|
name: z.ZodString;
|
|
31119
31119
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31120
|
-
agentId: z.ZodString;
|
|
31121
|
-
projectId: z.ZodString;
|
|
31122
31120
|
tenantId: z.ZodString;
|
|
31121
|
+
projectId: z.ZodString;
|
|
31122
|
+
agentId: z.ZodString;
|
|
31123
31123
|
functionId: z.ZodString;
|
|
31124
31124
|
}>, z.core.$strip>>>;
|
|
31125
31125
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -31132,9 +31132,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31132
31132
|
name: z.ZodString;
|
|
31133
31133
|
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
31134
31134
|
description: z.ZodString;
|
|
31135
|
-
projectId: z.ZodString;
|
|
31136
|
-
tenantId: z.ZodString;
|
|
31137
31135
|
content: z.ZodString;
|
|
31136
|
+
tenantId: z.ZodString;
|
|
31137
|
+
projectId: z.ZodString;
|
|
31138
31138
|
}>, z.core.$strip>>>;
|
|
31139
31139
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31140
31140
|
id: z.ZodString;
|
|
@@ -31193,8 +31193,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31193
31193
|
id: z.ZodString;
|
|
31194
31194
|
name: z.ZodString;
|
|
31195
31195
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31196
|
-
projectId: z.ZodString;
|
|
31197
31196
|
tenantId: z.ZodString;
|
|
31197
|
+
projectId: z.ZodString;
|
|
31198
31198
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31199
31199
|
baseUrl: z.ZodURL;
|
|
31200
31200
|
}>, z.core.$strip>>>;
|
|
@@ -31217,10 +31217,10 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31217
31217
|
id: z.ZodString;
|
|
31218
31218
|
name: z.ZodString;
|
|
31219
31219
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31220
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31221
31220
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31222
31221
|
credentialStoreId: z.ZodString;
|
|
31223
31222
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31223
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31224
31224
|
type: z.ZodEnum<{
|
|
31225
31225
|
readonly memory: "memory";
|
|
31226
31226
|
readonly keychain: "keychain";
|
|
@@ -31672,17 +31672,17 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31672
31672
|
createdAt: z.ZodString;
|
|
31673
31673
|
updatedAt: z.ZodString;
|
|
31674
31674
|
userId: z.ZodNullable<z.ZodString>;
|
|
31675
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
31676
31675
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
31677
31676
|
credentialStoreId: z.ZodString;
|
|
31678
31677
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
31678
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
31679
31679
|
type: z.ZodEnum<{
|
|
31680
31680
|
readonly memory: "memory";
|
|
31681
31681
|
readonly keychain: "keychain";
|
|
31682
31682
|
readonly nango: "nango";
|
|
31683
31683
|
readonly composio: "composio";
|
|
31684
31684
|
}>;
|
|
31685
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
31685
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
31686
31686
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
31687
31687
|
name: "created_at";
|
|
31688
31688
|
tableName: "tools";
|
|
@@ -31962,7 +31962,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31962
31962
|
}, {}, {
|
|
31963
31963
|
length: 256;
|
|
31964
31964
|
}>;
|
|
31965
|
-
},
|
|
31965
|
+
}, drizzle_zod19.BuildRefine<{
|
|
31966
31966
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
31967
31967
|
name: "created_at";
|
|
31968
31968
|
tableName: "tools";
|
|
@@ -32471,17 +32471,17 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32471
32471
|
createdAt: z.ZodString;
|
|
32472
32472
|
updatedAt: z.ZodString;
|
|
32473
32473
|
userId: z.ZodNullable<z.ZodString>;
|
|
32474
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
32475
32474
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
32476
32475
|
credentialStoreId: z.ZodString;
|
|
32477
32476
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
32477
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
32478
32478
|
type: z.ZodEnum<{
|
|
32479
32479
|
readonly memory: "memory";
|
|
32480
32480
|
readonly keychain: "keychain";
|
|
32481
32481
|
readonly nango: "nango";
|
|
32482
32482
|
readonly composio: "composio";
|
|
32483
32483
|
}>;
|
|
32484
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
32484
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
32485
32485
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
32486
32486
|
name: "created_at";
|
|
32487
32487
|
tableName: "tools";
|
|
@@ -32761,7 +32761,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32761
32761
|
}, {}, {
|
|
32762
32762
|
length: 256;
|
|
32763
32763
|
}>;
|
|
32764
|
-
},
|
|
32764
|
+
}, drizzle_zod19.BuildRefine<{
|
|
32765
32765
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
32766
32766
|
name: "created_at";
|
|
32767
32767
|
tableName: "tools";
|
|
@@ -33400,9 +33400,9 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33400
33400
|
id: z.ZodString;
|
|
33401
33401
|
name: z.ZodString;
|
|
33402
33402
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33403
|
-
agentId: z.ZodString;
|
|
33404
|
-
projectId: z.ZodString;
|
|
33405
33403
|
tenantId: z.ZodString;
|
|
33404
|
+
projectId: z.ZodString;
|
|
33405
|
+
agentId: z.ZodString;
|
|
33406
33406
|
functionId: z.ZodString;
|
|
33407
33407
|
}>, z.core.$strip>>>;
|
|
33408
33408
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -33415,8 +33415,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33415
33415
|
id: z.ZodString;
|
|
33416
33416
|
name: z.ZodString;
|
|
33417
33417
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33418
|
-
projectId: z.ZodString;
|
|
33419
33418
|
tenantId: z.ZodString;
|
|
33419
|
+
projectId: z.ZodString;
|
|
33420
33420
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33421
33421
|
baseUrl: z.ZodURL;
|
|
33422
33422
|
}>, z.core.$strip>>>;
|
|
@@ -33430,8 +33430,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33430
33430
|
name: z.ZodString;
|
|
33431
33431
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33432
33432
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33433
|
-
projectId: z.ZodString;
|
|
33434
33433
|
tenantId: z.ZodString;
|
|
33434
|
+
projectId: z.ZodString;
|
|
33435
33435
|
config: z.ZodObject<{
|
|
33436
33436
|
type: z.ZodLiteral<"mcp">;
|
|
33437
33437
|
mcp: z.ZodObject<{
|
|
@@ -33470,12 +33470,12 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33470
33470
|
name: z.ZodString;
|
|
33471
33471
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33472
33472
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
33473
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
33474
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
33473
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33474
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33475
33475
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33476
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
33476
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33477
33477
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33478
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
33478
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33479
33479
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33480
33480
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33481
33481
|
}, z.core.$strip>>>;
|
|
@@ -33489,7 +33489,7 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33489
33489
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33490
33490
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33491
33491
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33492
|
-
payload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
33492
|
+
payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33493
33493
|
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
33494
33494
|
retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
33495
33495
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -33753,8 +33753,8 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
33753
33753
|
name: z.ZodString;
|
|
33754
33754
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33755
33755
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33756
|
-
projectId: z.ZodString;
|
|
33757
33756
|
tenantId: z.ZodString;
|
|
33757
|
+
projectId: z.ZodString;
|
|
33758
33758
|
config: z.ZodObject<{
|
|
33759
33759
|
type: z.ZodLiteral<"mcp">;
|
|
33760
33760
|
mcp: z.ZodObject<{
|
|
@@ -33814,8 +33814,8 @@ declare const McpToolListResponse: z.ZodObject<{
|
|
|
33814
33814
|
name: z.ZodString;
|
|
33815
33815
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33816
33816
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33817
|
-
projectId: z.ZodString;
|
|
33818
33817
|
tenantId: z.ZodString;
|
|
33818
|
+
projectId: z.ZodString;
|
|
33819
33819
|
config: z.ZodObject<{
|
|
33820
33820
|
type: z.ZodLiteral<"mcp">;
|
|
33821
33821
|
mcp: z.ZodObject<{
|
|
@@ -33880,7 +33880,7 @@ declare const SubAgentTeamAgentRelationResponse: z.ZodObject<{
|
|
|
33880
33880
|
createdAt: z.ZodString;
|
|
33881
33881
|
updatedAt: z.ZodString;
|
|
33882
33882
|
targetAgentId: z.ZodString;
|
|
33883
|
-
headers: z.ZodNullable<z.ZodType<
|
|
33883
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
33884
33884
|
subAgentId: z.ZodString;
|
|
33885
33885
|
agentId: z.ZodString;
|
|
33886
33886
|
projectId: z.ZodString;
|
|
@@ -33893,7 +33893,7 @@ declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
|
|
|
33893
33893
|
createdAt: z.ZodString;
|
|
33894
33894
|
updatedAt: z.ZodString;
|
|
33895
33895
|
targetAgentId: z.ZodString;
|
|
33896
|
-
headers: z.ZodNullable<z.ZodType<
|
|
33896
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
33897
33897
|
subAgentId: z.ZodString;
|
|
33898
33898
|
agentId: z.ZodString;
|
|
33899
33899
|
projectId: z.ZodString;
|
|
@@ -33912,7 +33912,7 @@ declare const SubAgentExternalAgentRelationResponse: z.ZodObject<{
|
|
|
33912
33912
|
createdAt: z.ZodString;
|
|
33913
33913
|
updatedAt: z.ZodString;
|
|
33914
33914
|
externalAgentId: z.ZodString;
|
|
33915
|
-
headers: z.ZodNullable<z.ZodType<
|
|
33915
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
33916
33916
|
subAgentId: z.ZodString;
|
|
33917
33917
|
agentId: z.ZodString;
|
|
33918
33918
|
projectId: z.ZodString;
|
|
@@ -33925,7 +33925,7 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
|
33925
33925
|
createdAt: z.ZodString;
|
|
33926
33926
|
updatedAt: z.ZodString;
|
|
33927
33927
|
externalAgentId: z.ZodString;
|
|
33928
|
-
headers: z.ZodNullable<z.ZodType<
|
|
33928
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
33929
33929
|
subAgentId: z.ZodString;
|
|
33930
33930
|
agentId: z.ZodString;
|
|
33931
33931
|
projectId: z.ZodString;
|
|
@@ -34166,7 +34166,7 @@ declare const PaginationWithRefQueryParamsSchema: z.ZodObject<{
|
|
|
34166
34166
|
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
34167
34167
|
ref: z.ZodOptional<z.ZodString>;
|
|
34168
34168
|
}, z.core.$strip>;
|
|
34169
|
-
declare const ProjectMetadataSelectSchema:
|
|
34169
|
+
declare const ProjectMetadataSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
34170
34170
|
id: drizzle_orm_pg_core220.PgColumn<{
|
|
34171
34171
|
name: "id";
|
|
34172
34172
|
tableName: "project_metadata";
|
|
@@ -34260,7 +34260,7 @@ declare const ProjectMetadataSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
34260
34260
|
}, {}, {
|
|
34261
34261
|
length: 512;
|
|
34262
34262
|
}>;
|
|
34263
|
-
},
|
|
34263
|
+
}, drizzle_zod19.BuildRefine<{
|
|
34264
34264
|
id: drizzle_orm_pg_core220.PgColumn<{
|
|
34265
34265
|
name: "id";
|
|
34266
34266
|
tableName: "project_metadata";
|
|
@@ -34374,7 +34374,7 @@ declare const WorkAppGitHubAccountTypeSchema: z.ZodEnum<{
|
|
|
34374
34374
|
User: "User";
|
|
34375
34375
|
Organization: "Organization";
|
|
34376
34376
|
}>;
|
|
34377
|
-
declare const WorkAppGitHubInstallationSelectSchema:
|
|
34377
|
+
declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
34378
34378
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
34379
34379
|
name: "created_at";
|
|
34380
34380
|
tableName: "work_app_github_installations";
|
|
@@ -34540,7 +34540,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
34540
34540
|
}, {}, {
|
|
34541
34541
|
length: 256;
|
|
34542
34542
|
}>;
|
|
34543
|
-
},
|
|
34543
|
+
}, drizzle_zod19.BuildRefine<{
|
|
34544
34544
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
34545
34545
|
name: "created_at";
|
|
34546
34546
|
tableName: "work_app_github_installations";
|
|
@@ -34755,7 +34755,7 @@ declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<OmitGenerate
|
|
|
34755
34755
|
disconnected: "disconnected";
|
|
34756
34756
|
}>>>;
|
|
34757
34757
|
}>, z.core.$strip>;
|
|
34758
|
-
declare const WorkAppGitHubRepositorySelectSchema:
|
|
34758
|
+
declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
34759
34759
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
34760
34760
|
name: "created_at";
|
|
34761
34761
|
tableName: "work_app_github_repositories";
|
|
@@ -34900,7 +34900,7 @@ declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod15.BuildSchema<"se
|
|
|
34900
34900
|
identity: undefined;
|
|
34901
34901
|
generated: undefined;
|
|
34902
34902
|
}, {}, {}>;
|
|
34903
|
-
},
|
|
34903
|
+
}, drizzle_zod19.BuildRefine<{
|
|
34904
34904
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
34905
34905
|
name: "created_at";
|
|
34906
34906
|
tableName: "work_app_github_repositories";
|
|
@@ -35066,7 +35066,7 @@ declare const WorkAppGitHubRepositoryApiInsertSchema: z.ZodObject<OmitGeneratedF
|
|
|
35066
35066
|
repositoryFullName: z.ZodString;
|
|
35067
35067
|
private: z.ZodOptional<z.ZodBoolean>;
|
|
35068
35068
|
}>>, z.core.$strip>;
|
|
35069
|
-
declare const WorkAppGitHubProjectRepositoryAccessSelectSchema:
|
|
35069
|
+
declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
35070
35070
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
35071
35071
|
name: "created_at";
|
|
35072
35072
|
tableName: "work_app_github_project_repository_access";
|
|
@@ -35177,7 +35177,7 @@ declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod15.Bu
|
|
|
35177
35177
|
}, {}, {
|
|
35178
35178
|
length: 256;
|
|
35179
35179
|
}>;
|
|
35180
|
-
},
|
|
35180
|
+
}, drizzle_zod19.BuildRefine<{
|
|
35181
35181
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
35182
35182
|
name: "created_at";
|
|
35183
35183
|
tableName: "work_app_github_project_repository_access";
|
|
@@ -35289,7 +35289,7 @@ declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod15.Bu
|
|
|
35289
35289
|
length: 256;
|
|
35290
35290
|
}>;
|
|
35291
35291
|
}, undefined>, undefined>;
|
|
35292
|
-
declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema:
|
|
35292
|
+
declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
35293
35293
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
35294
35294
|
name: "created_at";
|
|
35295
35295
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
@@ -35419,7 +35419,7 @@ declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema: drizzle_zod15.Bu
|
|
|
35419
35419
|
}, {}, {
|
|
35420
35420
|
length: 256;
|
|
35421
35421
|
}>;
|
|
35422
|
-
},
|
|
35422
|
+
}, drizzle_zod19.BuildRefine<{
|
|
35423
35423
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
35424
35424
|
name: "created_at";
|
|
35425
35425
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
@@ -35573,7 +35573,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
35573
35573
|
all: "all";
|
|
35574
35574
|
selected: "selected";
|
|
35575
35575
|
}>;
|
|
35576
|
-
repositories: z.ZodArray<
|
|
35576
|
+
repositories: z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
35577
35577
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
35578
35578
|
name: "created_at";
|
|
35579
35579
|
tableName: "work_app_github_repositories";
|
|
@@ -35718,7 +35718,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
35718
35718
|
identity: undefined;
|
|
35719
35719
|
generated: undefined;
|
|
35720
35720
|
}, {}, {}>;
|
|
35721
|
-
},
|
|
35721
|
+
}, drizzle_zod19.BuildRefine<{
|
|
35722
35722
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
35723
35723
|
name: "created_at";
|
|
35724
35724
|
tableName: "work_app_github_repositories";
|
|
@@ -35865,7 +35865,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
35865
35865
|
}, {}, {}>;
|
|
35866
35866
|
}, undefined>, undefined>>;
|
|
35867
35867
|
}, z.core.$strip>;
|
|
35868
|
-
declare const WorkAppSlackChannelAgentConfigSelectSchema:
|
|
35868
|
+
declare const WorkAppSlackChannelAgentConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
35869
35869
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
35870
35870
|
name: "created_at";
|
|
35871
35871
|
tableName: "work_app_slack_channel_agent_configs";
|
|
@@ -36103,7 +36103,7 @@ declare const WorkAppSlackChannelAgentConfigSelectSchema: drizzle_zod15.BuildSch
|
|
|
36103
36103
|
identity: undefined;
|
|
36104
36104
|
generated: undefined;
|
|
36105
36105
|
}, {}, {}>;
|
|
36106
|
-
},
|
|
36106
|
+
}, drizzle_zod19.BuildRefine<{
|
|
36107
36107
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
36108
36108
|
name: "created_at";
|
|
36109
36109
|
tableName: "work_app_slack_channel_agent_configs";
|
|
@@ -36342,7 +36342,7 @@ declare const WorkAppSlackChannelAgentConfigSelectSchema: drizzle_zod15.BuildSch
|
|
|
36342
36342
|
generated: undefined;
|
|
36343
36343
|
}, {}, {}>;
|
|
36344
36344
|
}, undefined>, undefined>;
|
|
36345
|
-
declare const WorkAppSlackWorkspaceSelectSchema:
|
|
36345
|
+
declare const WorkAppSlackWorkspaceSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
36346
36346
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
36347
36347
|
name: "created_at";
|
|
36348
36348
|
tableName: "work_app_slack_workspaces";
|
|
@@ -36637,7 +36637,7 @@ declare const WorkAppSlackWorkspaceSelectSchema: drizzle_zod15.BuildSchema<"sele
|
|
|
36637
36637
|
identity: undefined;
|
|
36638
36638
|
generated: undefined;
|
|
36639
36639
|
}, {}, {}>;
|
|
36640
|
-
},
|
|
36640
|
+
}, drizzle_zod19.BuildRefine<{
|
|
36641
36641
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
36642
36642
|
name: "created_at";
|
|
36643
36643
|
tableName: "work_app_slack_workspaces";
|
|
@@ -36934,16 +36934,16 @@ declare const WorkAppSlackWorkspaceSelectSchema: drizzle_zod15.BuildSchema<"sele
|
|
|
36934
36934
|
}, {}, {}>;
|
|
36935
36935
|
}, undefined>, undefined>;
|
|
36936
36936
|
declare const WorkAppSlackAgentConfigRequestSchema: z.ZodObject<{
|
|
36937
|
-
agentId: z.ZodString;
|
|
36938
36937
|
projectId: z.ZodString;
|
|
36938
|
+
agentId: z.ZodString;
|
|
36939
36939
|
grantAccessToMembers: z.ZodOptional<z.ZodBoolean>;
|
|
36940
36940
|
}, {
|
|
36941
36941
|
out: {};
|
|
36942
36942
|
in: {};
|
|
36943
36943
|
}>;
|
|
36944
36944
|
declare const WorkAppSlackAgentConfigResponseSchema: z.ZodObject<{
|
|
36945
|
-
agentId: z.ZodString;
|
|
36946
36945
|
projectId: z.ZodString;
|
|
36946
|
+
agentId: z.ZodString;
|
|
36947
36947
|
grantAccessToMembers: z.ZodOptional<z.ZodBoolean>;
|
|
36948
36948
|
agentName: z.ZodString;
|
|
36949
36949
|
projectName: z.ZodOptional<z.ZodString>;
|
|
@@ -36959,8 +36959,8 @@ declare const ChannelAccessModeSchema: z.ZodEnum<{
|
|
|
36959
36959
|
selected: "selected";
|
|
36960
36960
|
}>;
|
|
36961
36961
|
declare const WorkAppSlackMcpToolAccessConfigInsertSchema: z.ZodObject<{
|
|
36962
|
-
projectId: z.ZodString;
|
|
36963
36962
|
tenantId: z.ZodString;
|
|
36963
|
+
projectId: z.ZodString;
|
|
36964
36964
|
toolId: z.ZodString;
|
|
36965
36965
|
channelAccessMode: z.ZodEnum<{
|
|
36966
36966
|
all: "all";
|
|
@@ -36977,7 +36977,7 @@ declare const WorkAppSlackMcpToolAccessConfigApiInsertSchema: z.ZodObject<{
|
|
|
36977
36977
|
dmEnabled: z.ZodBoolean;
|
|
36978
36978
|
channelIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
36979
36979
|
}, z.core.$strip>;
|
|
36980
|
-
declare const UserProfileSelectSchema:
|
|
36980
|
+
declare const UserProfileSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
36981
36981
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
36982
36982
|
name: "created_at";
|
|
36983
36983
|
tableName: "user_profile";
|
|
@@ -37082,7 +37082,7 @@ declare const UserProfileSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
37082
37082
|
}, {}, {
|
|
37083
37083
|
$type: Record<string, unknown>;
|
|
37084
37084
|
}>;
|
|
37085
|
-
},
|
|
37085
|
+
}, drizzle_zod19.BuildRefine<{
|
|
37086
37086
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
37087
37087
|
name: "created_at";
|
|
37088
37088
|
tableName: "user_profile";
|
|
@@ -37252,11 +37252,11 @@ declare const WorkflowExecutionSelectSchema: z.ZodObject<{
|
|
|
37252
37252
|
declare const WorkflowExecutionInsertSchema: z.ZodObject<{
|
|
37253
37253
|
id: z.ZodString;
|
|
37254
37254
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
37255
|
-
agentId: z.ZodString;
|
|
37256
|
-
projectId: z.ZodString;
|
|
37257
37255
|
tenantId: z.ZodString;
|
|
37258
|
-
|
|
37256
|
+
projectId: z.ZodString;
|
|
37257
|
+
agentId: z.ZodString;
|
|
37259
37258
|
conversationId: z.ZodString;
|
|
37259
|
+
requestId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
37260
37260
|
status: z.ZodDefault<z.ZodEnum<{
|
|
37261
37261
|
failed: "failed";
|
|
37262
37262
|
running: "running";
|
|
@@ -37270,11 +37270,11 @@ declare const WorkflowExecutionInsertSchema: z.ZodObject<{
|
|
|
37270
37270
|
declare const WorkflowExecutionUpdateSchema: z.ZodObject<{
|
|
37271
37271
|
id: z.ZodOptional<z.ZodString>;
|
|
37272
37272
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>;
|
|
37273
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
37274
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
37275
37273
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
37276
|
-
|
|
37274
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
37275
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
37277
37276
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
37277
|
+
requestId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
37278
37278
|
status: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
37279
37279
|
failed: "failed";
|
|
37280
37280
|
running: "running";
|