@inkeep/agents-core 0.80.2 → 0.80.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/auth-schema.d.ts +163 -163
- package/dist/auth/auth-validation-schemas.d.ts +154 -154
- package/dist/auth/auth.d.ts +9 -9
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/data-access/manage/agents.d.ts +5 -5
- package/dist/data-access/manage/contextConfigs.d.ts +4 -4
- package/dist/data-access/manage/functionTools.d.ts +2 -2
- package/dist/data-access/manage/skills.d.ts +4 -4
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgentRelations.d.ts +4 -4
- package/dist/data-access/manage/subAgents.d.ts +3 -3
- package/dist/data-access/manage/tools.d.ts +9 -9
- package/dist/data-access/manage/triggers.d.ts +1 -1
- package/dist/data-access/runtime/apps.d.ts +2 -2
- package/dist/data-access/runtime/conversations.d.ts +4 -4
- package/dist/data-access/runtime/events.d.ts +1 -1
- package/dist/data-access/runtime/messages.d.ts +3 -3
- package/dist/data-access/runtime/tasks.d.ts +2 -2
- package/dist/db/manage/manage-schema.d.ts +504 -504
- package/dist/db/runtime/runtime-schema.d.ts +448 -448
- package/dist/utils/error.d.ts +51 -51
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas/skills.d.ts +19 -19
- package/dist/validation/schemas.d.ts +494 -494
- 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_core0 from "drizzle-orm/pg-core";
|
|
7
|
-
import * as
|
|
7
|
+
import * as drizzle_zod0 from "drizzle-zod";
|
|
8
8
|
|
|
9
9
|
//#region src/validation/schemas.d.ts
|
|
10
10
|
declare const TextPartSchema: z.ZodObject<{
|
|
@@ -136,7 +136,7 @@ declare const FunctionToolConfigSchema: z.ZodObject<{
|
|
|
136
136
|
type FunctionToolConfig = Omit<z.infer<typeof FunctionToolConfigSchema>, 'execute'> & {
|
|
137
137
|
execute: ((params: any) => Promise<any>) | string;
|
|
138
138
|
};
|
|
139
|
-
declare const SubAgentSelectSchema:
|
|
139
|
+
declare const SubAgentSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
140
140
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
141
141
|
name: "created_at";
|
|
142
142
|
tableName: "sub_agents";
|
|
@@ -434,7 +434,7 @@ declare const SubAgentSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
434
434
|
}, {}, {
|
|
435
435
|
length: 256;
|
|
436
436
|
}>;
|
|
437
|
-
},
|
|
437
|
+
}, drizzle_zod0.BuildRefine<{
|
|
438
438
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
439
439
|
name: "created_at";
|
|
440
440
|
tableName: "sub_agents";
|
|
@@ -1073,7 +1073,7 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
1073
1073
|
retryBudget: z.ZodOptional<z.ZodNumber>;
|
|
1074
1074
|
}, z.core.$loose>>>>>;
|
|
1075
1075
|
}, z.core.$strip>;
|
|
1076
|
-
declare const SubAgentRelationSelectSchema:
|
|
1076
|
+
declare const SubAgentRelationSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
1077
1077
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
1078
1078
|
name: "created_at";
|
|
1079
1079
|
tableName: "sub_agent_relations";
|
|
@@ -1241,7 +1241,7 @@ declare const SubAgentRelationSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
1241
1241
|
}, {}, {
|
|
1242
1242
|
length: 256;
|
|
1243
1243
|
}>;
|
|
1244
|
-
},
|
|
1244
|
+
}, drizzle_zod0.BuildRefine<{
|
|
1245
1245
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
1246
1246
|
name: "created_at";
|
|
1247
1247
|
tableName: "sub_agent_relations";
|
|
@@ -1507,7 +1507,7 @@ declare const ExternalSubAgentRelationApiInsertSchema: z.ZodObject<{
|
|
|
1507
1507
|
relationType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1508
1508
|
externalSubAgentId: z.ZodString;
|
|
1509
1509
|
}, z.core.$strip>;
|
|
1510
|
-
declare const AgentSelectSchema:
|
|
1510
|
+
declare const AgentSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
1511
1511
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
1512
1512
|
name: "created_at";
|
|
1513
1513
|
tableName: "agent";
|
|
@@ -1837,7 +1837,7 @@ declare const AgentSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
1837
1837
|
}, {}, {
|
|
1838
1838
|
length: 256;
|
|
1839
1839
|
}>;
|
|
1840
|
-
},
|
|
1840
|
+
}, drizzle_zod0.BuildRefine<{
|
|
1841
1841
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
1842
1842
|
name: "created_at";
|
|
1843
1843
|
tableName: "agent";
|
|
@@ -2168,7 +2168,7 @@ declare const AgentSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
2168
2168
|
length: 256;
|
|
2169
2169
|
}>;
|
|
2170
2170
|
}, undefined>, undefined>;
|
|
2171
|
-
declare const AgentInsertSchema:
|
|
2171
|
+
declare const AgentInsertSchema: drizzle_zod0.BuildSchema<"insert", {
|
|
2172
2172
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2173
2173
|
name: "created_at";
|
|
2174
2174
|
tableName: "agent";
|
|
@@ -2498,7 +2498,7 @@ declare const AgentInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
2498
2498
|
}, {}, {
|
|
2499
2499
|
length: 256;
|
|
2500
2500
|
}>;
|
|
2501
|
-
},
|
|
2501
|
+
}, drizzle_zod0.BuildRefine<Pick<{
|
|
2502
2502
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2503
2503
|
name: "created_at";
|
|
2504
2504
|
tableName: "agent";
|
|
@@ -2828,7 +2828,7 @@ declare const AgentInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
2828
2828
|
}, {}, {
|
|
2829
2829
|
length: 256;
|
|
2830
2830
|
}>;
|
|
2831
|
-
}, "id" | "name" | "description" | "models" | "stopWhen" | "createdAt" | "updatedAt" | "tenantId" | "defaultSubAgentId" | "contextConfigId" | "prompt" | "statusUpdates" | "executionMode"
|
|
2831
|
+
}, "id" | "name" | "description" | "models" | "stopWhen" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "defaultSubAgentId" | "contextConfigId" | "prompt" | "statusUpdates" | "executionMode">, undefined>, undefined>;
|
|
2832
2832
|
declare const AgentUpdateSchema: z.ZodObject<{
|
|
2833
2833
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2834
2834
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -3509,8 +3509,8 @@ declare const TriggerOutputTransformSchema: z.ZodObject<{
|
|
|
3509
3509
|
*/
|
|
3510
3510
|
declare const SignatureSourceSchema: z.ZodObject<{
|
|
3511
3511
|
source: z.ZodEnum<{
|
|
3512
|
-
header: "header";
|
|
3513
3512
|
query: "query";
|
|
3513
|
+
header: "header";
|
|
3514
3514
|
body: "body";
|
|
3515
3515
|
}>;
|
|
3516
3516
|
key: z.ZodString;
|
|
@@ -3649,8 +3649,8 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
|
3649
3649
|
}>;
|
|
3650
3650
|
signature: z.ZodObject<{
|
|
3651
3651
|
source: z.ZodEnum<{
|
|
3652
|
-
header: "header";
|
|
3653
3652
|
query: "query";
|
|
3653
|
+
header: "header";
|
|
3654
3654
|
body: "body";
|
|
3655
3655
|
}>;
|
|
3656
3656
|
key: z.ZodString;
|
|
@@ -3721,10 +3721,10 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3721
3721
|
createdAt: z.ZodString;
|
|
3722
3722
|
updatedAt: z.ZodString;
|
|
3723
3723
|
enabled: z.ZodBoolean;
|
|
3724
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
3725
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
3724
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
3725
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
3726
3726
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
3727
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
3727
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
3728
3728
|
name: z.ZodString;
|
|
3729
3729
|
description: z.ZodNullable<z.ZodString>;
|
|
3730
3730
|
agentId: z.ZodString;
|
|
@@ -3746,8 +3746,8 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3746
3746
|
}>;
|
|
3747
3747
|
signature: z.ZodObject<{
|
|
3748
3748
|
source: z.ZodEnum<{
|
|
3749
|
-
header: "header";
|
|
3750
3749
|
query: "query";
|
|
3750
|
+
header: "header";
|
|
3751
3751
|
body: "body";
|
|
3752
3752
|
}>;
|
|
3753
3753
|
key: z.ZodString;
|
|
@@ -3784,7 +3784,7 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3784
3784
|
out: {};
|
|
3785
3785
|
in: {};
|
|
3786
3786
|
}>;
|
|
3787
|
-
declare const TriggerInsertSchema:
|
|
3787
|
+
declare const TriggerInsertSchema: drizzle_zod0.BuildSchema<"insert", {
|
|
3788
3788
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3789
3789
|
name: "created_at";
|
|
3790
3790
|
tableName: "triggers";
|
|
@@ -3944,7 +3944,7 @@ declare const TriggerInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
3944
3944
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3945
3945
|
encoding: "hex" | "base64";
|
|
3946
3946
|
signature: {
|
|
3947
|
-
source: "
|
|
3947
|
+
source: "query" | "header" | "body";
|
|
3948
3948
|
key: string;
|
|
3949
3949
|
prefix?: string | undefined;
|
|
3950
3950
|
regex?: string | undefined;
|
|
@@ -3981,7 +3981,7 @@ declare const TriggerInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
3981
3981
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3982
3982
|
encoding: "hex" | "base64";
|
|
3983
3983
|
signature: {
|
|
3984
|
-
source: "
|
|
3984
|
+
source: "query" | "header" | "body";
|
|
3985
3985
|
key: string;
|
|
3986
3986
|
prefix?: string | undefined;
|
|
3987
3987
|
regex?: string | undefined;
|
|
@@ -4171,7 +4171,7 @@ declare const TriggerInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
4171
4171
|
}, {}, {
|
|
4172
4172
|
length: 256;
|
|
4173
4173
|
}>;
|
|
4174
|
-
},
|
|
4174
|
+
}, drizzle_zod0.BuildRefine<Pick<{
|
|
4175
4175
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4176
4176
|
name: "created_at";
|
|
4177
4177
|
tableName: "triggers";
|
|
@@ -4331,7 +4331,7 @@ declare const TriggerInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
4331
4331
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
4332
4332
|
encoding: "hex" | "base64";
|
|
4333
4333
|
signature: {
|
|
4334
|
-
source: "
|
|
4334
|
+
source: "query" | "header" | "body";
|
|
4335
4335
|
key: string;
|
|
4336
4336
|
prefix?: string | undefined;
|
|
4337
4337
|
regex?: string | undefined;
|
|
@@ -4368,7 +4368,7 @@ declare const TriggerInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
4368
4368
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
4369
4369
|
encoding: "hex" | "base64";
|
|
4370
4370
|
signature: {
|
|
4371
|
-
source: "
|
|
4371
|
+
source: "query" | "header" | "body";
|
|
4372
4372
|
key: string;
|
|
4373
4373
|
prefix?: string | undefined;
|
|
4374
4374
|
regex?: string | undefined;
|
|
@@ -4558,16 +4558,16 @@ declare const TriggerInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
4558
4558
|
}, {}, {
|
|
4559
4559
|
length: 256;
|
|
4560
4560
|
}>;
|
|
4561
|
-
}, "id" | "name" | "description" | "createdAt" | "updatedAt" | "tenantId" | "
|
|
4561
|
+
}, "id" | "name" | "description" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "enabled" | "agentId" | "createdBy" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification" | "runAsUserId" | "dispatchDelayMs">, undefined>, undefined>;
|
|
4562
4562
|
declare const runAsUserIdsSchema: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4563
4563
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
4564
4564
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4565
4565
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4566
|
-
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4567
|
-
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4566
|
+
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>>;
|
|
4567
|
+
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>>;
|
|
4568
4568
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4569
4569
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4570
|
-
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4570
|
+
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>>;
|
|
4571
4571
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4572
4572
|
dispatchDelayMs: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodInt>>>;
|
|
4573
4573
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -4596,10 +4596,11 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4596
4596
|
createdAt: z.ZodString;
|
|
4597
4597
|
updatedAt: z.ZodString;
|
|
4598
4598
|
enabled: z.ZodBoolean;
|
|
4599
|
-
|
|
4600
|
-
|
|
4599
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4600
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
4601
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
4601
4602
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4602
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
4603
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
4603
4604
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4604
4605
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4605
4606
|
algorithm: z.ZodEnum<{
|
|
@@ -4615,8 +4616,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4615
4616
|
}>;
|
|
4616
4617
|
signature: z.ZodObject<{
|
|
4617
4618
|
source: z.ZodEnum<{
|
|
4618
|
-
header: "header";
|
|
4619
4619
|
query: "query";
|
|
4620
|
+
header: "header";
|
|
4620
4621
|
body: "body";
|
|
4621
4622
|
}>;
|
|
4622
4623
|
key: z.ZodString;
|
|
@@ -4648,22 +4649,21 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4648
4649
|
}, z.core.$strip>>>;
|
|
4649
4650
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4650
4651
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4651
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4652
4652
|
}, z.core.$strip>;
|
|
4653
4653
|
declare const TriggerApiInsertBaseSchema: z.ZodObject<{
|
|
4654
4654
|
id: z.ZodOptional<z.ZodString>;
|
|
4655
4655
|
name: z.ZodString;
|
|
4656
4656
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4657
4657
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4658
|
-
|
|
4659
|
-
|
|
4658
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4659
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
4660
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
4660
4661
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4661
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4662
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
4662
4663
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4663
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4664
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
4664
4665
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4665
4666
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
4666
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4667
4667
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4668
4668
|
}, z.core.$strip>;
|
|
4669
4669
|
declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
@@ -4671,15 +4671,15 @@ declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
|
4671
4671
|
name: z.ZodString;
|
|
4672
4672
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4673
4673
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4674
|
-
|
|
4675
|
-
|
|
4674
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4675
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
4676
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
4676
4677
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4677
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4678
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
4678
4679
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4679
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4680
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
4680
4681
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4681
4682
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
4682
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4683
4683
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4684
4684
|
}, z.core.$strip>;
|
|
4685
4685
|
declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
@@ -4689,8 +4689,9 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4689
4689
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4690
4690
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4691
4691
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
4692
|
-
|
|
4693
|
-
|
|
4692
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4693
|
+
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>>>;
|
|
4694
|
+
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>>>;
|
|
4694
4695
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4695
4696
|
authentication: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
4696
4697
|
headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -4700,10 +4701,9 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4700
4701
|
}, z.core.$strip>>>;
|
|
4701
4702
|
}, z.core.$strip>>>>;
|
|
4702
4703
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4703
|
-
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4704
|
+
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>>>;
|
|
4704
4705
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4705
4706
|
dispatchDelayMs: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodInt>>>>;
|
|
4706
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4707
4707
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4708
4708
|
}, z.core.$strip>;
|
|
4709
4709
|
declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
@@ -4713,10 +4713,11 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4713
4713
|
createdAt: z.ZodString;
|
|
4714
4714
|
updatedAt: z.ZodString;
|
|
4715
4715
|
enabled: z.ZodBoolean;
|
|
4716
|
-
|
|
4717
|
-
|
|
4716
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4717
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
4718
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
4718
4719
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4719
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
4720
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
4720
4721
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4721
4722
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4722
4723
|
algorithm: z.ZodEnum<{
|
|
@@ -4732,8 +4733,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4732
4733
|
}>;
|
|
4733
4734
|
signature: z.ZodObject<{
|
|
4734
4735
|
source: z.ZodEnum<{
|
|
4735
|
-
header: "header";
|
|
4736
4736
|
query: "query";
|
|
4737
|
+
header: "header";
|
|
4737
4738
|
body: "body";
|
|
4738
4739
|
}>;
|
|
4739
4740
|
key: z.ZodString;
|
|
@@ -4765,7 +4766,6 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4765
4766
|
}, z.core.$strip>>>;
|
|
4766
4767
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4767
4768
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4768
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4769
4769
|
runAsUserIds: z.ZodArray<z.ZodString>;
|
|
4770
4770
|
userCount: z.ZodNumber;
|
|
4771
4771
|
webhookUrl: z.ZodString;
|
|
@@ -4775,8 +4775,8 @@ declare const TriggerInvocationSelectSchema: z.ZodObject<{
|
|
|
4775
4775
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
4776
4776
|
batchId: z.ZodNullable<z.ZodString>;
|
|
4777
4777
|
status: z.ZodString;
|
|
4778
|
-
requestPayload: z.ZodType<
|
|
4779
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
4778
|
+
requestPayload: z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>;
|
|
4779
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
4780
4780
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
4781
4781
|
createdAt: z.ZodString;
|
|
4782
4782
|
agentId: z.ZodString;
|
|
@@ -4797,7 +4797,7 @@ declare const TriggerInvocationSelectSchema: z.ZodObject<{
|
|
|
4797
4797
|
out: {};
|
|
4798
4798
|
in: {};
|
|
4799
4799
|
}>;
|
|
4800
|
-
declare const TriggerInvocationInsertSchema:
|
|
4800
|
+
declare const TriggerInvocationInsertSchema: drizzle_zod0.BuildSchema<"insert", {
|
|
4801
4801
|
triggerId: drizzle_orm_pg_core0.PgColumn<{
|
|
4802
4802
|
name: "trigger_id";
|
|
4803
4803
|
tableName: "trigger_invocations";
|
|
@@ -5064,7 +5064,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod3.BuildSchema<"insert",
|
|
|
5064
5064
|
}, {}, {
|
|
5065
5065
|
length: 256;
|
|
5066
5066
|
}>;
|
|
5067
|
-
},
|
|
5067
|
+
}, drizzle_zod0.BuildRefine<Pick<{
|
|
5068
5068
|
triggerId: drizzle_orm_pg_core0.PgColumn<{
|
|
5069
5069
|
name: "trigger_id";
|
|
5070
5070
|
tableName: "trigger_invocations";
|
|
@@ -5331,7 +5331,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod3.BuildSchema<"insert",
|
|
|
5331
5331
|
}, {}, {
|
|
5332
5332
|
length: 256;
|
|
5333
5333
|
}>;
|
|
5334
|
-
}, "id" | "createdAt" | "tenantId" | "projectId" | "agentId" | "runAsUserId" | "triggerId" | "
|
|
5334
|
+
}, "id" | "createdAt" | "tenantId" | "projectId" | "agentId" | "runAsUserId" | "triggerId" | "conversationId" | "batchId" | "ref" | "status" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
5335
5335
|
declare const SetTriggerUsersRequestSchema: z.ZodObject<{
|
|
5336
5336
|
userIds: z.ZodArray<z.ZodString>;
|
|
5337
5337
|
}, z.core.$strip>;
|
|
@@ -5364,8 +5364,8 @@ declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
5364
5364
|
hash: string;
|
|
5365
5365
|
}>>>>>;
|
|
5366
5366
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5367
|
-
requestPayload: z.ZodOptional<z.ZodType<
|
|
5368
|
-
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5367
|
+
requestPayload: z.ZodOptional<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
5368
|
+
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>>;
|
|
5369
5369
|
errorMessage: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5370
5370
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5371
5371
|
agentId: z.ZodOptional<z.ZodString>;
|
|
@@ -5381,7 +5381,6 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5381
5381
|
createdAt: z.ZodString;
|
|
5382
5382
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5383
5383
|
triggerId: z.ZodString;
|
|
5384
|
-
status: z.ZodString;
|
|
5385
5384
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
5386
5385
|
batchId: z.ZodNullable<z.ZodString>;
|
|
5387
5386
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -5393,15 +5392,15 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5393
5392
|
name: z.ZodString;
|
|
5394
5393
|
hash: z.ZodString;
|
|
5395
5394
|
}, z.core.$strip>>>;
|
|
5396
|
-
|
|
5397
|
-
|
|
5395
|
+
status: z.ZodString;
|
|
5396
|
+
requestPayload: z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>;
|
|
5397
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
5398
5398
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
5399
5399
|
}, z.core.$strip>;
|
|
5400
5400
|
declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
5401
5401
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5402
5402
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5403
5403
|
triggerId: z.ZodString;
|
|
5404
|
-
status: z.ZodOptional<z.ZodString>;
|
|
5405
5404
|
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5406
5405
|
batchId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5407
5406
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -5421,8 +5420,9 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
5421
5420
|
name: string;
|
|
5422
5421
|
hash: string;
|
|
5423
5422
|
}>>>>;
|
|
5424
|
-
|
|
5425
|
-
|
|
5423
|
+
status: z.ZodOptional<z.ZodString>;
|
|
5424
|
+
requestPayload: z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>;
|
|
5425
|
+
transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
5426
5426
|
errorMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5427
5427
|
id: z.ZodString;
|
|
5428
5428
|
}, z.core.$strip>;
|
|
@@ -5431,7 +5431,6 @@ declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
5431
5431
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5432
5432
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5433
5433
|
triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5434
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5435
5434
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5436
5435
|
batchId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5437
5436
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -5451,8 +5450,9 @@ declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
5451
5450
|
name: string;
|
|
5452
5451
|
hash: string;
|
|
5453
5452
|
}>>>>>>;
|
|
5454
|
-
|
|
5455
|
-
|
|
5453
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5454
|
+
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
5455
|
+
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>>>;
|
|
5456
5456
|
errorMessage: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5457
5457
|
}, z.core.$strip>;
|
|
5458
5458
|
declare const WebhookDestinationEventTypeEnum: z.ZodEnum<{
|
|
@@ -5555,7 +5555,7 @@ declare const WebhookDestinationSelectSchema: z.ZodObject<{
|
|
|
5555
5555
|
out: {};
|
|
5556
5556
|
in: {};
|
|
5557
5557
|
}>;
|
|
5558
|
-
declare const WebhookDestinationInsertSchema:
|
|
5558
|
+
declare const WebhookDestinationInsertSchema: drizzle_zod0.BuildSchema<"insert", {
|
|
5559
5559
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
5560
5560
|
name: "created_at";
|
|
5561
5561
|
tableName: "webhook_destinations";
|
|
@@ -5774,7 +5774,7 @@ declare const WebhookDestinationInsertSchema: drizzle_zod3.BuildSchema<"insert",
|
|
|
5774
5774
|
}, {}, {
|
|
5775
5775
|
length: 256;
|
|
5776
5776
|
}>;
|
|
5777
|
-
},
|
|
5777
|
+
}, drizzle_zod0.BuildRefine<Pick<{
|
|
5778
5778
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
5779
5779
|
name: "created_at";
|
|
5780
5780
|
tableName: "webhook_destinations";
|
|
@@ -5993,14 +5993,14 @@ declare const WebhookDestinationInsertSchema: drizzle_zod3.BuildSchema<"insert",
|
|
|
5993
5993
|
}, {}, {
|
|
5994
5994
|
length: 256;
|
|
5995
5995
|
}>;
|
|
5996
|
-
}, "id" | "name" | "description" | "createdAt" | "updatedAt" | "tenantId" | "
|
|
5996
|
+
}, "id" | "name" | "description" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "enabled" | "headers" | "url" | "slackChannelId" | "eventTypes">, undefined>, undefined>;
|
|
5997
5997
|
declare const WebhookDestinationUpdateSchema: z.ZodObject<{
|
|
5998
5998
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5999
5999
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6000
6000
|
url: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6001
6001
|
slackChannelId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6002
6002
|
eventTypes: z.ZodOptional<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
6003
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
6003
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>>;
|
|
6004
6004
|
name: z.ZodOptional<z.ZodString>;
|
|
6005
6005
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6006
6006
|
projectId: z.ZodOptional<z.ZodString>;
|
|
@@ -6018,6 +6018,7 @@ declare const WebhookDestinationApiSelectSchema: z.ZodObject<{
|
|
|
6018
6018
|
createdAt: z.ZodString;
|
|
6019
6019
|
updatedAt: z.ZodString;
|
|
6020
6020
|
enabled: z.ZodBoolean;
|
|
6021
|
+
headers: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6021
6022
|
url: z.ZodNullable<z.ZodString>;
|
|
6022
6023
|
slackChannelId: z.ZodNullable<z.ZodString>;
|
|
6023
6024
|
eventTypes: z.ZodArray<z.ZodEnum<{
|
|
@@ -6031,7 +6032,6 @@ declare const WebhookDestinationApiSelectSchema: z.ZodObject<{
|
|
|
6031
6032
|
"conversation.tool.error": "conversation.tool.error";
|
|
6032
6033
|
"conversation.context.error": "conversation.context.error";
|
|
6033
6034
|
}>>;
|
|
6034
|
-
headers: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6035
6035
|
agentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6036
6036
|
evaluatorIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6037
6037
|
}, z.core.$strip>;
|
|
@@ -6040,10 +6040,10 @@ declare const WebhookDestinationApiInsertSchema: z.ZodObject<{
|
|
|
6040
6040
|
name: z.ZodString;
|
|
6041
6041
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6042
6042
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
6043
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
6043
6044
|
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6044
6045
|
slackChannelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6045
6046
|
eventTypes: z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>;
|
|
6046
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
6047
6047
|
agentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6048
6048
|
evaluatorIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6049
6049
|
}, z.core.$strip>;
|
|
@@ -6054,10 +6054,10 @@ declare const WebhookDestinationApiUpdateSchema: z.ZodObject<{
|
|
|
6054
6054
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6055
6055
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6056
6056
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
6057
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>>>;
|
|
6057
6058
|
url: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6058
6059
|
slackChannelId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6059
6060
|
eventTypes: z.ZodOptional<z.ZodOptional<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
6060
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>>>;
|
|
6061
6061
|
agentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6062
6062
|
evaluatorIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6063
6063
|
}, z.core.$strip>;
|
|
@@ -6069,6 +6069,7 @@ declare const WebhookDestinationResponse: z.ZodObject<{
|
|
|
6069
6069
|
createdAt: z.ZodString;
|
|
6070
6070
|
updatedAt: z.ZodString;
|
|
6071
6071
|
enabled: z.ZodBoolean;
|
|
6072
|
+
headers: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6072
6073
|
url: z.ZodNullable<z.ZodString>;
|
|
6073
6074
|
slackChannelId: z.ZodNullable<z.ZodString>;
|
|
6074
6075
|
eventTypes: z.ZodArray<z.ZodEnum<{
|
|
@@ -6082,7 +6083,6 @@ declare const WebhookDestinationResponse: z.ZodObject<{
|
|
|
6082
6083
|
"conversation.tool.error": "conversation.tool.error";
|
|
6083
6084
|
"conversation.context.error": "conversation.context.error";
|
|
6084
6085
|
}>>;
|
|
6085
|
-
headers: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6086
6086
|
agentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6087
6087
|
evaluatorIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6088
6088
|
}, z.core.$strip>;
|
|
@@ -6095,6 +6095,7 @@ declare const WebhookDestinationListResponse: z.ZodObject<{
|
|
|
6095
6095
|
createdAt: z.ZodString;
|
|
6096
6096
|
updatedAt: z.ZodString;
|
|
6097
6097
|
enabled: z.ZodBoolean;
|
|
6098
|
+
headers: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6098
6099
|
url: z.ZodNullable<z.ZodString>;
|
|
6099
6100
|
slackChannelId: z.ZodNullable<z.ZodString>;
|
|
6100
6101
|
eventTypes: z.ZodArray<z.ZodEnum<{
|
|
@@ -6108,7 +6109,6 @@ declare const WebhookDestinationListResponse: z.ZodObject<{
|
|
|
6108
6109
|
"conversation.tool.error": "conversation.tool.error";
|
|
6109
6110
|
"conversation.context.error": "conversation.context.error";
|
|
6110
6111
|
}>>;
|
|
6111
|
-
headers: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6112
6112
|
agentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6113
6113
|
evaluatorIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6114
6114
|
}, z.core.$strip>>;
|
|
@@ -6159,14 +6159,13 @@ declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
|
6159
6159
|
name: z.ZodString;
|
|
6160
6160
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6161
6161
|
tenantId: z.ZodString;
|
|
6162
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
6163
6162
|
projectId: z.ZodString;
|
|
6163
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
6164
6164
|
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6165
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6165
6166
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6166
6167
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6167
6168
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
6168
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6169
|
-
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6170
6169
|
ref: z.ZodOptional<z.ZodString>;
|
|
6171
6170
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6172
6171
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6174,6 +6173,7 @@ declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
|
6174
6173
|
maxRetries: z.ZodOptional<z.ZodInt>;
|
|
6175
6174
|
retryDelaySeconds: z.ZodOptional<z.ZodInt>;
|
|
6176
6175
|
timeoutSeconds: z.ZodOptional<z.ZodInt>;
|
|
6176
|
+
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6177
6177
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6178
6178
|
}, {
|
|
6179
6179
|
out: {};
|
|
@@ -6186,13 +6186,13 @@ declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
|
6186
6186
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
6187
6187
|
projectId: z.ZodOptional<z.ZodString>;
|
|
6188
6188
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6189
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6189
6190
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6190
6191
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6191
6192
|
dispatchDelayMs: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodInt>>>;
|
|
6192
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6193
|
-
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6194
6193
|
cronExpression: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6195
6194
|
runAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6195
|
+
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6196
6196
|
payload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
6197
6197
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
6198
6198
|
cronTimezone: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -6211,11 +6211,10 @@ declare const ScheduledTriggerApiSelectSchema: z.ZodObject<{
|
|
|
6211
6211
|
createdAt: z.ZodString;
|
|
6212
6212
|
updatedAt: z.ZodString;
|
|
6213
6213
|
enabled: z.ZodBoolean;
|
|
6214
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
6214
6215
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
6215
6216
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
6216
6217
|
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
6217
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
6218
|
-
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
6219
6218
|
ref: z.ZodString;
|
|
6220
6219
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
6221
6220
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
@@ -6225,15 +6224,15 @@ declare const ScheduledTriggerApiSelectSchema: z.ZodObject<{
|
|
|
6225
6224
|
retryDelaySeconds: z.ZodInt;
|
|
6226
6225
|
timeoutSeconds: z.ZodInt;
|
|
6227
6226
|
nextRunAt: z.ZodNullable<z.ZodString>;
|
|
6227
|
+
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
6228
6228
|
}, z.core.$strip>;
|
|
6229
6229
|
declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
6230
6230
|
name: z.ZodString;
|
|
6231
6231
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6232
6232
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
6233
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6233
6234
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6234
6235
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6235
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6236
|
-
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6237
6236
|
ref: z.ZodOptional<z.ZodString>;
|
|
6238
6237
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6239
6238
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6242,6 +6241,7 @@ declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
6242
6241
|
maxRetries: z.ZodOptional<z.ZodInt>;
|
|
6243
6242
|
retryDelaySeconds: z.ZodOptional<z.ZodInt>;
|
|
6244
6243
|
timeoutSeconds: z.ZodOptional<z.ZodInt>;
|
|
6244
|
+
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6245
6245
|
id: z.ZodOptional<z.ZodString>;
|
|
6246
6246
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6247
6247
|
dispatchDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6250,10 +6250,9 @@ declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
|
6250
6250
|
name: z.ZodString;
|
|
6251
6251
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6252
6252
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
6253
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6253
6254
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6254
6255
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6255
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6256
|
-
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6257
6256
|
ref: z.ZodOptional<z.ZodString>;
|
|
6258
6257
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6259
6258
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6262,6 +6261,7 @@ declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
|
6262
6261
|
maxRetries: z.ZodOptional<z.ZodInt>;
|
|
6263
6262
|
retryDelaySeconds: z.ZodOptional<z.ZodInt>;
|
|
6264
6263
|
timeoutSeconds: z.ZodOptional<z.ZodInt>;
|
|
6264
|
+
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6265
6265
|
id: z.ZodOptional<z.ZodString>;
|
|
6266
6266
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6267
6267
|
dispatchDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6271,10 +6271,9 @@ declare const ScheduledTriggerApiUpdateSchema: z.ZodObject<{
|
|
|
6271
6271
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6272
6272
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6273
6273
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
6274
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6274
6275
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6275
6276
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6276
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6277
|
-
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6278
6277
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6279
6278
|
cronExpression: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6280
6279
|
cronTimezone: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -6283,6 +6282,7 @@ declare const ScheduledTriggerApiUpdateSchema: z.ZodObject<{
|
|
|
6283
6282
|
maxRetries: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNumber>>>;
|
|
6284
6283
|
retryDelaySeconds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNumber>>>;
|
|
6285
6284
|
timeoutSeconds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNumber>>>;
|
|
6285
|
+
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6286
6286
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6287
6287
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6288
6288
|
}, z.core.$strip>;
|
|
@@ -6337,7 +6337,7 @@ declare const ScheduledTriggerInvocationSelectSchema: z.ZodObject<{
|
|
|
6337
6337
|
out: {};
|
|
6338
6338
|
in: {};
|
|
6339
6339
|
}>;
|
|
6340
|
-
declare const ScheduledTriggerInvocationInsertSchema:
|
|
6340
|
+
declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod0.BuildSchema<"insert", {
|
|
6341
6341
|
scheduledTriggerId: drizzle_orm_pg_core0.PgColumn<{
|
|
6342
6342
|
name: "scheduled_trigger_id";
|
|
6343
6343
|
tableName: "scheduled_trigger_invocations";
|
|
@@ -6641,7 +6641,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod3.BuildSchema<"
|
|
|
6641
6641
|
}, {}, {
|
|
6642
6642
|
length: 256;
|
|
6643
6643
|
}>;
|
|
6644
|
-
},
|
|
6644
|
+
}, drizzle_zod0.BuildRefine<Pick<{
|
|
6645
6645
|
scheduledTriggerId: drizzle_orm_pg_core0.PgColumn<{
|
|
6646
6646
|
name: "scheduled_trigger_id";
|
|
6647
6647
|
tableName: "scheduled_trigger_invocations";
|
|
@@ -6945,7 +6945,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod3.BuildSchema<"
|
|
|
6945
6945
|
}, {}, {
|
|
6946
6946
|
length: 256;
|
|
6947
6947
|
}>;
|
|
6948
|
-
}, "id" | "createdAt" | "tenantId" | "projectId" | "agentId" | "runAsUserId" | "
|
|
6948
|
+
}, "id" | "createdAt" | "tenantId" | "projectId" | "agentId" | "runAsUserId" | "ref" | "status" | "scheduledTriggerId" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "conversationIds" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
|
|
6949
6949
|
declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
6950
6950
|
scheduledTriggerId: z.ZodOptional<z.ZodString>;
|
|
6951
6951
|
ref: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -6969,7 +6969,7 @@ declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
6969
6969
|
scheduledFor: z.ZodOptional<z.ZodString>;
|
|
6970
6970
|
startedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6971
6971
|
completedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6972
|
-
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
6972
|
+
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>>;
|
|
6973
6973
|
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>;
|
|
6974
6974
|
attemptNumber: z.ZodOptional<z.ZodOptional<z.ZodInt>>;
|
|
6975
6975
|
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
@@ -6987,14 +6987,6 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
6987
6987
|
id: z.ZodString;
|
|
6988
6988
|
createdAt: z.ZodString;
|
|
6989
6989
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
6990
|
-
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
6991
|
-
status: z.ZodEnum<{
|
|
6992
|
-
pending: "pending";
|
|
6993
|
-
failed: "failed";
|
|
6994
|
-
running: "running";
|
|
6995
|
-
completed: "completed";
|
|
6996
|
-
cancelled: "cancelled";
|
|
6997
|
-
}>;
|
|
6998
6990
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6999
6991
|
type: z.ZodEnum<{
|
|
7000
6992
|
commit: "commit";
|
|
@@ -7004,19 +6996,25 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
7004
6996
|
name: z.ZodString;
|
|
7005
6997
|
hash: z.ZodString;
|
|
7006
6998
|
}, z.core.$strip>>>;
|
|
6999
|
+
status: z.ZodEnum<{
|
|
7000
|
+
pending: "pending";
|
|
7001
|
+
failed: "failed";
|
|
7002
|
+
running: "running";
|
|
7003
|
+
completed: "completed";
|
|
7004
|
+
cancelled: "cancelled";
|
|
7005
|
+
}>;
|
|
7007
7006
|
scheduledTriggerId: z.ZodString;
|
|
7008
7007
|
scheduledFor: z.ZodString;
|
|
7009
7008
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
7010
7009
|
completedAt: z.ZodNullable<z.ZodString>;
|
|
7011
7010
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
7011
|
+
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
7012
7012
|
attemptNumber: z.ZodInt;
|
|
7013
7013
|
idempotencyKey: z.ZodString;
|
|
7014
7014
|
}, z.core.$strip>;
|
|
7015
7015
|
declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
7016
7016
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7017
7017
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7018
|
-
conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
7019
|
-
status: z.ZodString;
|
|
7020
7018
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
7021
7019
|
type: "commit" | "tag" | "branch";
|
|
7022
7020
|
name: string;
|
|
@@ -7034,11 +7032,13 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
7034
7032
|
name: string;
|
|
7035
7033
|
hash: string;
|
|
7036
7034
|
}>>>>;
|
|
7035
|
+
status: z.ZodString;
|
|
7037
7036
|
scheduledTriggerId: z.ZodString;
|
|
7038
7037
|
scheduledFor: z.ZodString;
|
|
7039
7038
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7040
7039
|
completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7041
|
-
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
7040
|
+
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
7041
|
+
conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
7042
7042
|
attemptNumber: z.ZodOptional<z.ZodInt>;
|
|
7043
7043
|
idempotencyKey: z.ZodString;
|
|
7044
7044
|
id: z.ZodString;
|
|
@@ -7047,8 +7047,6 @@ declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
7047
7047
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7048
7048
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7049
7049
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7050
|
-
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
|
|
7051
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7052
7050
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
7053
7051
|
type: "commit" | "tag" | "branch";
|
|
7054
7052
|
name: string;
|
|
@@ -7066,16 +7064,18 @@ declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
7066
7064
|
name: string;
|
|
7067
7065
|
hash: string;
|
|
7068
7066
|
}>>>>>>;
|
|
7067
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7069
7068
|
scheduledTriggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7070
7069
|
scheduledFor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7071
7070
|
startedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7072
7071
|
completedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7073
|
-
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
7072
|
+
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>>>;
|
|
7073
|
+
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
|
|
7074
7074
|
attemptNumber: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodInt>>>;
|
|
7075
7075
|
idempotencyKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7076
7076
|
}, z.core.$strip>;
|
|
7077
7077
|
type ScheduledTriggerInvocationStatus = z.infer<typeof ScheduledTriggerInvocationStatusEnum>;
|
|
7078
|
-
declare const SchedulerStateSelectSchema:
|
|
7078
|
+
declare const SchedulerStateSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
7079
7079
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
7080
7080
|
name: "created_at";
|
|
7081
7081
|
tableName: "scheduler_state";
|
|
@@ -7148,7 +7148,7 @@ declare const SchedulerStateSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
7148
7148
|
}, {}, {
|
|
7149
7149
|
length: 256;
|
|
7150
7150
|
}>;
|
|
7151
|
-
},
|
|
7151
|
+
}, drizzle_zod0.BuildRefine<{
|
|
7152
7152
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
7153
7153
|
name: "created_at";
|
|
7154
7154
|
tableName: "scheduler_state";
|
|
@@ -7300,10 +7300,9 @@ declare const TaskApiSelectSchema: z.ZodObject<{
|
|
|
7300
7300
|
id: z.ZodString;
|
|
7301
7301
|
createdAt: z.ZodString;
|
|
7302
7302
|
updatedAt: z.ZodString;
|
|
7303
|
-
agentId: z.ZodString;
|
|
7304
7303
|
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
7304
|
+
agentId: z.ZodString;
|
|
7305
7305
|
subAgentId: z.ZodString;
|
|
7306
|
-
status: z.ZodString;
|
|
7307
7306
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
7308
7307
|
type: z.ZodEnum<{
|
|
7309
7308
|
commit: "commit";
|
|
@@ -7313,16 +7312,16 @@ declare const TaskApiSelectSchema: z.ZodObject<{
|
|
|
7313
7312
|
name: z.ZodString;
|
|
7314
7313
|
hash: z.ZodString;
|
|
7315
7314
|
}, z.core.$strip>>>;
|
|
7315
|
+
status: z.ZodString;
|
|
7316
7316
|
contextId: z.ZodString;
|
|
7317
7317
|
}, z.core.$strip>;
|
|
7318
7318
|
declare const TaskApiInsertSchema: z.ZodObject<{
|
|
7319
7319
|
id: z.ZodString;
|
|
7320
7320
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7321
7321
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7322
|
-
agentId: z.ZodString;
|
|
7323
7322
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
7323
|
+
agentId: z.ZodString;
|
|
7324
7324
|
subAgentId: z.ZodString;
|
|
7325
|
-
status: z.ZodString;
|
|
7326
7325
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
7327
7326
|
ref: z.ZodObject<{
|
|
7328
7327
|
type: z.ZodEnum<{
|
|
@@ -7333,16 +7332,16 @@ declare const TaskApiInsertSchema: z.ZodObject<{
|
|
|
7333
7332
|
name: z.ZodString;
|
|
7334
7333
|
hash: z.ZodString;
|
|
7335
7334
|
}, z.core.$strip>;
|
|
7335
|
+
status: z.ZodString;
|
|
7336
7336
|
contextId: z.ZodString;
|
|
7337
7337
|
}, z.core.$strip>;
|
|
7338
7338
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
7339
7339
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7340
7340
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7341
7341
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7342
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7343
7342
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
7343
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7344
7344
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7345
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7346
7345
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7347
7346
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7348
7347
|
type: z.ZodEnum<{
|
|
@@ -7353,9 +7352,10 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
7353
7352
|
name: z.ZodString;
|
|
7354
7353
|
hash: z.ZodString;
|
|
7355
7354
|
}, z.core.$strip>>>;
|
|
7355
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7356
7356
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7357
7357
|
}, z.core.$strip>;
|
|
7358
|
-
declare const TaskRelationSelectSchema:
|
|
7358
|
+
declare const TaskRelationSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
7359
7359
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
7360
7360
|
name: "created_at";
|
|
7361
7361
|
tableName: "task_relations";
|
|
@@ -7504,7 +7504,7 @@ declare const TaskRelationSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
7504
7504
|
}, {}, {
|
|
7505
7505
|
length: 256;
|
|
7506
7506
|
}>;
|
|
7507
|
-
},
|
|
7507
|
+
}, drizzle_zod0.BuildRefine<{
|
|
7508
7508
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
7509
7509
|
name: "created_at";
|
|
7510
7510
|
tableName: "task_relations";
|
|
@@ -7726,7 +7726,7 @@ declare const McpToolDefinitionSchema: z.ZodObject<{
|
|
|
7726
7726
|
description: z.ZodOptional<z.ZodString>;
|
|
7727
7727
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7728
7728
|
}, z.core.$strip>;
|
|
7729
|
-
declare const ToolSelectSchema:
|
|
7729
|
+
declare const ToolSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
7730
7730
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
7731
7731
|
name: "created_at";
|
|
7732
7732
|
tableName: "tools";
|
|
@@ -8006,7 +8006,7 @@ declare const ToolSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
8006
8006
|
}, {}, {
|
|
8007
8007
|
length: 256;
|
|
8008
8008
|
}>;
|
|
8009
|
-
},
|
|
8009
|
+
}, drizzle_zod0.BuildRefine<{
|
|
8010
8010
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
8011
8011
|
name: "created_at";
|
|
8012
8012
|
tableName: "tools";
|
|
@@ -8294,7 +8294,6 @@ declare const ToolInsertSchema: z.ZodObject<{
|
|
|
8294
8294
|
tenantId: z.ZodString;
|
|
8295
8295
|
projectId: z.ZodString;
|
|
8296
8296
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
8297
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8298
8297
|
config: z.ZodObject<{
|
|
8299
8298
|
type: z.ZodLiteral<"mcp">;
|
|
8300
8299
|
mcp: z.ZodObject<{
|
|
@@ -8321,6 +8320,7 @@ declare const ToolInsertSchema: z.ZodObject<{
|
|
|
8321
8320
|
prompt: z.ZodOptional<z.ZodString>;
|
|
8322
8321
|
}, z.core.$strip>;
|
|
8323
8322
|
}, z.core.$strip>;
|
|
8323
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8324
8324
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
8325
8325
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
8326
8326
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -8419,9 +8419,9 @@ declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
|
8419
8419
|
title: z.ZodNullable<z.ZodString>;
|
|
8420
8420
|
createdAt: z.ZodString;
|
|
8421
8421
|
updatedAt: z.ZodString;
|
|
8422
|
+
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
8422
8423
|
agentId: z.ZodNullable<z.ZodString>;
|
|
8423
8424
|
userId: z.ZodNullable<z.ZodString>;
|
|
8424
|
-
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
8425
8425
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
8426
8426
|
type: z.ZodEnum<{
|
|
8427
8427
|
commit: "commit";
|
|
@@ -8442,9 +8442,9 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
8442
8442
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8443
8443
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8444
8444
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
8445
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
8445
8446
|
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8446
8447
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8447
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
8448
8448
|
ref: z.ZodObject<{
|
|
8449
8449
|
type: z.ZodEnum<{
|
|
8450
8450
|
commit: "commit";
|
|
@@ -8465,9 +8465,9 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
8465
8465
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8466
8466
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8467
8467
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8468
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
8468
8469
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8469
8470
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8470
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
8471
8471
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
8472
8472
|
type: z.ZodEnum<{
|
|
8473
8473
|
commit: "commit";
|
|
@@ -8570,8 +8570,8 @@ declare const MessageApiSelectSchema: z.ZodObject<{
|
|
|
8570
8570
|
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8571
8571
|
createdAt: z.ZodString;
|
|
8572
8572
|
updatedAt: z.ZodString;
|
|
8573
|
-
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8574
8573
|
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
8574
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8575
8575
|
fromSubAgentId: z.ZodNullable<z.ZodString>;
|
|
8576
8576
|
toSubAgentId: z.ZodNullable<z.ZodString>;
|
|
8577
8577
|
fromExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -8593,8 +8593,8 @@ declare const MessageApiInsertSchema: z.ZodObject<{
|
|
|
8593
8593
|
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8594
8594
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8595
8595
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8596
|
-
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8597
8596
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
8597
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8598
8598
|
fromSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8599
8599
|
toSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8600
8600
|
fromExternalAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8616,8 +8616,8 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
8616
8616
|
properties: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
8617
8617
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8618
8618
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8619
|
-
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8620
8619
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
8620
|
+
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8621
8621
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8622
8622
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8623
8623
|
fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -8634,7 +8634,7 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
8634
8634
|
parentMessageId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8635
8635
|
a2aSessionId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8636
8636
|
}, z.core.$strip>;
|
|
8637
|
-
declare const FeedbackSelectSchema:
|
|
8637
|
+
declare const FeedbackSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
8638
8638
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
8639
8639
|
name: "created_at";
|
|
8640
8640
|
tableName: "feedback";
|
|
@@ -8801,7 +8801,7 @@ declare const FeedbackSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
8801
8801
|
}, {}, {
|
|
8802
8802
|
length: 256;
|
|
8803
8803
|
}>;
|
|
8804
|
-
},
|
|
8804
|
+
}, drizzle_zod0.BuildRefine<{
|
|
8805
8805
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
8806
8806
|
name: "created_at";
|
|
8807
8807
|
tableName: "feedback";
|
|
@@ -9063,7 +9063,7 @@ declare const WebhookFeedbackDataSchema: z.ZodObject<{
|
|
|
9063
9063
|
}, z.core.$strip>>;
|
|
9064
9064
|
}, z.core.$strip>;
|
|
9065
9065
|
}, z.core.$strip>;
|
|
9066
|
-
declare const EventSelectSchema:
|
|
9066
|
+
declare const EventSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
9067
9067
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
9068
9068
|
name: "created_at";
|
|
9069
9069
|
tableName: "events";
|
|
@@ -9313,7 +9313,7 @@ declare const EventSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
9313
9313
|
}, {}, {
|
|
9314
9314
|
length: 256;
|
|
9315
9315
|
}>;
|
|
9316
|
-
},
|
|
9316
|
+
}, drizzle_zod0.BuildRefine<{
|
|
9317
9317
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
9318
9318
|
name: "created_at";
|
|
9319
9319
|
tableName: "events";
|
|
@@ -9587,15 +9587,15 @@ declare const EventInsertSchema: z.ZodObject<{
|
|
|
9587
9587
|
declare const EventApiSelectSchema: z.ZodObject<{
|
|
9588
9588
|
type: z.ZodString;
|
|
9589
9589
|
id: z.ZodString;
|
|
9590
|
-
properties: z.ZodNullable<z.ZodType<
|
|
9590
|
+
properties: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
9591
9591
|
createdAt: z.ZodString;
|
|
9592
9592
|
updatedAt: z.ZodString;
|
|
9593
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
9593
9594
|
agentId: z.ZodNullable<z.ZodString>;
|
|
9594
|
-
metadata: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
9595
9595
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
9596
|
-
userProperties: z.ZodNullable<z.ZodType<
|
|
9596
|
+
userProperties: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
9597
9597
|
messageId: z.ZodNullable<z.ZodString>;
|
|
9598
|
-
serverMetadata: z.ZodNullable<z.ZodType<
|
|
9598
|
+
serverMetadata: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
9599
9599
|
}, z.core.$strip>;
|
|
9600
9600
|
declare const EventApiInsertSchema: z.ZodObject<{
|
|
9601
9601
|
type: z.ZodString;
|
|
@@ -9611,15 +9611,15 @@ declare const WebhookEventCreatedDataSchema: z.ZodObject<{
|
|
|
9611
9611
|
event: z.ZodObject<{
|
|
9612
9612
|
type: z.ZodString;
|
|
9613
9613
|
id: z.ZodString;
|
|
9614
|
-
properties: z.ZodNullable<z.ZodType<
|
|
9614
|
+
properties: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
9615
9615
|
createdAt: z.ZodString;
|
|
9616
9616
|
updatedAt: z.ZodString;
|
|
9617
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
9617
9618
|
agentId: z.ZodNullable<z.ZodString>;
|
|
9618
|
-
metadata: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
9619
9619
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
9620
|
-
userProperties: z.ZodNullable<z.ZodType<
|
|
9620
|
+
userProperties: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
9621
9621
|
messageId: z.ZodNullable<z.ZodString>;
|
|
9622
|
-
serverMetadata: z.ZodNullable<z.ZodType<
|
|
9622
|
+
serverMetadata: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
9623
9623
|
}, z.core.$strip>;
|
|
9624
9624
|
}, z.core.$strip>;
|
|
9625
9625
|
declare const ContextCacheSelectSchema: z.ZodObject<{
|
|
@@ -9628,7 +9628,7 @@ declare const ContextCacheSelectSchema: z.ZodObject<{
|
|
|
9628
9628
|
conversationId: z.ZodString;
|
|
9629
9629
|
contextConfigId: z.ZodString;
|
|
9630
9630
|
contextVariableKey: z.ZodString;
|
|
9631
|
-
value: z.ZodType<
|
|
9631
|
+
value: z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>;
|
|
9632
9632
|
requestHash: z.ZodNullable<z.ZodString>;
|
|
9633
9633
|
fetchedAt: z.ZodString;
|
|
9634
9634
|
fetchSource: z.ZodNullable<z.ZodString>;
|
|
@@ -9654,7 +9654,7 @@ declare const ContextCacheInsertSchema: z.ZodObject<{
|
|
|
9654
9654
|
conversationId: z.ZodString;
|
|
9655
9655
|
contextConfigId: z.ZodString;
|
|
9656
9656
|
contextVariableKey: z.ZodString;
|
|
9657
|
-
value: z.ZodType<
|
|
9657
|
+
value: z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>;
|
|
9658
9658
|
requestHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9659
9659
|
fetchedAt: z.ZodOptional<z.ZodString>;
|
|
9660
9660
|
fetchSource: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -9680,7 +9680,7 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
9680
9680
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
9681
9681
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
9682
9682
|
contextVariableKey: z.ZodOptional<z.ZodString>;
|
|
9683
|
-
value: z.ZodOptional<z.ZodType<
|
|
9683
|
+
value: z.ZodOptional<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
9684
9684
|
requestHash: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
9685
9685
|
fetchedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9686
9686
|
fetchSource: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -9702,7 +9702,7 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
9702
9702
|
}>;
|
|
9703
9703
|
declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
9704
9704
|
id: z.ZodString;
|
|
9705
|
-
value: z.ZodType<
|
|
9705
|
+
value: z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>;
|
|
9706
9706
|
createdAt: z.ZodString;
|
|
9707
9707
|
updatedAt: z.ZodString;
|
|
9708
9708
|
contextConfigId: z.ZodString;
|
|
@@ -9723,7 +9723,7 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
9723
9723
|
}, z.core.$strip>;
|
|
9724
9724
|
declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
9725
9725
|
id: z.ZodString;
|
|
9726
|
-
value: z.ZodType<
|
|
9726
|
+
value: z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>;
|
|
9727
9727
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9728
9728
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9729
9729
|
contextConfigId: z.ZodString;
|
|
@@ -9744,7 +9744,7 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
9744
9744
|
}, z.core.$strip>;
|
|
9745
9745
|
declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
9746
9746
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9747
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<
|
|
9747
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
9748
9748
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9749
9749
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9750
9750
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -9849,9 +9849,6 @@ declare const DatasetRunApiSelectSchema: z.ZodObject<{
|
|
|
9849
9849
|
id: z.ZodString;
|
|
9850
9850
|
createdAt: z.ZodString;
|
|
9851
9851
|
updatedAt: z.ZodString;
|
|
9852
|
-
datasetId: z.ZodString;
|
|
9853
|
-
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
9854
|
-
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
9855
9852
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
9856
9853
|
type: z.ZodEnum<{
|
|
9857
9854
|
commit: "commit";
|
|
@@ -9861,13 +9858,13 @@ declare const DatasetRunApiSelectSchema: z.ZodObject<{
|
|
|
9861
9858
|
name: z.ZodString;
|
|
9862
9859
|
hash: z.ZodString;
|
|
9863
9860
|
}, z.core.$strip>>>;
|
|
9861
|
+
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
9862
|
+
datasetId: z.ZodString;
|
|
9863
|
+
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
9864
9864
|
}, z.core.$strip>;
|
|
9865
9865
|
declare const DatasetRunApiInsertSchema: z.ZodObject<{
|
|
9866
9866
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9867
9867
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9868
|
-
datasetId: z.ZodString;
|
|
9869
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9870
|
-
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9871
9868
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
9872
9869
|
type: "commit" | "tag" | "branch";
|
|
9873
9870
|
name: string;
|
|
@@ -9885,13 +9882,13 @@ declare const DatasetRunApiInsertSchema: z.ZodObject<{
|
|
|
9885
9882
|
name: string;
|
|
9886
9883
|
hash: string;
|
|
9887
9884
|
}>>>>;
|
|
9885
|
+
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9886
|
+
datasetId: z.ZodString;
|
|
9887
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9888
9888
|
}, z.core.$strip>;
|
|
9889
9889
|
declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
9890
9890
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9891
9891
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9892
|
-
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9893
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9894
|
-
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9895
9892
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
9896
9893
|
type: "commit" | "tag" | "branch";
|
|
9897
9894
|
name: string;
|
|
@@ -9909,8 +9906,11 @@ declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
|
9909
9906
|
name: string;
|
|
9910
9907
|
hash: string;
|
|
9911
9908
|
}>>>>>>;
|
|
9909
|
+
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9910
|
+
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9911
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9912
9912
|
}, z.core.$strip>;
|
|
9913
|
-
declare const DatasetRunConversationRelationSelectSchema:
|
|
9913
|
+
declare const DatasetRunConversationRelationSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
9914
9914
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
9915
9915
|
name: "created_at";
|
|
9916
9916
|
tableName: "dataset_run_conversation_relations";
|
|
@@ -10053,7 +10053,7 @@ declare const DatasetRunConversationRelationSelectSchema: drizzle_zod3.BuildSche
|
|
|
10053
10053
|
}, {}, {
|
|
10054
10054
|
length: 256;
|
|
10055
10055
|
}>;
|
|
10056
|
-
},
|
|
10056
|
+
}, drizzle_zod0.BuildRefine<{
|
|
10057
10057
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
10058
10058
|
name: "created_at";
|
|
10059
10059
|
tableName: "dataset_run_conversation_relations";
|
|
@@ -10245,7 +10245,7 @@ declare const DatasetRunConversationRelationApiUpdateSchema: z.ZodObject<{
|
|
|
10245
10245
|
datasetRunId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10246
10246
|
datasetItemId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10247
10247
|
}, z.core.$strip>;
|
|
10248
|
-
declare const EvaluationResultSelectSchema:
|
|
10248
|
+
declare const EvaluationResultSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
10249
10249
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
10250
10250
|
name: "created_at";
|
|
10251
10251
|
tableName: "evaluation_result";
|
|
@@ -10407,7 +10407,7 @@ declare const EvaluationResultSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
10407
10407
|
}, {}, {
|
|
10408
10408
|
length: 256;
|
|
10409
10409
|
}>;
|
|
10410
|
-
},
|
|
10410
|
+
}, drizzle_zod0.BuildRefine<{
|
|
10411
10411
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
10412
10412
|
name: "created_at";
|
|
10413
10413
|
tableName: "evaluation_result";
|
|
@@ -10603,24 +10603,24 @@ declare const EvaluationResultApiSelectSchema: z.ZodObject<{
|
|
|
10603
10603
|
id: z.ZodString;
|
|
10604
10604
|
createdAt: z.ZodString;
|
|
10605
10605
|
updatedAt: z.ZodString;
|
|
10606
|
-
evaluatorId: z.ZodString;
|
|
10607
10606
|
conversationId: z.ZodString;
|
|
10607
|
+
evaluatorId: z.ZodString;
|
|
10608
10608
|
evaluationRunId: z.ZodNullable<z.ZodString>;
|
|
10609
10609
|
}, z.core.$strip>;
|
|
10610
10610
|
declare const EvaluationResultApiInsertSchema: z.ZodObject<{
|
|
10611
10611
|
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
10612
10612
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10613
10613
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10614
|
-
evaluatorId: z.ZodString;
|
|
10615
10614
|
conversationId: z.ZodString;
|
|
10615
|
+
evaluatorId: z.ZodString;
|
|
10616
10616
|
evaluationRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10617
10617
|
}, z.core.$strip>;
|
|
10618
10618
|
declare const EvaluationResultApiUpdateSchema: z.ZodObject<{
|
|
10619
10619
|
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
10620
10620
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10621
10621
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10622
|
-
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10623
10622
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10623
|
+
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10624
10624
|
evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10625
10625
|
}, z.core.$strip>;
|
|
10626
10626
|
declare const EvaluationRunSelectSchema: z.ZodObject<{
|
|
@@ -10706,8 +10706,6 @@ declare const EvaluationRunApiSelectSchema: z.ZodObject<{
|
|
|
10706
10706
|
id: z.ZodString;
|
|
10707
10707
|
createdAt: z.ZodString;
|
|
10708
10708
|
updatedAt: z.ZodString;
|
|
10709
|
-
evaluationRunConfigId: z.ZodNullable<z.ZodString>;
|
|
10710
|
-
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
10711
10709
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
10712
10710
|
type: z.ZodEnum<{
|
|
10713
10711
|
commit: "commit";
|
|
@@ -10717,12 +10715,12 @@ declare const EvaluationRunApiSelectSchema: z.ZodObject<{
|
|
|
10717
10715
|
name: z.ZodString;
|
|
10718
10716
|
hash: z.ZodString;
|
|
10719
10717
|
}, z.core.$strip>>>;
|
|
10718
|
+
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
10719
|
+
evaluationRunConfigId: z.ZodNullable<z.ZodString>;
|
|
10720
10720
|
}, z.core.$strip>;
|
|
10721
10721
|
declare const EvaluationRunApiInsertSchema: z.ZodObject<{
|
|
10722
10722
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10723
10723
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10724
|
-
evaluationRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10725
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10726
10724
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
10727
10725
|
type: "commit" | "tag" | "branch";
|
|
10728
10726
|
name: string;
|
|
@@ -10740,12 +10738,12 @@ declare const EvaluationRunApiInsertSchema: z.ZodObject<{
|
|
|
10740
10738
|
name: string;
|
|
10741
10739
|
hash: string;
|
|
10742
10740
|
}>>>>;
|
|
10741
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10742
|
+
evaluationRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10743
10743
|
}, z.core.$strip>;
|
|
10744
10744
|
declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
10745
10745
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10746
10746
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10747
|
-
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10748
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10749
10747
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
10750
10748
|
type: "commit" | "tag" | "branch";
|
|
10751
10749
|
name: string;
|
|
@@ -10763,8 +10761,10 @@ declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
|
10763
10761
|
name: string;
|
|
10764
10762
|
hash: string;
|
|
10765
10763
|
}>>>>>>;
|
|
10764
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10765
|
+
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10766
10766
|
}, z.core.$strip>;
|
|
10767
|
-
declare const EvaluationRunConfigSelectSchema:
|
|
10767
|
+
declare const EvaluationRunConfigSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
10768
10768
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
10769
10769
|
name: "created_at";
|
|
10770
10770
|
tableName: "evaluation_run_config";
|
|
@@ -10909,7 +10909,7 @@ declare const EvaluationRunConfigSelectSchema: drizzle_zod3.BuildSchema<"select"
|
|
|
10909
10909
|
}, {}, {
|
|
10910
10910
|
length: 256;
|
|
10911
10911
|
}>;
|
|
10912
|
-
},
|
|
10912
|
+
}, drizzle_zod0.BuildRefine<{
|
|
10913
10913
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
10914
10914
|
name: "created_at";
|
|
10915
10915
|
tableName: "evaluation_run_config";
|
|
@@ -11114,7 +11114,7 @@ declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
|
11114
11114
|
isActive: z.ZodBoolean;
|
|
11115
11115
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
11116
11116
|
}, z.core.$strip>;
|
|
11117
|
-
declare const EvaluationJobConfigSelectSchema:
|
|
11117
|
+
declare const EvaluationJobConfigSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
11118
11118
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
11119
11119
|
name: "created_at";
|
|
11120
11120
|
tableName: "evaluation_job_config";
|
|
@@ -11239,7 +11239,7 @@ declare const EvaluationJobConfigSelectSchema: drizzle_zod3.BuildSchema<"select"
|
|
|
11239
11239
|
}, {}, {
|
|
11240
11240
|
length: 256;
|
|
11241
11241
|
}>;
|
|
11242
|
-
},
|
|
11242
|
+
}, drizzle_zod0.BuildRefine<{
|
|
11243
11243
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
11244
11244
|
name: "created_at";
|
|
11245
11245
|
tableName: "evaluation_job_config";
|
|
@@ -11544,7 +11544,7 @@ declare const EvaluationJobConfigApiUpdateSchema: z.ZodObject<{
|
|
|
11544
11544
|
} | undefined;
|
|
11545
11545
|
}>>>>>>>;
|
|
11546
11546
|
}, z.core.$strip>;
|
|
11547
|
-
declare const EvaluationSuiteConfigSelectSchema:
|
|
11547
|
+
declare const EvaluationSuiteConfigSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
11548
11548
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
11549
11549
|
name: "created_at";
|
|
11550
11550
|
tableName: "evaluation_suite_config";
|
|
@@ -11672,7 +11672,7 @@ declare const EvaluationSuiteConfigSelectSchema: drizzle_zod3.BuildSchema<"selec
|
|
|
11672
11672
|
}, {}, {
|
|
11673
11673
|
length: 256;
|
|
11674
11674
|
}>;
|
|
11675
|
-
},
|
|
11675
|
+
}, drizzle_zod0.BuildRefine<{
|
|
11676
11676
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
11677
11677
|
name: "created_at";
|
|
11678
11678
|
tableName: "evaluation_suite_config";
|
|
@@ -11846,7 +11846,7 @@ declare const EvaluationSuiteConfigApiUpdateSchema: z.ZodObject<{
|
|
|
11846
11846
|
sampleRate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>>;
|
|
11847
11847
|
evaluatorIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11848
11848
|
}, z.core.$strip>;
|
|
11849
|
-
declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema:
|
|
11849
|
+
declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
11850
11850
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
11851
11851
|
name: "created_at";
|
|
11852
11852
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
@@ -11976,7 +11976,7 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: driz
|
|
|
11976
11976
|
}, {}, {
|
|
11977
11977
|
length: 256;
|
|
11978
11978
|
}>;
|
|
11979
|
-
},
|
|
11979
|
+
}, drizzle_zod0.BuildRefine<{
|
|
11980
11980
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
11981
11981
|
name: "created_at";
|
|
11982
11982
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
@@ -12135,22 +12135,22 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiSelectSchema: z
|
|
|
12135
12135
|
id: z.ZodString;
|
|
12136
12136
|
createdAt: z.ZodString;
|
|
12137
12137
|
updatedAt: z.ZodString;
|
|
12138
|
-
evaluationSuiteConfigId: z.ZodString;
|
|
12139
12138
|
evaluationRunConfigId: z.ZodString;
|
|
12139
|
+
evaluationSuiteConfigId: z.ZodString;
|
|
12140
12140
|
}, z.core.$strip>;
|
|
12141
12141
|
declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiInsertSchema: z.ZodObject<{
|
|
12142
12142
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12143
12143
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12144
|
-
evaluationSuiteConfigId: z.ZodString;
|
|
12145
12144
|
evaluationRunConfigId: z.ZodString;
|
|
12145
|
+
evaluationSuiteConfigId: z.ZodString;
|
|
12146
12146
|
}, z.core.$strip>;
|
|
12147
12147
|
declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiUpdateSchema: z.ZodObject<{
|
|
12148
12148
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12149
12149
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12150
|
-
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12151
12150
|
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12151
|
+
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12152
12152
|
}, z.core.$strip>;
|
|
12153
|
-
declare const EvaluationJobConfigEvaluatorRelationSelectSchema:
|
|
12153
|
+
declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
12154
12154
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
12155
12155
|
name: "created_at";
|
|
12156
12156
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
@@ -12280,7 +12280,7 @@ declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod3.Bui
|
|
|
12280
12280
|
}, {}, {
|
|
12281
12281
|
length: 256;
|
|
12282
12282
|
}>;
|
|
12283
|
-
},
|
|
12283
|
+
}, drizzle_zod0.BuildRefine<{
|
|
12284
12284
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
12285
12285
|
name: "created_at";
|
|
12286
12286
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
@@ -12439,22 +12439,22 @@ declare const EvaluationJobConfigEvaluatorRelationApiSelectSchema: z.ZodObject<{
|
|
|
12439
12439
|
id: z.ZodString;
|
|
12440
12440
|
createdAt: z.ZodString;
|
|
12441
12441
|
updatedAt: z.ZodString;
|
|
12442
|
-
evaluatorId: z.ZodString;
|
|
12443
12442
|
evaluationJobConfigId: z.ZodString;
|
|
12443
|
+
evaluatorId: z.ZodString;
|
|
12444
12444
|
}, z.core.$strip>;
|
|
12445
12445
|
declare const EvaluationJobConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
12446
12446
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12447
12447
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12448
|
-
evaluatorId: z.ZodString;
|
|
12449
12448
|
evaluationJobConfigId: z.ZodString;
|
|
12449
|
+
evaluatorId: z.ZodString;
|
|
12450
12450
|
}, z.core.$strip>;
|
|
12451
12451
|
declare const EvaluationJobConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
|
|
12452
12452
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12453
12453
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12454
|
-
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12455
12454
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12455
|
+
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12456
12456
|
}, z.core.$strip>;
|
|
12457
|
-
declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema:
|
|
12457
|
+
declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
12458
12458
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
12459
12459
|
name: "created_at";
|
|
12460
12460
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
@@ -12584,7 +12584,7 @@ declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod3.B
|
|
|
12584
12584
|
}, {}, {
|
|
12585
12585
|
length: 256;
|
|
12586
12586
|
}>;
|
|
12587
|
-
},
|
|
12587
|
+
}, drizzle_zod0.BuildRefine<{
|
|
12588
12588
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
12589
12589
|
name: "created_at";
|
|
12590
12590
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
@@ -12758,7 +12758,7 @@ declare const EvaluationSuiteConfigEvaluatorRelationApiUpdateSchema: z.ZodObject
|
|
|
12758
12758
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12759
12759
|
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12760
12760
|
}, z.core.$strip>;
|
|
12761
|
-
declare const EvaluatorSelectSchema:
|
|
12761
|
+
declare const EvaluatorSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
12762
12762
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
12763
12763
|
name: "created_at";
|
|
12764
12764
|
tableName: "evaluator";
|
|
@@ -12970,7 +12970,7 @@ declare const EvaluatorSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
12970
12970
|
}, {}, {
|
|
12971
12971
|
length: 256;
|
|
12972
12972
|
}>;
|
|
12973
|
-
},
|
|
12973
|
+
}, drizzle_zod0.BuildRefine<{
|
|
12974
12974
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
12975
12975
|
name: "created_at";
|
|
12976
12976
|
tableName: "evaluator";
|
|
@@ -13282,8 +13282,8 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<{
|
|
|
13282
13282
|
}>>;
|
|
13283
13283
|
createdAt: z.ZodString;
|
|
13284
13284
|
updatedAt: z.ZodString;
|
|
13285
|
-
prompt: z.ZodString;
|
|
13286
13285
|
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
13286
|
+
prompt: z.ZodString;
|
|
13287
13287
|
passCriteria: z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>;
|
|
13288
13288
|
}, z.core.$strip>;
|
|
13289
13289
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
@@ -13312,8 +13312,8 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
13312
13312
|
}>>;
|
|
13313
13313
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13314
13314
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13315
|
-
prompt: z.ZodString;
|
|
13316
13315
|
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
13316
|
+
prompt: z.ZodString;
|
|
13317
13317
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, any, any>>>;
|
|
13318
13318
|
}, z.core.$strip>;
|
|
13319
13319
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
@@ -13342,11 +13342,11 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
13342
13342
|
}>>>>;
|
|
13343
13343
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13344
13344
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13345
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13346
13345
|
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
13346
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13347
13347
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, any, any>>>>>;
|
|
13348
13348
|
}, z.core.$strip>;
|
|
13349
|
-
declare const DatasetSelectSchema:
|
|
13349
|
+
declare const DatasetSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
13350
13350
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
13351
13351
|
name: "created_at";
|
|
13352
13352
|
tableName: "dataset";
|
|
@@ -13457,7 +13457,7 @@ declare const DatasetSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
13457
13457
|
}, {}, {
|
|
13458
13458
|
length: 256;
|
|
13459
13459
|
}>;
|
|
13460
|
-
},
|
|
13460
|
+
}, drizzle_zod0.BuildRefine<{
|
|
13461
13461
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
13462
13462
|
name: "created_at";
|
|
13463
13463
|
tableName: "dataset";
|
|
@@ -13607,7 +13607,7 @@ declare const DatasetApiUpdateSchema: z.ZodObject<{
|
|
|
13607
13607
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13608
13608
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13609
13609
|
}, z.core.$strip>;
|
|
13610
|
-
declare const DatasetItemSelectSchema:
|
|
13610
|
+
declare const DatasetItemSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
13611
13611
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
13612
13612
|
name: "created_at";
|
|
13613
13613
|
tableName: "dataset_item";
|
|
@@ -13756,7 +13756,7 @@ declare const DatasetItemSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
13756
13756
|
}, {}, {
|
|
13757
13757
|
length: 256;
|
|
13758
13758
|
}>;
|
|
13759
|
-
},
|
|
13759
|
+
}, drizzle_zod0.BuildRefine<{
|
|
13760
13760
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
13761
13761
|
name: "created_at";
|
|
13762
13762
|
tableName: "dataset_item";
|
|
@@ -13988,7 +13988,7 @@ declare const TriggerEvaluationJobSchema: z.ZodObject<{
|
|
|
13988
13988
|
}, z.core.$strip>>;
|
|
13989
13989
|
}, z.core.$strip>>>;
|
|
13990
13990
|
}, z.core.$strip>;
|
|
13991
|
-
declare const DatasetRunConfigSelectSchema:
|
|
13991
|
+
declare const DatasetRunConfigSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
13992
13992
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
13993
13993
|
name: "created_at";
|
|
13994
13994
|
tableName: "dataset_run_config";
|
|
@@ -14152,7 +14152,7 @@ declare const DatasetRunConfigSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
14152
14152
|
}, {}, {
|
|
14153
14153
|
length: 256;
|
|
14154
14154
|
}>;
|
|
14155
|
-
},
|
|
14155
|
+
}, drizzle_zod0.BuildRefine<{
|
|
14156
14156
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
14157
14157
|
name: "created_at";
|
|
14158
14158
|
tableName: "dataset_run_config";
|
|
@@ -14370,7 +14370,7 @@ declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
|
14370
14370
|
dispatchDelayMs: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodInt>>>>;
|
|
14371
14371
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14372
14372
|
}, z.core.$strip>;
|
|
14373
|
-
declare const AgentDatasetRelationSelectSchema:
|
|
14373
|
+
declare const AgentDatasetRelationSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
14374
14374
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
14375
14375
|
name: "created_at";
|
|
14376
14376
|
tableName: "agent_dataset_relations";
|
|
@@ -14500,7 +14500,7 @@ declare const AgentDatasetRelationSelectSchema: drizzle_zod3.BuildSchema<"select
|
|
|
14500
14500
|
}, {}, {
|
|
14501
14501
|
length: 256;
|
|
14502
14502
|
}>;
|
|
14503
|
-
},
|
|
14503
|
+
}, drizzle_zod0.BuildRefine<{
|
|
14504
14504
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
14505
14505
|
name: "created_at";
|
|
14506
14506
|
tableName: "agent_dataset_relations";
|
|
@@ -14668,7 +14668,7 @@ declare const AgentDatasetRelationApiInsertSchema: z.ZodObject<{
|
|
|
14668
14668
|
agentId: z.ZodString;
|
|
14669
14669
|
datasetId: z.ZodString;
|
|
14670
14670
|
}, z.core.$strip>;
|
|
14671
|
-
declare const AgentEvaluatorRelationSelectSchema:
|
|
14671
|
+
declare const AgentEvaluatorRelationSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
14672
14672
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
14673
14673
|
name: "created_at";
|
|
14674
14674
|
tableName: "agent_evaluator_relations";
|
|
@@ -14798,7 +14798,7 @@ declare const AgentEvaluatorRelationSelectSchema: drizzle_zod3.BuildSchema<"sele
|
|
|
14798
14798
|
}, {}, {
|
|
14799
14799
|
length: 256;
|
|
14800
14800
|
}>;
|
|
14801
|
-
},
|
|
14801
|
+
}, drizzle_zod0.BuildRefine<{
|
|
14802
14802
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
14803
14803
|
name: "created_at";
|
|
14804
14804
|
tableName: "agent_evaluator_relations";
|
|
@@ -14966,7 +14966,7 @@ declare const AgentEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
|
14966
14966
|
agentId: z.ZodString;
|
|
14967
14967
|
evaluatorId: z.ZodString;
|
|
14968
14968
|
}, z.core.$strip>;
|
|
14969
|
-
declare const DatasetRunConfigAgentRelationSelectSchema:
|
|
14969
|
+
declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
14970
14970
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
14971
14971
|
name: "created_at";
|
|
14972
14972
|
tableName: "dataset_run_config_agent_relations";
|
|
@@ -15096,7 +15096,7 @@ declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod3.BuildSchem
|
|
|
15096
15096
|
}, {}, {
|
|
15097
15097
|
length: 256;
|
|
15098
15098
|
}>;
|
|
15099
|
-
},
|
|
15099
|
+
}, drizzle_zod0.BuildRefine<{
|
|
15100
15100
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
15101
15101
|
name: "created_at";
|
|
15102
15102
|
tableName: "dataset_run_config_agent_relations";
|
|
@@ -15251,7 +15251,7 @@ declare const DatasetRunConfigAgentRelationUpdateSchema: z.ZodObject<{
|
|
|
15251
15251
|
out: {};
|
|
15252
15252
|
in: {};
|
|
15253
15253
|
}>;
|
|
15254
|
-
declare const DatasetRunConfigEvaluatorRelationSelectSchema:
|
|
15254
|
+
declare const DatasetRunConfigEvaluatorRelationSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
15255
15255
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
15256
15256
|
name: "created_at";
|
|
15257
15257
|
tableName: "dataset_run_config_evaluator_relations";
|
|
@@ -15381,7 +15381,7 @@ declare const DatasetRunConfigEvaluatorRelationSelectSchema: drizzle_zod3.BuildS
|
|
|
15381
15381
|
}, {}, {
|
|
15382
15382
|
length: 256;
|
|
15383
15383
|
}>;
|
|
15384
|
-
},
|
|
15384
|
+
}, drizzle_zod0.BuildRefine<{
|
|
15385
15385
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
15386
15386
|
name: "created_at";
|
|
15387
15387
|
tableName: "dataset_run_config_evaluator_relations";
|
|
@@ -15536,7 +15536,7 @@ declare const DatasetRunConfigEvaluatorRelationUpdateSchema: z.ZodObject<{
|
|
|
15536
15536
|
out: {};
|
|
15537
15537
|
in: {};
|
|
15538
15538
|
}>;
|
|
15539
|
-
declare const DataComponentSelectSchema:
|
|
15539
|
+
declare const DataComponentSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
15540
15540
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
15541
15541
|
name: "created_at";
|
|
15542
15542
|
tableName: "data_components";
|
|
@@ -15722,7 +15722,7 @@ declare const DataComponentSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
15722
15722
|
}, {}, {
|
|
15723
15723
|
length: 256;
|
|
15724
15724
|
}>;
|
|
15725
|
-
},
|
|
15725
|
+
}, drizzle_zod0.BuildRefine<{
|
|
15726
15726
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
15727
15727
|
name: "created_at";
|
|
15728
15728
|
tableName: "data_components";
|
|
@@ -16112,7 +16112,7 @@ declare const DataComponentApiUpdateSchema: z.ZodObject<{
|
|
|
16112
16112
|
description: z.ZodOptional<z.ZodString>;
|
|
16113
16113
|
}, z.core.$loose>>;
|
|
16114
16114
|
}, z.core.$strip>;
|
|
16115
|
-
declare const SubAgentDataComponentSelectSchema:
|
|
16115
|
+
declare const SubAgentDataComponentSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
16116
16116
|
dataComponentId: drizzle_orm_pg_core0.PgColumn<{
|
|
16117
16117
|
name: "data_component_id";
|
|
16118
16118
|
tableName: "sub_agent_data_components";
|
|
@@ -16244,7 +16244,7 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod3.BuildSchema<"selec
|
|
|
16244
16244
|
}, {}, {
|
|
16245
16245
|
length: 256;
|
|
16246
16246
|
}>;
|
|
16247
|
-
},
|
|
16247
|
+
}, drizzle_zod0.BuildRefine<{
|
|
16248
16248
|
dataComponentId: drizzle_orm_pg_core0.PgColumn<{
|
|
16249
16249
|
name: "data_component_id";
|
|
16250
16250
|
tableName: "sub_agent_data_components";
|
|
@@ -16377,7 +16377,7 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod3.BuildSchema<"selec
|
|
|
16377
16377
|
length: 256;
|
|
16378
16378
|
}>;
|
|
16379
16379
|
}, undefined>, undefined>;
|
|
16380
|
-
declare const SubAgentDataComponentInsertSchema:
|
|
16380
|
+
declare const SubAgentDataComponentInsertSchema: drizzle_zod0.BuildSchema<"insert", {
|
|
16381
16381
|
dataComponentId: drizzle_orm_pg_core0.PgColumn<{
|
|
16382
16382
|
name: "data_component_id";
|
|
16383
16383
|
tableName: "sub_agent_data_components";
|
|
@@ -16509,7 +16509,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod3.BuildSchema<"inser
|
|
|
16509
16509
|
}, {}, {
|
|
16510
16510
|
length: 256;
|
|
16511
16511
|
}>;
|
|
16512
|
-
},
|
|
16512
|
+
}, drizzle_zod0.BuildRefine<Pick<{
|
|
16513
16513
|
dataComponentId: drizzle_orm_pg_core0.PgColumn<{
|
|
16514
16514
|
name: "data_component_id";
|
|
16515
16515
|
tableName: "sub_agent_data_components";
|
|
@@ -16674,7 +16674,7 @@ declare const SubAgentDataComponentApiUpdateSchema: z.ZodObject<{
|
|
|
16674
16674
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16675
16675
|
dataComponentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16676
16676
|
}, z.core.$strip>;
|
|
16677
|
-
declare const ArtifactComponentSelectSchema:
|
|
16677
|
+
declare const ArtifactComponentSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
16678
16678
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
16679
16679
|
name: "created_at";
|
|
16680
16680
|
tableName: "artifact_components";
|
|
@@ -16860,7 +16860,7 @@ declare const ArtifactComponentSelectSchema: drizzle_zod3.BuildSchema<"select",
|
|
|
16860
16860
|
}, {}, {
|
|
16861
16861
|
length: 256;
|
|
16862
16862
|
}>;
|
|
16863
|
-
},
|
|
16863
|
+
}, drizzle_zod0.BuildRefine<{
|
|
16864
16864
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
16865
16865
|
name: "created_at";
|
|
16866
16866
|
tableName: "artifact_components";
|
|
@@ -17281,7 +17281,7 @@ declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
|
17281
17281
|
mockData: Record<string, unknown>;
|
|
17282
17282
|
}>>>>>>;
|
|
17283
17283
|
}, z.core.$strip>;
|
|
17284
|
-
declare const SubAgentArtifactComponentSelectSchema:
|
|
17284
|
+
declare const SubAgentArtifactComponentSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
17285
17285
|
artifactComponentId: drizzle_orm_pg_core0.PgColumn<{
|
|
17286
17286
|
name: "artifact_component_id";
|
|
17287
17287
|
tableName: "sub_agent_artifact_components";
|
|
@@ -17413,7 +17413,7 @@ declare const SubAgentArtifactComponentSelectSchema: drizzle_zod3.BuildSchema<"s
|
|
|
17413
17413
|
}, {}, {
|
|
17414
17414
|
length: 256;
|
|
17415
17415
|
}>;
|
|
17416
|
-
},
|
|
17416
|
+
}, drizzle_zod0.BuildRefine<{
|
|
17417
17417
|
artifactComponentId: drizzle_orm_pg_core0.PgColumn<{
|
|
17418
17418
|
name: "artifact_component_id";
|
|
17419
17419
|
tableName: "sub_agent_artifact_components";
|
|
@@ -17610,8 +17610,8 @@ declare const ExternalAgentInsertSchema: z.ZodObject<{
|
|
|
17610
17610
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17611
17611
|
tenantId: z.ZodString;
|
|
17612
17612
|
projectId: z.ZodString;
|
|
17613
|
-
baseUrl: z.ZodURL;
|
|
17614
17613
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17614
|
+
baseUrl: z.ZodURL;
|
|
17615
17615
|
}, {
|
|
17616
17616
|
out: {};
|
|
17617
17617
|
in: {};
|
|
@@ -17622,8 +17622,8 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
|
17622
17622
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17623
17623
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
17624
17624
|
projectId: z.ZodOptional<z.ZodString>;
|
|
17625
|
-
baseUrl: z.ZodOptional<z.ZodURL>;
|
|
17626
17625
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17626
|
+
baseUrl: z.ZodOptional<z.ZodURL>;
|
|
17627
17627
|
}, {
|
|
17628
17628
|
out: {};
|
|
17629
17629
|
in: {};
|
|
@@ -17634,22 +17634,22 @@ declare const ExternalAgentApiSelectSchema: z.ZodObject<{
|
|
|
17634
17634
|
description: z.ZodNullable<z.ZodString>;
|
|
17635
17635
|
createdAt: z.ZodString;
|
|
17636
17636
|
updatedAt: z.ZodString;
|
|
17637
|
-
baseUrl: z.ZodString;
|
|
17638
17637
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17638
|
+
baseUrl: z.ZodString;
|
|
17639
17639
|
}, z.core.$strip>;
|
|
17640
17640
|
declare const ExternalAgentApiInsertSchema: z.ZodObject<{
|
|
17641
17641
|
id: z.ZodString;
|
|
17642
17642
|
name: z.ZodString;
|
|
17643
17643
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17644
|
-
baseUrl: z.ZodURL;
|
|
17645
17644
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17645
|
+
baseUrl: z.ZodURL;
|
|
17646
17646
|
}, z.core.$strip>;
|
|
17647
17647
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
17648
17648
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17649
17649
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17650
17650
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17651
|
-
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodURL>>;
|
|
17652
17651
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17652
|
+
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodURL>>;
|
|
17653
17653
|
}, z.core.$strip>;
|
|
17654
17654
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
17655
17655
|
id: z.ZodString;
|
|
@@ -17785,11 +17785,11 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
17785
17785
|
description: z.ZodNullable<z.ZodString>;
|
|
17786
17786
|
createdAt: z.ZodString;
|
|
17787
17787
|
updatedAt: z.ZodString;
|
|
17788
|
-
baseUrl: z.ZodString;
|
|
17789
17788
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17789
|
+
baseUrl: z.ZodString;
|
|
17790
17790
|
type: z.ZodLiteral<"external">;
|
|
17791
17791
|
}, z.core.$strip>], "type">;
|
|
17792
|
-
declare const ApiKeySelectSchema:
|
|
17792
|
+
declare const ApiKeySelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
17793
17793
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
17794
17794
|
name: "created_at";
|
|
17795
17795
|
tableName: "api_keys";
|
|
@@ -18010,7 +18010,7 @@ declare const ApiKeySelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
18010
18010
|
}, {}, {
|
|
18011
18011
|
length: 256;
|
|
18012
18012
|
}>;
|
|
18013
|
-
},
|
|
18013
|
+
}, drizzle_zod0.BuildRefine<{
|
|
18014
18014
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
18015
18015
|
name: "created_at";
|
|
18016
18016
|
tableName: "api_keys";
|
|
@@ -18537,7 +18537,7 @@ declare const AppConfigResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
18537
18537
|
}, z.core.$strip>>>;
|
|
18538
18538
|
}, z.core.$strip>;
|
|
18539
18539
|
}, z.core.$strip>], "type">;
|
|
18540
|
-
declare const AppSelectSchema:
|
|
18540
|
+
declare const AppSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
18541
18541
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
18542
18542
|
name: "created_at";
|
|
18543
18543
|
tableName: "apps";
|
|
@@ -18851,7 +18851,7 @@ declare const AppSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
18851
18851
|
identity: undefined;
|
|
18852
18852
|
generated: undefined;
|
|
18853
18853
|
}, {}, {}>;
|
|
18854
|
-
},
|
|
18854
|
+
}, drizzle_zod0.BuildRefine<{
|
|
18855
18855
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
18856
18856
|
name: "created_at";
|
|
18857
18857
|
tableName: "apps";
|
|
@@ -19233,9 +19233,9 @@ declare const AppUpdateSchema: z.ZodObject<{
|
|
|
19233
19233
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19234
19234
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19235
19235
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19236
|
+
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19236
19237
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
19237
19238
|
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19238
|
-
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19239
19239
|
config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
19240
19240
|
type: z.ZodLiteral<"web_client">;
|
|
19241
19241
|
webClient: z.ZodObject<{
|
|
@@ -19283,7 +19283,7 @@ declare const AppUpdateSchema: z.ZodObject<{
|
|
|
19283
19283
|
out: {};
|
|
19284
19284
|
in: {};
|
|
19285
19285
|
}>;
|
|
19286
|
-
declare const AppApiSelectSchema:
|
|
19286
|
+
declare const AppApiSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
19287
19287
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
19288
19288
|
name: "created_at";
|
|
19289
19289
|
tableName: "apps";
|
|
@@ -19597,7 +19597,7 @@ declare const AppApiSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
19597
19597
|
identity: undefined;
|
|
19598
19598
|
generated: undefined;
|
|
19599
19599
|
}, {}, {}>;
|
|
19600
|
-
},
|
|
19600
|
+
}, drizzle_zod0.BuildRefine<{
|
|
19601
19601
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
19602
19602
|
name: "created_at";
|
|
19603
19603
|
tableName: "apps";
|
|
@@ -19920,9 +19920,9 @@ declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
|
19920
19920
|
createdAt: z.ZodString;
|
|
19921
19921
|
updatedAt: z.ZodString;
|
|
19922
19922
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
19923
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
19923
19924
|
enabled: z.ZodBoolean;
|
|
19924
19925
|
prompt: z.ZodNullable<z.ZodString>;
|
|
19925
|
-
projectId: z.ZodNullable<z.ZodString>;
|
|
19926
19926
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
19927
19927
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
19928
19928
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -19981,9 +19981,9 @@ declare const AppApiInsertSchema: z.ZodObject<{
|
|
|
19981
19981
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
19982
19982
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19983
19983
|
tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19984
|
+
projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19984
19985
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
19985
19986
|
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19986
|
-
projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19987
19987
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
19988
19988
|
type: z.ZodLiteral<"web_client">;
|
|
19989
19989
|
webClient: z.ZodObject<{
|
|
@@ -20035,9 +20035,9 @@ declare const AppApiUpdateSchema: z.ZodObject<{
|
|
|
20035
20035
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20036
20036
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20037
20037
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20038
|
+
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20038
20039
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
20039
20040
|
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20040
|
-
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20041
20041
|
config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
20042
20042
|
type: z.ZodLiteral<"web_client">;
|
|
20043
20043
|
webClient: z.ZodObject<{
|
|
@@ -20095,9 +20095,9 @@ declare const AppApiCreationResponseSchema: z.ZodObject<{
|
|
|
20095
20095
|
createdAt: z.ZodString;
|
|
20096
20096
|
updatedAt: z.ZodString;
|
|
20097
20097
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
20098
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
20098
20099
|
enabled: z.ZodBoolean;
|
|
20099
20100
|
prompt: z.ZodNullable<z.ZodString>;
|
|
20100
|
-
projectId: z.ZodNullable<z.ZodString>;
|
|
20101
20101
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
20102
20102
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
20103
20103
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -20147,7 +20147,7 @@ declare const AppApiCreationResponseSchema: z.ZodObject<{
|
|
|
20147
20147
|
}>;
|
|
20148
20148
|
}, z.core.$strip>;
|
|
20149
20149
|
}, z.core.$strip>;
|
|
20150
|
-
declare const CredentialReferenceSelectSchema:
|
|
20150
|
+
declare const CredentialReferenceSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
20151
20151
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
20152
20152
|
name: "created_at";
|
|
20153
20153
|
tableName: "credential_references";
|
|
@@ -20372,7 +20372,7 @@ declare const CredentialReferenceSelectSchema: drizzle_zod3.BuildSchema<"select"
|
|
|
20372
20372
|
}, {}, {
|
|
20373
20373
|
length: 256;
|
|
20374
20374
|
}>;
|
|
20375
|
-
},
|
|
20375
|
+
}, drizzle_zod0.BuildRefine<{
|
|
20376
20376
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
20377
20377
|
name: "created_at";
|
|
20378
20378
|
tableName: "credential_references";
|
|
@@ -20604,11 +20604,11 @@ declare const CredentialReferenceInsertSchema: z.ZodObject<{
|
|
|
20604
20604
|
name: z.ZodString;
|
|
20605
20605
|
tenantId: z.ZodString;
|
|
20606
20606
|
projectId: z.ZodString;
|
|
20607
|
-
|
|
20607
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20608
20608
|
credentialStoreId: z.ZodString;
|
|
20609
20609
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20610
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20611
20610
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20611
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20612
20612
|
}, {
|
|
20613
20613
|
out: {};
|
|
20614
20614
|
in: {};
|
|
@@ -20619,11 +20619,11 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
|
20619
20619
|
name: z.ZodOptional<z.ZodString>;
|
|
20620
20620
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
20621
20621
|
projectId: z.ZodOptional<z.ZodString>;
|
|
20622
|
-
|
|
20622
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20623
20623
|
credentialStoreId: z.ZodOptional<z.ZodString>;
|
|
20624
20624
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
20625
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20626
20625
|
userId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20626
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20627
20627
|
}, {
|
|
20628
20628
|
out: {};
|
|
20629
20629
|
in: {};
|
|
@@ -20633,18 +20633,18 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
20633
20633
|
name: z.ZodString;
|
|
20634
20634
|
createdAt: z.ZodString;
|
|
20635
20635
|
updatedAt: z.ZodString;
|
|
20636
|
-
|
|
20636
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
20637
20637
|
credentialStoreId: z.ZodString;
|
|
20638
20638
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
20639
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
20640
20639
|
userId: z.ZodNullable<z.ZodString>;
|
|
20640
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
20641
20641
|
type: z.ZodEnum<{
|
|
20642
20642
|
readonly memory: "memory";
|
|
20643
20643
|
readonly keychain: "keychain";
|
|
20644
20644
|
readonly nango: "nango";
|
|
20645
20645
|
readonly composio: "composio";
|
|
20646
20646
|
}>;
|
|
20647
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
20647
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod0.BuildSchema<"select", {
|
|
20648
20648
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
20649
20649
|
name: "created_at";
|
|
20650
20650
|
tableName: "tools";
|
|
@@ -20924,7 +20924,7 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
20924
20924
|
}, {}, {
|
|
20925
20925
|
length: 256;
|
|
20926
20926
|
}>;
|
|
20927
|
-
},
|
|
20927
|
+
}, drizzle_zod0.BuildRefine<{
|
|
20928
20928
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
20929
20929
|
name: "created_at";
|
|
20930
20930
|
tableName: "tools";
|
|
@@ -21223,11 +21223,11 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
21223
21223
|
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
21224
21224
|
id: z.ZodString;
|
|
21225
21225
|
name: z.ZodString;
|
|
21226
|
-
|
|
21226
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21227
21227
|
credentialStoreId: z.ZodString;
|
|
21228
21228
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
21229
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21230
21229
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21230
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21231
21231
|
type: z.ZodEnum<{
|
|
21232
21232
|
readonly memory: "memory";
|
|
21233
21233
|
readonly keychain: "keychain";
|
|
@@ -21238,11 +21238,11 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
21238
21238
|
declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
21239
21239
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21240
21240
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21241
|
-
|
|
21241
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21242
21242
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21243
21243
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
21244
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21245
21244
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21245
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21246
21246
|
type: z.ZodOptional<z.ZodEnum<{
|
|
21247
21247
|
readonly memory: "memory";
|
|
21248
21248
|
readonly keychain: "keychain";
|
|
@@ -21313,7 +21313,6 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
21313
21313
|
tenantId: z.ZodString;
|
|
21314
21314
|
projectId: z.ZodString;
|
|
21315
21315
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
21316
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21317
21316
|
config: z.ZodObject<{
|
|
21318
21317
|
type: z.ZodLiteral<"mcp">;
|
|
21319
21318
|
mcp: z.ZodObject<{
|
|
@@ -21340,6 +21339,7 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
21340
21339
|
prompt: z.ZodOptional<z.ZodString>;
|
|
21341
21340
|
}, z.core.$strip>;
|
|
21342
21341
|
}, z.core.$strip>;
|
|
21342
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21343
21343
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
21344
21344
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
21345
21345
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -21368,20 +21368,20 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
21368
21368
|
declare const MCPToolConfigSchema: z.ZodObject<{
|
|
21369
21369
|
id: z.ZodString;
|
|
21370
21370
|
name: z.ZodString;
|
|
21371
|
-
createdBy: z.ZodOptional<z.ZodString>;
|
|
21372
21371
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
21373
21372
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
21374
21373
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
21375
21374
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
21376
21375
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21377
21376
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
21377
|
+
createdBy: z.ZodOptional<z.ZodString>;
|
|
21378
|
+
relationshipId: z.ZodOptional<z.ZodString>;
|
|
21378
21379
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
21379
21380
|
availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21380
21381
|
name: z.ZodString;
|
|
21381
21382
|
description: z.ZodOptional<z.ZodString>;
|
|
21382
21383
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
21383
21384
|
}, z.core.$strip>>>;
|
|
21384
|
-
relationshipId: z.ZodOptional<z.ZodString>;
|
|
21385
21385
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
21386
21386
|
projectId: z.ZodOptional<z.ZodString>;
|
|
21387
21387
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -21404,11 +21404,11 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
21404
21404
|
credential: z.ZodOptional<z.ZodObject<{
|
|
21405
21405
|
id: z.ZodString;
|
|
21406
21406
|
name: z.ZodString;
|
|
21407
|
-
|
|
21407
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21408
21408
|
credentialStoreId: z.ZodString;
|
|
21409
21409
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
21410
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21411
21410
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21411
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21412
21412
|
type: z.ZodEnum<{
|
|
21413
21413
|
readonly memory: "memory";
|
|
21414
21414
|
readonly keychain: "keychain";
|
|
@@ -21434,7 +21434,6 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
21434
21434
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
21435
21435
|
projectId: z.ZodOptional<z.ZodString>;
|
|
21436
21436
|
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
21437
|
-
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21438
21437
|
config: z.ZodOptional<z.ZodObject<{
|
|
21439
21438
|
type: z.ZodLiteral<"mcp">;
|
|
21440
21439
|
mcp: z.ZodObject<{
|
|
@@ -21461,6 +21460,7 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
21461
21460
|
prompt: z.ZodOptional<z.ZodString>;
|
|
21462
21461
|
}, z.core.$strip>;
|
|
21463
21462
|
}, z.core.$strip>>;
|
|
21463
|
+
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21464
21464
|
credentialScope: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21465
21465
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21466
21466
|
capabilities: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>;
|
|
@@ -21477,7 +21477,6 @@ declare const ToolApiSelectSchema: z.ZodObject<{
|
|
|
21477
21477
|
createdAt: z.ZodString;
|
|
21478
21478
|
updatedAt: z.ZodString;
|
|
21479
21479
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
21480
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
21481
21480
|
config: z.ZodType<{
|
|
21482
21481
|
type: "mcp";
|
|
21483
21482
|
mcp: ToolMcpConfig;
|
|
@@ -21491,6 +21490,7 @@ declare const ToolApiSelectSchema: z.ZodObject<{
|
|
|
21491
21490
|
type: "mcp";
|
|
21492
21491
|
mcp: ToolMcpConfig;
|
|
21493
21492
|
}>>;
|
|
21493
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
21494
21494
|
credentialScope: z.ZodString;
|
|
21495
21495
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
21496
21496
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -21502,7 +21502,6 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
21502
21502
|
name: z.ZodString;
|
|
21503
21503
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21504
21504
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
21505
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21506
21505
|
config: z.ZodObject<{
|
|
21507
21506
|
type: z.ZodLiteral<"mcp">;
|
|
21508
21507
|
mcp: z.ZodObject<{
|
|
@@ -21529,6 +21528,7 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
21529
21528
|
prompt: z.ZodOptional<z.ZodString>;
|
|
21530
21529
|
}, z.core.$strip>;
|
|
21531
21530
|
}, z.core.$strip>;
|
|
21531
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21532
21532
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
21533
21533
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
21534
21534
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -21540,7 +21540,6 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
21540
21540
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21541
21541
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21542
21542
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
21543
|
-
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21544
21543
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
21545
21544
|
type: z.ZodLiteral<"mcp">;
|
|
21546
21545
|
mcp: z.ZodObject<{
|
|
@@ -21567,13 +21566,14 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
21567
21566
|
prompt: z.ZodOptional<z.ZodString>;
|
|
21568
21567
|
}, z.core.$strip>;
|
|
21569
21568
|
}, z.core.$strip>>>;
|
|
21569
|
+
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21570
21570
|
credentialScope: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21571
21571
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21572
21572
|
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
21573
21573
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21574
21574
|
isWorkApp: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
21575
21575
|
}, z.core.$strip>;
|
|
21576
|
-
declare const FunctionToolSelectSchema:
|
|
21576
|
+
declare const FunctionToolSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
21577
21577
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
21578
21578
|
name: "created_at";
|
|
21579
21579
|
tableName: "function_tools";
|
|
@@ -21739,7 +21739,7 @@ declare const FunctionToolSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
21739
21739
|
}, {}, {
|
|
21740
21740
|
length: 256;
|
|
21741
21741
|
}>;
|
|
21742
|
-
},
|
|
21742
|
+
}, drizzle_zod0.BuildRefine<{
|
|
21743
21743
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
21744
21744
|
name: "created_at";
|
|
21745
21745
|
tableName: "function_tools";
|
|
@@ -21953,7 +21953,7 @@ declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
|
21953
21953
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21954
21954
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21955
21955
|
}, z.core.$strip>;
|
|
21956
|
-
declare const SubAgentFunctionToolRelationSelectSchema:
|
|
21956
|
+
declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
21957
21957
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
21958
21958
|
name: "created_at";
|
|
21959
21959
|
tableName: "sub_agent_function_tool_relations";
|
|
@@ -22125,7 +22125,7 @@ declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod3.BuildSchema
|
|
|
22125
22125
|
}, {}, {
|
|
22126
22126
|
length: 256;
|
|
22127
22127
|
}>;
|
|
22128
|
-
},
|
|
22128
|
+
}, drizzle_zod0.BuildRefine<{
|
|
22129
22129
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
22130
22130
|
name: "created_at";
|
|
22131
22131
|
tableName: "sub_agent_function_tool_relations";
|
|
@@ -22301,7 +22301,7 @@ declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod3.BuildSchema
|
|
|
22301
22301
|
declare const SubAgentFunctionToolRelationInsertSchema: z.ZodObject<{
|
|
22302
22302
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22303
22303
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22304
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22304
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
22305
22305
|
agentId: z.ZodString;
|
|
22306
22306
|
projectId: z.ZodString;
|
|
22307
22307
|
tenantId: z.ZodString;
|
|
@@ -22316,19 +22316,19 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<{
|
|
|
22316
22316
|
id: z.ZodString;
|
|
22317
22317
|
createdAt: z.ZodString;
|
|
22318
22318
|
updatedAt: z.ZodString;
|
|
22319
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
22319
22320
|
subAgentId: z.ZodString;
|
|
22320
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
22321
22321
|
functionToolId: z.ZodString;
|
|
22322
22322
|
}, z.core.$strip>;
|
|
22323
22323
|
declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
|
|
22324
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
22324
22325
|
subAgentId: z.ZodString;
|
|
22325
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
22326
22326
|
functionToolId: z.ZodString;
|
|
22327
22327
|
}, {
|
|
22328
22328
|
out: {};
|
|
22329
22329
|
in: {};
|
|
22330
22330
|
}>;
|
|
22331
|
-
declare const FunctionSelectSchema:
|
|
22331
|
+
declare const FunctionSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
22332
22332
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
22333
22333
|
name: "created_at";
|
|
22334
22334
|
tableName: "functions";
|
|
@@ -22475,7 +22475,7 @@ declare const FunctionSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
22475
22475
|
}, {}, {
|
|
22476
22476
|
length: 256;
|
|
22477
22477
|
}>;
|
|
22478
|
-
},
|
|
22478
|
+
}, drizzle_zod0.BuildRefine<{
|
|
22479
22479
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
22480
22480
|
name: "created_at";
|
|
22481
22481
|
tableName: "functions";
|
|
@@ -22713,11 +22713,11 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
22713
22713
|
credential: z.ZodOptional<z.ZodObject<{
|
|
22714
22714
|
id: z.ZodString;
|
|
22715
22715
|
name: z.ZodString;
|
|
22716
|
-
|
|
22716
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22717
22717
|
credentialStoreId: z.ZodString;
|
|
22718
22718
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22719
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22720
22719
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22720
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22721
22721
|
type: z.ZodEnum<{
|
|
22722
22722
|
readonly memory: "memory";
|
|
22723
22723
|
readonly keychain: "keychain";
|
|
@@ -22743,9 +22743,9 @@ declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
|
22743
22743
|
id: z.ZodOptional<z.ZodString>;
|
|
22744
22744
|
tenantId: z.ZodString;
|
|
22745
22745
|
projectId: z.ZodString;
|
|
22746
|
+
agentId: z.ZodString;
|
|
22746
22747
|
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22747
22748
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22748
|
-
agentId: z.ZodString;
|
|
22749
22749
|
}, {
|
|
22750
22750
|
out: {};
|
|
22751
22751
|
in: {};
|
|
@@ -22754,9 +22754,9 @@ declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
|
22754
22754
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22755
22755
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
22756
22756
|
projectId: z.ZodOptional<z.ZodString>;
|
|
22757
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
22757
22758
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
22758
22759
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
22759
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
22760
22760
|
}, {
|
|
22761
22761
|
out: {};
|
|
22762
22762
|
in: {};
|
|
@@ -22778,7 +22778,7 @@ declare const ContextConfigApiUpdateSchema: z.ZodObject<{
|
|
|
22778
22778
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
22779
22779
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
22780
22780
|
}, z.core.$strip>;
|
|
22781
|
-
declare const SubAgentToolRelationSelectSchema:
|
|
22781
|
+
declare const SubAgentToolRelationSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
22782
22782
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
22783
22783
|
name: "created_at";
|
|
22784
22784
|
tableName: "sub_agent_tool_relations";
|
|
@@ -22988,7 +22988,7 @@ declare const SubAgentToolRelationSelectSchema: drizzle_zod3.BuildSchema<"select
|
|
|
22988
22988
|
}, {}, {
|
|
22989
22989
|
length: 256;
|
|
22990
22990
|
}>;
|
|
22991
|
-
},
|
|
22991
|
+
}, drizzle_zod0.BuildRefine<{
|
|
22992
22992
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
22993
22993
|
name: "created_at";
|
|
22994
22994
|
tableName: "sub_agent_tool_relations";
|
|
@@ -23240,10 +23240,10 @@ declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
|
23240
23240
|
createdAt: z.ZodString;
|
|
23241
23241
|
updatedAt: z.ZodString;
|
|
23242
23242
|
toolId: z.ZodString;
|
|
23243
|
-
headers: z.ZodNullable<z.ZodType<
|
|
23243
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
23244
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
23244
23245
|
subAgentId: z.ZodString;
|
|
23245
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
23246
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
23246
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
23247
23247
|
}, z.core.$strip>;
|
|
23248
23248
|
declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
23249
23249
|
id: z.ZodString;
|
|
@@ -23251,11 +23251,11 @@ declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
|
23251
23251
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
23252
23252
|
toolId: z.ZodString;
|
|
23253
23253
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
23254
|
-
subAgentId: z.ZodString;
|
|
23255
|
-
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
23256
23254
|
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23257
23255
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
23258
23256
|
}, z.core.$strip>>>>;
|
|
23257
|
+
subAgentId: z.ZodString;
|
|
23258
|
+
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
23259
23259
|
}, z.core.$strip>;
|
|
23260
23260
|
declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
23261
23261
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -23263,13 +23263,13 @@ declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
|
23263
23263
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23264
23264
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23265
23265
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
23266
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23267
|
-
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
23268
23266
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23269
23267
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
23270
23268
|
}, z.core.$strip>>>>>>;
|
|
23269
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23270
|
+
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
23271
23271
|
}, z.core.$strip>;
|
|
23272
|
-
declare const SubAgentExternalAgentRelationSelectSchema:
|
|
23272
|
+
declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
23273
23273
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
23274
23274
|
name: "created_at";
|
|
23275
23275
|
tableName: "sub_agent_external_agent_relations";
|
|
@@ -23437,7 +23437,7 @@ declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod3.BuildSchem
|
|
|
23437
23437
|
}, {}, {
|
|
23438
23438
|
length: 256;
|
|
23439
23439
|
}>;
|
|
23440
|
-
},
|
|
23440
|
+
}, drizzle_zod0.BuildRefine<{
|
|
23441
23441
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
23442
23442
|
name: "created_at";
|
|
23443
23443
|
tableName: "sub_agent_external_agent_relations";
|
|
@@ -23638,9 +23638,9 @@ declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<{
|
|
|
23638
23638
|
id: z.ZodString;
|
|
23639
23639
|
createdAt: z.ZodString;
|
|
23640
23640
|
updatedAt: z.ZodString;
|
|
23641
|
-
headers: z.ZodNullable<z.ZodType<
|
|
23642
|
-
subAgentId: z.ZodString;
|
|
23641
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
23643
23642
|
externalAgentId: z.ZodString;
|
|
23643
|
+
subAgentId: z.ZodString;
|
|
23644
23644
|
}, z.core.$strip>;
|
|
23645
23645
|
declare const SubAgentExternalAgentRelationApiInsertSchema: z.ZodObject<{
|
|
23646
23646
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -23653,10 +23653,10 @@ declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
23653
23653
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23654
23654
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23655
23655
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
23656
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23657
23656
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23657
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23658
23658
|
}, z.core.$strip>;
|
|
23659
|
-
declare const SubAgentTeamAgentRelationSelectSchema:
|
|
23659
|
+
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
23660
23660
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
23661
23661
|
name: "created_at";
|
|
23662
23662
|
tableName: "sub_agent_team_agent_relations";
|
|
@@ -23824,7 +23824,7 @@ declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod3.BuildSchema<"s
|
|
|
23824
23824
|
}, {}, {
|
|
23825
23825
|
length: 256;
|
|
23826
23826
|
}>;
|
|
23827
|
-
},
|
|
23827
|
+
}, drizzle_zod0.BuildRefine<{
|
|
23828
23828
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
23829
23829
|
name: "created_at";
|
|
23830
23830
|
tableName: "sub_agent_team_agent_relations";
|
|
@@ -24025,7 +24025,7 @@ declare const SubAgentTeamAgentRelationApiSelectSchema: z.ZodObject<{
|
|
|
24025
24025
|
id: z.ZodString;
|
|
24026
24026
|
createdAt: z.ZodString;
|
|
24027
24027
|
updatedAt: z.ZodString;
|
|
24028
|
-
headers: z.ZodNullable<z.ZodType<
|
|
24028
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
24029
24029
|
subAgentId: z.ZodString;
|
|
24030
24030
|
targetAgentId: z.ZodString;
|
|
24031
24031
|
}, z.core.$strip>;
|
|
@@ -24043,7 +24043,7 @@ declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
24043
24043
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24044
24044
|
targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24045
24045
|
}, z.core.$strip>;
|
|
24046
|
-
declare const LedgerArtifactSelectSchema:
|
|
24046
|
+
declare const LedgerArtifactSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
24047
24047
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
24048
24048
|
name: "created_at";
|
|
24049
24049
|
tableName: "ledger_artifacts";
|
|
@@ -24378,7 +24378,7 @@ declare const LedgerArtifactSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
24378
24378
|
}, {}, {
|
|
24379
24379
|
length: 256;
|
|
24380
24380
|
}>;
|
|
24381
|
-
},
|
|
24381
|
+
}, drizzle_zod0.BuildRefine<{
|
|
24382
24382
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
24383
24383
|
name: "created_at";
|
|
24384
24384
|
tableName: "ledger_artifacts";
|
|
@@ -24714,7 +24714,7 @@ declare const LedgerArtifactSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
24714
24714
|
length: 256;
|
|
24715
24715
|
}>;
|
|
24716
24716
|
}, undefined>, undefined>;
|
|
24717
|
-
declare const LedgerArtifactInsertSchema:
|
|
24717
|
+
declare const LedgerArtifactInsertSchema: drizzle_zod0.BuildSchema<"insert", {
|
|
24718
24718
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
24719
24719
|
name: "created_at";
|
|
24720
24720
|
tableName: "ledger_artifacts";
|
|
@@ -25049,7 +25049,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
25049
25049
|
}, {}, {
|
|
25050
25050
|
length: 256;
|
|
25051
25051
|
}>;
|
|
25052
|
-
},
|
|
25052
|
+
}, drizzle_zod0.BuildRefine<Pick<{
|
|
25053
25053
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
25054
25054
|
name: "created_at";
|
|
25055
25055
|
tableName: "ledger_artifacts";
|
|
@@ -25384,7 +25384,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
25384
25384
|
}, {}, {
|
|
25385
25385
|
length: 256;
|
|
25386
25386
|
}>;
|
|
25387
|
-
}, "type" | "id" | "name" | "description" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "metadata" | "taskId" | "
|
|
25387
|
+
}, "type" | "id" | "name" | "description" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "metadata" | "taskId" | "parts" | "contextId" | "visibility" | "toolCallId" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
25388
25388
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
25389
25389
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
25390
25390
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -25394,12 +25394,12 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
25394
25394
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
25395
25395
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25396
25396
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25397
|
-
parts: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25398
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25397
|
+
parts: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>>;
|
|
25398
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>>;
|
|
25399
25399
|
summary: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25400
|
-
mime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25400
|
+
mime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>>;
|
|
25401
25401
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25402
|
-
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25402
|
+
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>>;
|
|
25403
25403
|
derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25404
25404
|
projectId: z.ZodOptional<z.ZodString>;
|
|
25405
25405
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
@@ -25415,15 +25415,15 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
|
25415
25415
|
description: z.ZodNullable<z.ZodString>;
|
|
25416
25416
|
createdAt: z.ZodString;
|
|
25417
25417
|
updatedAt: z.ZodString;
|
|
25418
|
-
metadata: z.ZodNullable<z.ZodType<
|
|
25418
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
25419
25419
|
taskId: z.ZodString;
|
|
25420
|
-
|
|
25421
|
-
parts: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
25420
|
+
parts: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
25422
25421
|
contextId: z.ZodString;
|
|
25423
25422
|
visibility: z.ZodNullable<z.ZodString>;
|
|
25423
|
+
toolCallId: z.ZodNullable<z.ZodString>;
|
|
25424
25424
|
summary: z.ZodNullable<z.ZodString>;
|
|
25425
|
-
mime: z.ZodNullable<z.ZodType<
|
|
25426
|
-
allowedAgents: z.ZodNullable<z.ZodType<
|
|
25425
|
+
mime: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
25426
|
+
allowedAgents: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
25427
25427
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
25428
25428
|
}, z.core.$strip>;
|
|
25429
25429
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
@@ -25433,15 +25433,15 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
|
25433
25433
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25434
25434
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25435
25435
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25436
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25436
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
25437
25437
|
taskId: z.ZodString;
|
|
25438
|
-
|
|
25439
|
-
parts: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
25438
|
+
parts: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
25440
25439
|
contextId: z.ZodString;
|
|
25441
25440
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25441
|
+
toolCallId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25442
25442
|
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25443
|
-
mime: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25444
|
-
allowedAgents: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25443
|
+
mime: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
25444
|
+
allowedAgents: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
25445
25445
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25446
25446
|
}, z.core.$strip>;
|
|
25447
25447
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
@@ -25451,15 +25451,15 @@ declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
|
25451
25451
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25452
25452
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
25453
25453
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
25454
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25454
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>>>;
|
|
25455
25455
|
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
25456
|
-
|
|
25457
|
-
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>>>;
|
|
25456
|
+
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>>>;
|
|
25458
25457
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
25459
25458
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25459
|
+
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25460
25460
|
summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25461
|
-
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25462
|
-
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25461
|
+
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>>>;
|
|
25462
|
+
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>>>;
|
|
25463
25463
|
derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25464
25464
|
}, z.core.$strip>;
|
|
25465
25465
|
declare const StatusComponentSchema: z.ZodObject<{
|
|
@@ -25678,7 +25678,6 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
25678
25678
|
name: z.ZodString;
|
|
25679
25679
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25680
25680
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25681
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25682
25681
|
config: z.ZodObject<{
|
|
25683
25682
|
type: z.ZodLiteral<"mcp">;
|
|
25684
25683
|
mcp: z.ZodObject<{
|
|
@@ -25705,6 +25704,7 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
25705
25704
|
prompt: z.ZodOptional<z.ZodString>;
|
|
25706
25705
|
}, z.core.$strip>;
|
|
25707
25706
|
}, z.core.$strip>;
|
|
25707
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25708
25708
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
25709
25709
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
25710
25710
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -25715,8 +25715,8 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
25715
25715
|
id: z.ZodString;
|
|
25716
25716
|
name: z.ZodString;
|
|
25717
25717
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25718
|
-
baseUrl: z.ZodURL;
|
|
25719
25718
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25719
|
+
baseUrl: z.ZodURL;
|
|
25720
25720
|
}, z.core.$strip>>>;
|
|
25721
25721
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25722
25722
|
id: z.ZodString;
|
|
@@ -25740,15 +25740,15 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
25740
25740
|
name: z.ZodString;
|
|
25741
25741
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25742
25742
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25743
|
-
|
|
25744
|
-
|
|
25743
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25744
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
25745
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
25745
25746
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25746
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25747
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
25747
25748
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25748
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25749
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
25749
25750
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25750
25751
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
25751
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25752
25752
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
25753
25753
|
}, z.core.$strip>>>;
|
|
25754
25754
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -25879,7 +25879,6 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25879
25879
|
name: z.ZodString;
|
|
25880
25880
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25881
25881
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25882
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25883
25882
|
config: z.ZodObject<{
|
|
25884
25883
|
type: z.ZodLiteral<"mcp">;
|
|
25885
25884
|
mcp: z.ZodObject<{
|
|
@@ -25906,6 +25905,7 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25906
25905
|
prompt: z.ZodOptional<z.ZodString>;
|
|
25907
25906
|
}, z.core.$strip>;
|
|
25908
25907
|
}, z.core.$strip>;
|
|
25908
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25909
25909
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
25910
25910
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
25911
25911
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -25916,8 +25916,8 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25916
25916
|
id: z.ZodString;
|
|
25917
25917
|
name: z.ZodString;
|
|
25918
25918
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25919
|
-
baseUrl: z.ZodURL;
|
|
25920
25919
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25920
|
+
baseUrl: z.ZodURL;
|
|
25921
25921
|
}, z.core.$strip>>>;
|
|
25922
25922
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25923
25923
|
id: z.ZodString;
|
|
@@ -25941,15 +25941,15 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25941
25941
|
name: z.ZodString;
|
|
25942
25942
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25943
25943
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25944
|
-
|
|
25945
|
-
|
|
25944
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25945
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
25946
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
25946
25947
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25947
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25948
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
25948
25949
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25949
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25950
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
25950
25951
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25951
25952
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
25952
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25953
25953
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
25954
25954
|
}, z.core.$strip>>>;
|
|
25955
25955
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -26329,7 +26329,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26329
26329
|
name: z.ZodString;
|
|
26330
26330
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26331
26331
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
26332
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26333
26332
|
config: z.ZodObject<{
|
|
26334
26333
|
type: z.ZodLiteral<"mcp">;
|
|
26335
26334
|
mcp: z.ZodObject<{
|
|
@@ -26356,6 +26355,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26356
26355
|
prompt: z.ZodOptional<z.ZodString>;
|
|
26357
26356
|
}, z.core.$strip>;
|
|
26358
26357
|
}, z.core.$strip>;
|
|
26358
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26359
26359
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
26360
26360
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
26361
26361
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -26366,8 +26366,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26366
26366
|
id: z.ZodString;
|
|
26367
26367
|
name: z.ZodString;
|
|
26368
26368
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26369
|
-
baseUrl: z.ZodURL;
|
|
26370
26369
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26370
|
+
baseUrl: z.ZodURL;
|
|
26371
26371
|
}, z.core.$strip>>>;
|
|
26372
26372
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26373
26373
|
id: z.ZodString;
|
|
@@ -26391,15 +26391,15 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26391
26391
|
name: z.ZodString;
|
|
26392
26392
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26393
26393
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
26394
|
-
|
|
26395
|
-
|
|
26394
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26395
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
26396
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
26396
26397
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26397
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
26398
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
26398
26399
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26399
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
26400
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
26400
26401
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26401
26402
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
26402
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26403
26403
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
26404
26404
|
}, z.core.$strip>>>;
|
|
26405
26405
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -26452,7 +26452,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26452
26452
|
name: z.ZodString;
|
|
26453
26453
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26454
26454
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
26455
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26456
26455
|
config: z.ZodObject<{
|
|
26457
26456
|
type: z.ZodLiteral<"mcp">;
|
|
26458
26457
|
mcp: z.ZodObject<{
|
|
@@ -26479,6 +26478,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26479
26478
|
prompt: z.ZodOptional<z.ZodString>;
|
|
26480
26479
|
}, z.core.$strip>;
|
|
26481
26480
|
}, z.core.$strip>;
|
|
26481
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26482
26482
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
26483
26483
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
26484
26484
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -26583,8 +26583,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26583
26583
|
id: z.ZodString;
|
|
26584
26584
|
name: z.ZodString;
|
|
26585
26585
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26586
|
-
baseUrl: z.ZodURL;
|
|
26587
26586
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26587
|
+
baseUrl: z.ZodURL;
|
|
26588
26588
|
}, z.core.$strip>>>;
|
|
26589
26589
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
26590
26590
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -26604,11 +26604,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26604
26604
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26605
26605
|
id: z.ZodString;
|
|
26606
26606
|
name: z.ZodString;
|
|
26607
|
-
|
|
26607
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26608
26608
|
credentialStoreId: z.ZodString;
|
|
26609
26609
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
26610
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26611
26610
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26611
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26612
26612
|
type: z.ZodEnum<{
|
|
26613
26613
|
readonly memory: "memory";
|
|
26614
26614
|
readonly keychain: "keychain";
|
|
@@ -27094,7 +27094,6 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
27094
27094
|
createdAt: z.ZodString;
|
|
27095
27095
|
updatedAt: z.ZodString;
|
|
27096
27096
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27097
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
27098
27097
|
config: z.ZodType<{
|
|
27099
27098
|
type: "mcp";
|
|
27100
27099
|
mcp: ToolMcpConfig;
|
|
@@ -27108,6 +27107,7 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
27108
27107
|
type: "mcp";
|
|
27109
27108
|
mcp: ToolMcpConfig;
|
|
27110
27109
|
}>>;
|
|
27110
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
27111
27111
|
credentialScope: z.ZodString;
|
|
27112
27112
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
27113
27113
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -27120,8 +27120,8 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
27120
27120
|
description: z.ZodNullable<z.ZodString>;
|
|
27121
27121
|
createdAt: z.ZodString;
|
|
27122
27122
|
updatedAt: z.ZodString;
|
|
27123
|
-
baseUrl: z.ZodString;
|
|
27124
27123
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27124
|
+
baseUrl: z.ZodString;
|
|
27125
27125
|
}, z.core.$strip>>>;
|
|
27126
27126
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27127
27127
|
id: z.ZodString;
|
|
@@ -27209,7 +27209,6 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
27209
27209
|
createdAt: z.ZodString;
|
|
27210
27210
|
updatedAt: z.ZodString;
|
|
27211
27211
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27212
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
27213
27212
|
config: z.ZodType<{
|
|
27214
27213
|
type: "mcp";
|
|
27215
27214
|
mcp: ToolMcpConfig;
|
|
@@ -27223,6 +27222,7 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
27223
27222
|
type: "mcp";
|
|
27224
27223
|
mcp: ToolMcpConfig;
|
|
27225
27224
|
}>>;
|
|
27225
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
27226
27226
|
credentialScope: z.ZodString;
|
|
27227
27227
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
27228
27228
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -27235,8 +27235,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
27235
27235
|
description: z.ZodNullable<z.ZodString>;
|
|
27236
27236
|
createdAt: z.ZodString;
|
|
27237
27237
|
updatedAt: z.ZodString;
|
|
27238
|
-
baseUrl: z.ZodString;
|
|
27239
27238
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27239
|
+
baseUrl: z.ZodString;
|
|
27240
27240
|
}, z.core.$strip>>>;
|
|
27241
27241
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27242
27242
|
id: z.ZodString;
|
|
@@ -27660,7 +27660,6 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27660
27660
|
createdAt: z.ZodString;
|
|
27661
27661
|
updatedAt: z.ZodString;
|
|
27662
27662
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27663
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
27664
27663
|
config: z.ZodType<{
|
|
27665
27664
|
type: "mcp";
|
|
27666
27665
|
mcp: ToolMcpConfig;
|
|
@@ -27674,6 +27673,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27674
27673
|
type: "mcp";
|
|
27675
27674
|
mcp: ToolMcpConfig;
|
|
27676
27675
|
}>>;
|
|
27676
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
27677
27677
|
credentialScope: z.ZodString;
|
|
27678
27678
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
27679
27679
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -27686,8 +27686,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27686
27686
|
description: z.ZodNullable<z.ZodString>;
|
|
27687
27687
|
createdAt: z.ZodString;
|
|
27688
27688
|
updatedAt: z.ZodString;
|
|
27689
|
-
baseUrl: z.ZodString;
|
|
27690
27689
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27690
|
+
baseUrl: z.ZodString;
|
|
27691
27691
|
}, z.core.$strip>>>;
|
|
27692
27692
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27693
27693
|
id: z.ZodString;
|
|
@@ -27766,7 +27766,6 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27766
27766
|
createdAt: z.ZodString;
|
|
27767
27767
|
updatedAt: z.ZodString;
|
|
27768
27768
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27769
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
27770
27769
|
config: z.ZodType<{
|
|
27771
27770
|
type: "mcp";
|
|
27772
27771
|
mcp: ToolMcpConfig;
|
|
@@ -27780,6 +27779,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27780
27779
|
type: "mcp";
|
|
27781
27780
|
mcp: ToolMcpConfig;
|
|
27782
27781
|
}>>;
|
|
27782
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
27783
27783
|
credentialScope: z.ZodString;
|
|
27784
27784
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
27785
27785
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -27908,8 +27908,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27908
27908
|
description: z.ZodNullable<z.ZodString>;
|
|
27909
27909
|
createdAt: z.ZodString;
|
|
27910
27910
|
updatedAt: z.ZodString;
|
|
27911
|
-
baseUrl: z.ZodString;
|
|
27912
27911
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27912
|
+
baseUrl: z.ZodString;
|
|
27913
27913
|
}, z.core.$strip>>>;
|
|
27914
27914
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
27915
27915
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -27931,18 +27931,18 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27931
27931
|
name: z.ZodString;
|
|
27932
27932
|
createdAt: z.ZodString;
|
|
27933
27933
|
updatedAt: z.ZodString;
|
|
27934
|
-
|
|
27934
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
27935
27935
|
credentialStoreId: z.ZodString;
|
|
27936
27936
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27937
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
27938
27937
|
userId: z.ZodNullable<z.ZodString>;
|
|
27938
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
27939
27939
|
type: z.ZodEnum<{
|
|
27940
27940
|
readonly memory: "memory";
|
|
27941
27941
|
readonly keychain: "keychain";
|
|
27942
27942
|
readonly nango: "nango";
|
|
27943
27943
|
readonly composio: "composio";
|
|
27944
27944
|
}>;
|
|
27945
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
27945
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod0.BuildSchema<"select", {
|
|
27946
27946
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
27947
27947
|
name: "created_at";
|
|
27948
27948
|
tableName: "tools";
|
|
@@ -28222,7 +28222,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
28222
28222
|
}, {}, {
|
|
28223
28223
|
length: 256;
|
|
28224
28224
|
}>;
|
|
28225
|
-
},
|
|
28225
|
+
}, drizzle_zod0.BuildRefine<{
|
|
28226
28226
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
28227
28227
|
name: "created_at";
|
|
28228
28228
|
tableName: "tools";
|
|
@@ -28559,7 +28559,6 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28559
28559
|
createdAt: z.ZodString;
|
|
28560
28560
|
updatedAt: z.ZodString;
|
|
28561
28561
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
28562
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
28563
28562
|
config: z.ZodType<{
|
|
28564
28563
|
type: "mcp";
|
|
28565
28564
|
mcp: ToolMcpConfig;
|
|
@@ -28573,6 +28572,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28573
28572
|
type: "mcp";
|
|
28574
28573
|
mcp: ToolMcpConfig;
|
|
28575
28574
|
}>>;
|
|
28575
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
28576
28576
|
credentialScope: z.ZodString;
|
|
28577
28577
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
28578
28578
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -28701,8 +28701,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28701
28701
|
description: z.ZodNullable<z.ZodString>;
|
|
28702
28702
|
createdAt: z.ZodString;
|
|
28703
28703
|
updatedAt: z.ZodString;
|
|
28704
|
-
baseUrl: z.ZodString;
|
|
28705
28704
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28705
|
+
baseUrl: z.ZodString;
|
|
28706
28706
|
}, z.core.$strip>>>;
|
|
28707
28707
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
28708
28708
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -28724,18 +28724,18 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28724
28724
|
name: z.ZodString;
|
|
28725
28725
|
createdAt: z.ZodString;
|
|
28726
28726
|
updatedAt: z.ZodString;
|
|
28727
|
-
|
|
28727
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
28728
28728
|
credentialStoreId: z.ZodString;
|
|
28729
28729
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28730
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
28731
28730
|
userId: z.ZodNullable<z.ZodString>;
|
|
28731
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
28732
28732
|
type: z.ZodEnum<{
|
|
28733
28733
|
readonly memory: "memory";
|
|
28734
28734
|
readonly keychain: "keychain";
|
|
28735
28735
|
readonly nango: "nango";
|
|
28736
28736
|
readonly composio: "composio";
|
|
28737
28737
|
}>;
|
|
28738
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
28738
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod0.BuildSchema<"select", {
|
|
28739
28739
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
28740
28740
|
name: "created_at";
|
|
28741
28741
|
tableName: "tools";
|
|
@@ -29015,7 +29015,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
29015
29015
|
}, {}, {
|
|
29016
29016
|
length: 256;
|
|
29017
29017
|
}>;
|
|
29018
|
-
},
|
|
29018
|
+
}, drizzle_zod0.BuildRefine<{
|
|
29019
29019
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
29020
29020
|
name: "created_at";
|
|
29021
29021
|
tableName: "tools";
|
|
@@ -29327,7 +29327,6 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
29327
29327
|
createdAt: z.ZodString;
|
|
29328
29328
|
updatedAt: z.ZodString;
|
|
29329
29329
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
29330
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
29331
29330
|
config: z.ZodType<{
|
|
29332
29331
|
type: "mcp";
|
|
29333
29332
|
mcp: ToolMcpConfig;
|
|
@@ -29341,6 +29340,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
29341
29340
|
type: "mcp";
|
|
29342
29341
|
mcp: ToolMcpConfig;
|
|
29343
29342
|
}>>;
|
|
29343
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
29344
29344
|
credentialScope: z.ZodString;
|
|
29345
29345
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
29346
29346
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -29353,8 +29353,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
29353
29353
|
description: z.ZodNullable<z.ZodString>;
|
|
29354
29354
|
createdAt: z.ZodString;
|
|
29355
29355
|
updatedAt: z.ZodString;
|
|
29356
|
-
baseUrl: z.ZodString;
|
|
29357
29356
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29357
|
+
baseUrl: z.ZodString;
|
|
29358
29358
|
}, z.core.$strip>>>;
|
|
29359
29359
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29360
29360
|
id: z.ZodString;
|
|
@@ -29915,8 +29915,8 @@ declare const ExternalAgentResponse: z.ZodObject<{
|
|
|
29915
29915
|
description: z.ZodNullable<z.ZodString>;
|
|
29916
29916
|
createdAt: z.ZodString;
|
|
29917
29917
|
updatedAt: z.ZodString;
|
|
29918
|
-
baseUrl: z.ZodString;
|
|
29919
29918
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29919
|
+
baseUrl: z.ZodString;
|
|
29920
29920
|
}, z.core.$strip>;
|
|
29921
29921
|
}, z.core.$strip>;
|
|
29922
29922
|
declare const ContextConfigResponse: z.ZodObject<{
|
|
@@ -29950,18 +29950,18 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
29950
29950
|
name: z.ZodString;
|
|
29951
29951
|
createdAt: z.ZodString;
|
|
29952
29952
|
updatedAt: z.ZodString;
|
|
29953
|
-
|
|
29953
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
29954
29954
|
credentialStoreId: z.ZodString;
|
|
29955
29955
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29956
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
29957
29956
|
userId: z.ZodNullable<z.ZodString>;
|
|
29957
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
29958
29958
|
type: z.ZodEnum<{
|
|
29959
29959
|
readonly memory: "memory";
|
|
29960
29960
|
readonly keychain: "keychain";
|
|
29961
29961
|
readonly nango: "nango";
|
|
29962
29962
|
readonly composio: "composio";
|
|
29963
29963
|
}>;
|
|
29964
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
29964
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod0.BuildSchema<"select", {
|
|
29965
29965
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
29966
29966
|
name: "created_at";
|
|
29967
29967
|
tableName: "tools";
|
|
@@ -30241,7 +30241,7 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
30241
30241
|
}, {}, {
|
|
30242
30242
|
length: 256;
|
|
30243
30243
|
}>;
|
|
30244
|
-
},
|
|
30244
|
+
}, drizzle_zod0.BuildRefine<{
|
|
30245
30245
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
30246
30246
|
name: "created_at";
|
|
30247
30247
|
tableName: "tools";
|
|
@@ -30565,8 +30565,8 @@ declare const SubAgentFunctionToolRelationResponse: z.ZodObject<{
|
|
|
30565
30565
|
id: z.ZodString;
|
|
30566
30566
|
createdAt: z.ZodString;
|
|
30567
30567
|
updatedAt: z.ZodString;
|
|
30568
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
30568
30569
|
subAgentId: z.ZodString;
|
|
30569
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
30570
30570
|
functionToolId: z.ZodString;
|
|
30571
30571
|
}, z.core.$strip>;
|
|
30572
30572
|
}, z.core.$strip>;
|
|
@@ -30688,10 +30688,10 @@ declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
|
30688
30688
|
createdAt: z.ZodString;
|
|
30689
30689
|
updatedAt: z.ZodString;
|
|
30690
30690
|
toolId: z.ZodString;
|
|
30691
|
-
headers: z.ZodNullable<z.ZodType<
|
|
30691
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
30692
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
30692
30693
|
subAgentId: z.ZodString;
|
|
30693
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
30694
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
30694
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
30695
30695
|
}, z.core.$strip>;
|
|
30696
30696
|
}, z.core.$strip>;
|
|
30697
30697
|
declare const TriggerResponse: z.ZodObject<{
|
|
@@ -30702,10 +30702,11 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
30702
30702
|
createdAt: z.ZodString;
|
|
30703
30703
|
updatedAt: z.ZodString;
|
|
30704
30704
|
enabled: z.ZodBoolean;
|
|
30705
|
-
|
|
30706
|
-
|
|
30705
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30706
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
30707
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
30707
30708
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30708
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
30709
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
30709
30710
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30710
30711
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30711
30712
|
algorithm: z.ZodEnum<{
|
|
@@ -30721,8 +30722,8 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
30721
30722
|
}>;
|
|
30722
30723
|
signature: z.ZodObject<{
|
|
30723
30724
|
source: z.ZodEnum<{
|
|
30724
|
-
header: "header";
|
|
30725
30725
|
query: "query";
|
|
30726
|
+
header: "header";
|
|
30726
30727
|
body: "body";
|
|
30727
30728
|
}>;
|
|
30728
30729
|
key: z.ZodString;
|
|
@@ -30754,7 +30755,6 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
30754
30755
|
}, z.core.$strip>>>;
|
|
30755
30756
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30756
30757
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
30757
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30758
30758
|
}, z.core.$strip>;
|
|
30759
30759
|
}, z.core.$strip>;
|
|
30760
30760
|
declare const TriggerInvocationResponse: z.ZodObject<{
|
|
@@ -30763,7 +30763,6 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
30763
30763
|
createdAt: z.ZodString;
|
|
30764
30764
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30765
30765
|
triggerId: z.ZodString;
|
|
30766
|
-
status: z.ZodString;
|
|
30767
30766
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
30768
30767
|
batchId: z.ZodNullable<z.ZodString>;
|
|
30769
30768
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -30775,8 +30774,9 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
30775
30774
|
name: z.ZodString;
|
|
30776
30775
|
hash: z.ZodString;
|
|
30777
30776
|
}, z.core.$strip>>>;
|
|
30778
|
-
|
|
30779
|
-
|
|
30777
|
+
status: z.ZodString;
|
|
30778
|
+
requestPayload: z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>;
|
|
30779
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
30780
30780
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
30781
30781
|
}, z.core.$strip>;
|
|
30782
30782
|
}, z.core.$strip>;
|
|
@@ -30795,15 +30795,15 @@ declare const EventResponse: z.ZodObject<{
|
|
|
30795
30795
|
data: z.ZodObject<{
|
|
30796
30796
|
type: z.ZodString;
|
|
30797
30797
|
id: z.ZodString;
|
|
30798
|
-
properties: z.ZodNullable<z.ZodType<
|
|
30798
|
+
properties: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
30799
30799
|
createdAt: z.ZodString;
|
|
30800
30800
|
updatedAt: z.ZodString;
|
|
30801
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
30801
30802
|
agentId: z.ZodNullable<z.ZodString>;
|
|
30802
|
-
metadata: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
30803
30803
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
30804
|
-
userProperties: z.ZodNullable<z.ZodType<
|
|
30804
|
+
userProperties: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
30805
30805
|
messageId: z.ZodNullable<z.ZodString>;
|
|
30806
|
-
serverMetadata: z.ZodNullable<z.ZodType<
|
|
30806
|
+
serverMetadata: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
30807
30807
|
}, z.core.$strip>;
|
|
30808
30808
|
}, z.core.$strip>;
|
|
30809
30809
|
declare const BulkFeedbackResponseSchema: z.ZodObject<{
|
|
@@ -31172,8 +31172,8 @@ declare const ExternalAgentListResponse: z.ZodObject<{
|
|
|
31172
31172
|
description: z.ZodNullable<z.ZodString>;
|
|
31173
31173
|
createdAt: z.ZodString;
|
|
31174
31174
|
updatedAt: z.ZodString;
|
|
31175
|
-
baseUrl: z.ZodString;
|
|
31176
31175
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31176
|
+
baseUrl: z.ZodString;
|
|
31177
31177
|
}, z.core.$strip>>;
|
|
31178
31178
|
pagination: z.ZodObject<{
|
|
31179
31179
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -31231,9 +31231,9 @@ declare const AppResponse: z.ZodObject<{
|
|
|
31231
31231
|
createdAt: z.ZodString;
|
|
31232
31232
|
updatedAt: z.ZodString;
|
|
31233
31233
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
31234
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
31234
31235
|
enabled: z.ZodBoolean;
|
|
31235
31236
|
prompt: z.ZodNullable<z.ZodString>;
|
|
31236
|
-
projectId: z.ZodNullable<z.ZodString>;
|
|
31237
31237
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
31238
31238
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
31239
31239
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -31291,9 +31291,9 @@ declare const AppListResponse: z.ZodObject<{
|
|
|
31291
31291
|
createdAt: z.ZodString;
|
|
31292
31292
|
updatedAt: z.ZodString;
|
|
31293
31293
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
31294
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
31294
31295
|
enabled: z.ZodBoolean;
|
|
31295
31296
|
prompt: z.ZodNullable<z.ZodString>;
|
|
31296
|
-
projectId: z.ZodNullable<z.ZodString>;
|
|
31297
31297
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
31298
31298
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
31299
31299
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -31361,18 +31361,18 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
31361
31361
|
name: z.ZodString;
|
|
31362
31362
|
createdAt: z.ZodString;
|
|
31363
31363
|
updatedAt: z.ZodString;
|
|
31364
|
-
|
|
31364
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
31365
31365
|
credentialStoreId: z.ZodString;
|
|
31366
31366
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
31367
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
31368
31367
|
userId: z.ZodNullable<z.ZodString>;
|
|
31368
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
31369
31369
|
type: z.ZodEnum<{
|
|
31370
31370
|
readonly memory: "memory";
|
|
31371
31371
|
readonly keychain: "keychain";
|
|
31372
31372
|
readonly nango: "nango";
|
|
31373
31373
|
readonly composio: "composio";
|
|
31374
31374
|
}>;
|
|
31375
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
31375
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod0.BuildSchema<"select", {
|
|
31376
31376
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
31377
31377
|
name: "created_at";
|
|
31378
31378
|
tableName: "tools";
|
|
@@ -31652,7 +31652,7 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
31652
31652
|
}, {}, {
|
|
31653
31653
|
length: 256;
|
|
31654
31654
|
}>;
|
|
31655
|
-
},
|
|
31655
|
+
}, drizzle_zod0.BuildRefine<{
|
|
31656
31656
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
31657
31657
|
name: "created_at";
|
|
31658
31658
|
tableName: "tools";
|
|
@@ -31997,8 +31997,8 @@ declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
|
|
|
31997
31997
|
id: z.ZodString;
|
|
31998
31998
|
createdAt: z.ZodString;
|
|
31999
31999
|
updatedAt: z.ZodString;
|
|
32000
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
32000
32001
|
subAgentId: z.ZodString;
|
|
32001
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
32002
32002
|
functionToolId: z.ZodString;
|
|
32003
32003
|
}, z.core.$strip>>;
|
|
32004
32004
|
pagination: z.ZodObject<{
|
|
@@ -32167,10 +32167,10 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
|
32167
32167
|
createdAt: z.ZodString;
|
|
32168
32168
|
updatedAt: z.ZodString;
|
|
32169
32169
|
toolId: z.ZodString;
|
|
32170
|
-
headers: z.ZodNullable<z.ZodType<
|
|
32170
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
32171
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
32171
32172
|
subAgentId: z.ZodString;
|
|
32172
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
32173
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
32173
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
32174
32174
|
}, z.core.$strip>>;
|
|
32175
32175
|
pagination: z.ZodObject<{
|
|
32176
32176
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -32188,10 +32188,11 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
32188
32188
|
createdAt: z.ZodString;
|
|
32189
32189
|
updatedAt: z.ZodString;
|
|
32190
32190
|
enabled: z.ZodBoolean;
|
|
32191
|
-
|
|
32192
|
-
|
|
32191
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32192
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
32193
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
32193
32194
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
32194
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
32195
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
32195
32196
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32196
32197
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32197
32198
|
algorithm: z.ZodEnum<{
|
|
@@ -32207,8 +32208,8 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
32207
32208
|
}>;
|
|
32208
32209
|
signature: z.ZodObject<{
|
|
32209
32210
|
source: z.ZodEnum<{
|
|
32210
|
-
header: "header";
|
|
32211
32211
|
query: "query";
|
|
32212
|
+
header: "header";
|
|
32212
32213
|
body: "body";
|
|
32213
32214
|
}>;
|
|
32214
32215
|
key: z.ZodString;
|
|
@@ -32240,7 +32241,6 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
32240
32241
|
}, z.core.$strip>>>;
|
|
32241
32242
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32242
32243
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
32243
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32244
32244
|
}, z.core.$strip>>;
|
|
32245
32245
|
pagination: z.ZodObject<{
|
|
32246
32246
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -32256,7 +32256,6 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
32256
32256
|
createdAt: z.ZodString;
|
|
32257
32257
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32258
32258
|
triggerId: z.ZodString;
|
|
32259
|
-
status: z.ZodString;
|
|
32260
32259
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
32261
32260
|
batchId: z.ZodNullable<z.ZodString>;
|
|
32262
32261
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -32268,8 +32267,9 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
32268
32267
|
name: z.ZodString;
|
|
32269
32268
|
hash: z.ZodString;
|
|
32270
32269
|
}, z.core.$strip>>>;
|
|
32271
|
-
|
|
32272
|
-
|
|
32270
|
+
status: z.ZodString;
|
|
32271
|
+
requestPayload: z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>;
|
|
32272
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
32273
32273
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
32274
32274
|
}, z.core.$strip>>;
|
|
32275
32275
|
pagination: z.ZodObject<{
|
|
@@ -32288,10 +32288,11 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
32288
32288
|
createdAt: z.ZodString;
|
|
32289
32289
|
updatedAt: z.ZodString;
|
|
32290
32290
|
enabled: z.ZodBoolean;
|
|
32291
|
-
|
|
32292
|
-
|
|
32291
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32292
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
32293
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
32293
32294
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
32294
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
32295
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
32295
32296
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32296
32297
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32297
32298
|
algorithm: z.ZodEnum<{
|
|
@@ -32307,8 +32308,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
32307
32308
|
}>;
|
|
32308
32309
|
signature: z.ZodObject<{
|
|
32309
32310
|
source: z.ZodEnum<{
|
|
32310
|
-
header: "header";
|
|
32311
32311
|
query: "query";
|
|
32312
|
+
header: "header";
|
|
32312
32313
|
body: "body";
|
|
32313
32314
|
}>;
|
|
32314
32315
|
key: z.ZodString;
|
|
@@ -32340,7 +32341,6 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
32340
32341
|
}, z.core.$strip>>>;
|
|
32341
32342
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32342
32343
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
32343
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32344
32344
|
runAsUserIds: z.ZodArray<z.ZodString>;
|
|
32345
32345
|
userCount: z.ZodNumber;
|
|
32346
32346
|
webhookUrl: z.ZodString;
|
|
@@ -32354,10 +32354,11 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
32354
32354
|
createdAt: z.ZodString;
|
|
32355
32355
|
updatedAt: z.ZodString;
|
|
32356
32356
|
enabled: z.ZodBoolean;
|
|
32357
|
-
|
|
32358
|
-
|
|
32357
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32358
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
32359
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
32359
32360
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
32360
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
32361
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
32361
32362
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32362
32363
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32363
32364
|
algorithm: z.ZodEnum<{
|
|
@@ -32373,8 +32374,8 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
32373
32374
|
}>;
|
|
32374
32375
|
signature: z.ZodObject<{
|
|
32375
32376
|
source: z.ZodEnum<{
|
|
32376
|
-
header: "header";
|
|
32377
32377
|
query: "query";
|
|
32378
|
+
header: "header";
|
|
32378
32379
|
body: "body";
|
|
32379
32380
|
}>;
|
|
32380
32381
|
key: z.ZodString;
|
|
@@ -32406,7 +32407,6 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
32406
32407
|
}, z.core.$strip>>>;
|
|
32407
32408
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32408
32409
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
32409
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32410
32410
|
runAsUserIds: z.ZodArray<z.ZodString>;
|
|
32411
32411
|
userCount: z.ZodNumber;
|
|
32412
32412
|
webhookUrl: z.ZodString;
|
|
@@ -32421,10 +32421,11 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
32421
32421
|
createdAt: z.ZodString;
|
|
32422
32422
|
updatedAt: z.ZodString;
|
|
32423
32423
|
enabled: z.ZodBoolean;
|
|
32424
|
-
|
|
32425
|
-
|
|
32424
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32425
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
32426
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
32426
32427
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
32427
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
32428
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
32428
32429
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32429
32430
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32430
32431
|
algorithm: z.ZodEnum<{
|
|
@@ -32440,8 +32441,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
32440
32441
|
}>;
|
|
32441
32442
|
signature: z.ZodObject<{
|
|
32442
32443
|
source: z.ZodEnum<{
|
|
32443
|
-
header: "header";
|
|
32444
32444
|
query: "query";
|
|
32445
|
+
header: "header";
|
|
32445
32446
|
body: "body";
|
|
32446
32447
|
}>;
|
|
32447
32448
|
key: z.ZodString;
|
|
@@ -32473,7 +32474,6 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
32473
32474
|
}, z.core.$strip>>>;
|
|
32474
32475
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32475
32476
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
32476
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32477
32477
|
runAsUserIds: z.ZodArray<z.ZodString>;
|
|
32478
32478
|
userCount: z.ZodNumber;
|
|
32479
32479
|
webhookUrl: z.ZodString;
|
|
@@ -32500,11 +32500,10 @@ declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
|
32500
32500
|
createdAt: z.ZodString;
|
|
32501
32501
|
updatedAt: z.ZodString;
|
|
32502
32502
|
enabled: z.ZodBoolean;
|
|
32503
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
32503
32504
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
32504
32505
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
32505
32506
|
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
32506
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
32507
|
-
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
32508
32507
|
ref: z.ZodString;
|
|
32509
32508
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
32510
32509
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
@@ -32513,6 +32512,7 @@ declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
|
32513
32512
|
maxRetries: z.ZodInt;
|
|
32514
32513
|
retryDelaySeconds: z.ZodInt;
|
|
32515
32514
|
timeoutSeconds: z.ZodInt;
|
|
32515
|
+
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
32516
32516
|
lastRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
32517
32517
|
lastRunStatus: z.ZodNullable<z.ZodEnum<{
|
|
32518
32518
|
failed: "failed";
|
|
@@ -32539,11 +32539,10 @@ declare const ScheduledTriggerResponse: z.ZodObject<{
|
|
|
32539
32539
|
createdAt: z.ZodString;
|
|
32540
32540
|
updatedAt: z.ZodString;
|
|
32541
32541
|
enabled: z.ZodBoolean;
|
|
32542
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
32542
32543
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
32543
32544
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
32544
32545
|
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
32545
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
32546
|
-
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
32547
32546
|
ref: z.ZodString;
|
|
32548
32547
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
32549
32548
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
@@ -32553,6 +32552,7 @@ declare const ScheduledTriggerResponse: z.ZodObject<{
|
|
|
32553
32552
|
retryDelaySeconds: z.ZodInt;
|
|
32554
32553
|
timeoutSeconds: z.ZodInt;
|
|
32555
32554
|
nextRunAt: z.ZodNullable<z.ZodString>;
|
|
32555
|
+
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
32556
32556
|
}, z.core.$strip>;
|
|
32557
32557
|
}, z.core.$strip>;
|
|
32558
32558
|
declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
@@ -32563,11 +32563,10 @@ declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
|
32563
32563
|
createdAt: z.ZodString;
|
|
32564
32564
|
updatedAt: z.ZodString;
|
|
32565
32565
|
enabled: z.ZodBoolean;
|
|
32566
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
32566
32567
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
32567
32568
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
32568
32569
|
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
32569
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
32570
|
-
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
32571
32570
|
ref: z.ZodString;
|
|
32572
32571
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
32573
32572
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
@@ -32577,6 +32576,7 @@ declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
|
32577
32576
|
retryDelaySeconds: z.ZodInt;
|
|
32578
32577
|
timeoutSeconds: z.ZodInt;
|
|
32579
32578
|
nextRunAt: z.ZodNullable<z.ZodString>;
|
|
32579
|
+
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
32580
32580
|
}, z.core.$strip>>;
|
|
32581
32581
|
pagination: z.ZodObject<{
|
|
32582
32582
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -32594,11 +32594,10 @@ declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
|
32594
32594
|
createdAt: z.ZodString;
|
|
32595
32595
|
updatedAt: z.ZodString;
|
|
32596
32596
|
enabled: z.ZodBoolean;
|
|
32597
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
32597
32598
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
32598
32599
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
32599
32600
|
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
32600
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
32601
|
-
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
32602
32601
|
ref: z.ZodString;
|
|
32603
32602
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
32604
32603
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
@@ -32607,6 +32606,7 @@ declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
|
32607
32606
|
maxRetries: z.ZodInt;
|
|
32608
32607
|
retryDelaySeconds: z.ZodInt;
|
|
32609
32608
|
timeoutSeconds: z.ZodInt;
|
|
32609
|
+
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
32610
32610
|
lastRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
32611
32611
|
lastRunStatus: z.ZodNullable<z.ZodEnum<{
|
|
32612
32612
|
failed: "failed";
|
|
@@ -32637,14 +32637,6 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
32637
32637
|
id: z.ZodString;
|
|
32638
32638
|
createdAt: z.ZodString;
|
|
32639
32639
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
32640
|
-
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
32641
|
-
status: z.ZodEnum<{
|
|
32642
|
-
pending: "pending";
|
|
32643
|
-
failed: "failed";
|
|
32644
|
-
running: "running";
|
|
32645
|
-
completed: "completed";
|
|
32646
|
-
cancelled: "cancelled";
|
|
32647
|
-
}>;
|
|
32648
32640
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32649
32641
|
type: z.ZodEnum<{
|
|
32650
32642
|
commit: "commit";
|
|
@@ -32654,11 +32646,19 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
32654
32646
|
name: z.ZodString;
|
|
32655
32647
|
hash: z.ZodString;
|
|
32656
32648
|
}, z.core.$strip>>>;
|
|
32649
|
+
status: z.ZodEnum<{
|
|
32650
|
+
pending: "pending";
|
|
32651
|
+
failed: "failed";
|
|
32652
|
+
running: "running";
|
|
32653
|
+
completed: "completed";
|
|
32654
|
+
cancelled: "cancelled";
|
|
32655
|
+
}>;
|
|
32657
32656
|
scheduledTriggerId: z.ZodString;
|
|
32658
32657
|
scheduledFor: z.ZodString;
|
|
32659
32658
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
32660
32659
|
completedAt: z.ZodNullable<z.ZodString>;
|
|
32661
32660
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
32661
|
+
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
32662
32662
|
attemptNumber: z.ZodInt;
|
|
32663
32663
|
idempotencyKey: z.ZodString;
|
|
32664
32664
|
}, z.core.$strip>;
|
|
@@ -32668,14 +32668,6 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
32668
32668
|
id: z.ZodString;
|
|
32669
32669
|
createdAt: z.ZodString;
|
|
32670
32670
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
32671
|
-
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
32672
|
-
status: z.ZodEnum<{
|
|
32673
|
-
pending: "pending";
|
|
32674
|
-
failed: "failed";
|
|
32675
|
-
running: "running";
|
|
32676
|
-
completed: "completed";
|
|
32677
|
-
cancelled: "cancelled";
|
|
32678
|
-
}>;
|
|
32679
32671
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32680
32672
|
type: z.ZodEnum<{
|
|
32681
32673
|
commit: "commit";
|
|
@@ -32685,11 +32677,19 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
32685
32677
|
name: z.ZodString;
|
|
32686
32678
|
hash: z.ZodString;
|
|
32687
32679
|
}, z.core.$strip>>>;
|
|
32680
|
+
status: z.ZodEnum<{
|
|
32681
|
+
pending: "pending";
|
|
32682
|
+
failed: "failed";
|
|
32683
|
+
running: "running";
|
|
32684
|
+
completed: "completed";
|
|
32685
|
+
cancelled: "cancelled";
|
|
32686
|
+
}>;
|
|
32688
32687
|
scheduledTriggerId: z.ZodString;
|
|
32689
32688
|
scheduledFor: z.ZodString;
|
|
32690
32689
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
32691
32690
|
completedAt: z.ZodNullable<z.ZodString>;
|
|
32692
32691
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
32692
|
+
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
32693
32693
|
attemptNumber: z.ZodInt;
|
|
32694
32694
|
idempotencyKey: z.ZodString;
|
|
32695
32695
|
}, z.core.$strip>>;
|
|
@@ -32829,7 +32829,6 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32829
32829
|
name: z.ZodString;
|
|
32830
32830
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32831
32831
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
32832
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32833
32832
|
config: z.ZodObject<{
|
|
32834
32833
|
type: z.ZodLiteral<"mcp">;
|
|
32835
32834
|
mcp: z.ZodObject<{
|
|
@@ -32856,6 +32855,7 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32856
32855
|
prompt: z.ZodOptional<z.ZodString>;
|
|
32857
32856
|
}, z.core.$strip>;
|
|
32858
32857
|
}, z.core.$strip>;
|
|
32858
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32859
32859
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
32860
32860
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
32861
32861
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -32866,8 +32866,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32866
32866
|
id: z.ZodString;
|
|
32867
32867
|
name: z.ZodString;
|
|
32868
32868
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32869
|
-
baseUrl: z.ZodURL;
|
|
32870
32869
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32870
|
+
baseUrl: z.ZodURL;
|
|
32871
32871
|
}, z.core.$strip>>>;
|
|
32872
32872
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32873
32873
|
id: z.ZodString;
|
|
@@ -32891,15 +32891,15 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32891
32891
|
name: z.ZodString;
|
|
32892
32892
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32893
32893
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
32894
|
-
|
|
32895
|
-
|
|
32894
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32895
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
32896
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
32896
32897
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32897
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
32898
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
32898
32899
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32899
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
32900
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
32900
32901
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32901
32902
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
32902
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32903
32903
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
32904
32904
|
}, z.core.$strip>>>;
|
|
32905
32905
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -32952,7 +32952,6 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32952
32952
|
name: z.ZodString;
|
|
32953
32953
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32954
32954
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
32955
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32956
32955
|
config: z.ZodObject<{
|
|
32957
32956
|
type: z.ZodLiteral<"mcp">;
|
|
32958
32957
|
mcp: z.ZodObject<{
|
|
@@ -32979,6 +32978,7 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32979
32978
|
prompt: z.ZodOptional<z.ZodString>;
|
|
32980
32979
|
}, z.core.$strip>;
|
|
32981
32980
|
}, z.core.$strip>;
|
|
32981
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32982
32982
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
32983
32983
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
32984
32984
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -33083,8 +33083,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
33083
33083
|
id: z.ZodString;
|
|
33084
33084
|
name: z.ZodString;
|
|
33085
33085
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33086
|
-
baseUrl: z.ZodURL;
|
|
33087
33086
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33087
|
+
baseUrl: z.ZodURL;
|
|
33088
33088
|
}, z.core.$strip>>>;
|
|
33089
33089
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
33090
33090
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -33104,11 +33104,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
33104
33104
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33105
33105
|
id: z.ZodString;
|
|
33106
33106
|
name: z.ZodString;
|
|
33107
|
-
|
|
33107
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33108
33108
|
credentialStoreId: z.ZodString;
|
|
33109
33109
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
33110
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33111
33110
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33111
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33112
33112
|
type: z.ZodEnum<{
|
|
33113
33113
|
readonly memory: "memory";
|
|
33114
33114
|
readonly keychain: "keychain";
|
|
@@ -33320,7 +33320,6 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33320
33320
|
createdAt: z.ZodString;
|
|
33321
33321
|
updatedAt: z.ZodString;
|
|
33322
33322
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33323
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
33324
33323
|
config: z.ZodType<{
|
|
33325
33324
|
type: "mcp";
|
|
33326
33325
|
mcp: ToolMcpConfig;
|
|
@@ -33334,6 +33333,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33334
33333
|
type: "mcp";
|
|
33335
33334
|
mcp: ToolMcpConfig;
|
|
33336
33335
|
}>>;
|
|
33336
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
33337
33337
|
credentialScope: z.ZodString;
|
|
33338
33338
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
33339
33339
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -33346,8 +33346,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33346
33346
|
description: z.ZodNullable<z.ZodString>;
|
|
33347
33347
|
createdAt: z.ZodString;
|
|
33348
33348
|
updatedAt: z.ZodString;
|
|
33349
|
-
baseUrl: z.ZodString;
|
|
33350
33349
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33350
|
+
baseUrl: z.ZodString;
|
|
33351
33351
|
}, z.core.$strip>>>;
|
|
33352
33352
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33353
33353
|
id: z.ZodString;
|
|
@@ -33426,7 +33426,6 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33426
33426
|
createdAt: z.ZodString;
|
|
33427
33427
|
updatedAt: z.ZodString;
|
|
33428
33428
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33429
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
33430
33429
|
config: z.ZodType<{
|
|
33431
33430
|
type: "mcp";
|
|
33432
33431
|
mcp: ToolMcpConfig;
|
|
@@ -33440,6 +33439,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33440
33439
|
type: "mcp";
|
|
33441
33440
|
mcp: ToolMcpConfig;
|
|
33442
33441
|
}>>;
|
|
33442
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
33443
33443
|
credentialScope: z.ZodString;
|
|
33444
33444
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
33445
33445
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -33568,8 +33568,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33568
33568
|
description: z.ZodNullable<z.ZodString>;
|
|
33569
33569
|
createdAt: z.ZodString;
|
|
33570
33570
|
updatedAt: z.ZodString;
|
|
33571
|
-
baseUrl: z.ZodString;
|
|
33572
33571
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33572
|
+
baseUrl: z.ZodString;
|
|
33573
33573
|
}, z.core.$strip>>>;
|
|
33574
33574
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
33575
33575
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -33591,18 +33591,18 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33591
33591
|
name: z.ZodString;
|
|
33592
33592
|
createdAt: z.ZodString;
|
|
33593
33593
|
updatedAt: z.ZodString;
|
|
33594
|
-
|
|
33594
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
33595
33595
|
credentialStoreId: z.ZodString;
|
|
33596
33596
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
33597
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
33598
33597
|
userId: z.ZodNullable<z.ZodString>;
|
|
33598
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
33599
33599
|
type: z.ZodEnum<{
|
|
33600
33600
|
readonly memory: "memory";
|
|
33601
33601
|
readonly keychain: "keychain";
|
|
33602
33602
|
readonly nango: "nango";
|
|
33603
33603
|
readonly composio: "composio";
|
|
33604
33604
|
}>;
|
|
33605
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
33605
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod0.BuildSchema<"select", {
|
|
33606
33606
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
33607
33607
|
name: "created_at";
|
|
33608
33608
|
tableName: "tools";
|
|
@@ -33882,7 +33882,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33882
33882
|
}, {}, {
|
|
33883
33883
|
length: 256;
|
|
33884
33884
|
}>;
|
|
33885
|
-
},
|
|
33885
|
+
}, drizzle_zod0.BuildRefine<{
|
|
33886
33886
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
33887
33887
|
name: "created_at";
|
|
33888
33888
|
tableName: "tools";
|
|
@@ -34221,7 +34221,6 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34221
34221
|
createdAt: z.ZodString;
|
|
34222
34222
|
updatedAt: z.ZodString;
|
|
34223
34223
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
34224
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
34225
34224
|
config: z.ZodType<{
|
|
34226
34225
|
type: "mcp";
|
|
34227
34226
|
mcp: ToolMcpConfig;
|
|
@@ -34235,6 +34234,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34235
34234
|
type: "mcp";
|
|
34236
34235
|
mcp: ToolMcpConfig;
|
|
34237
34236
|
}>>;
|
|
34237
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
34238
34238
|
credentialScope: z.ZodString;
|
|
34239
34239
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
34240
34240
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -34363,8 +34363,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34363
34363
|
description: z.ZodNullable<z.ZodString>;
|
|
34364
34364
|
createdAt: z.ZodString;
|
|
34365
34365
|
updatedAt: z.ZodString;
|
|
34366
|
-
baseUrl: z.ZodString;
|
|
34367
34366
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34367
|
+
baseUrl: z.ZodString;
|
|
34368
34368
|
}, z.core.$strip>>>;
|
|
34369
34369
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
34370
34370
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -34386,18 +34386,18 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34386
34386
|
name: z.ZodString;
|
|
34387
34387
|
createdAt: z.ZodString;
|
|
34388
34388
|
updatedAt: z.ZodString;
|
|
34389
|
-
|
|
34389
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
34390
34390
|
credentialStoreId: z.ZodString;
|
|
34391
34391
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
34392
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
34393
34392
|
userId: z.ZodNullable<z.ZodString>;
|
|
34393
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
34394
34394
|
type: z.ZodEnum<{
|
|
34395
34395
|
readonly memory: "memory";
|
|
34396
34396
|
readonly keychain: "keychain";
|
|
34397
34397
|
readonly nango: "nango";
|
|
34398
34398
|
readonly composio: "composio";
|
|
34399
34399
|
}>;
|
|
34400
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
34400
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod0.BuildSchema<"select", {
|
|
34401
34401
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
34402
34402
|
name: "created_at";
|
|
34403
34403
|
tableName: "tools";
|
|
@@ -34677,7 +34677,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34677
34677
|
}, {}, {
|
|
34678
34678
|
length: 256;
|
|
34679
34679
|
}>;
|
|
34680
|
-
},
|
|
34680
|
+
}, drizzle_zod0.BuildRefine<{
|
|
34681
34681
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
34682
34682
|
name: "created_at";
|
|
34683
34683
|
tableName: "tools";
|
|
@@ -34989,7 +34989,6 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34989
34989
|
createdAt: z.ZodString;
|
|
34990
34990
|
updatedAt: z.ZodString;
|
|
34991
34991
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
34992
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
34993
34992
|
config: z.ZodType<{
|
|
34994
34993
|
type: "mcp";
|
|
34995
34994
|
mcp: ToolMcpConfig;
|
|
@@ -35003,6 +35002,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
35003
35002
|
type: "mcp";
|
|
35004
35003
|
mcp: ToolMcpConfig;
|
|
35005
35004
|
}>>;
|
|
35005
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
35006
35006
|
credentialScope: z.ZodString;
|
|
35007
35007
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
35008
35008
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -35015,8 +35015,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
35015
35015
|
description: z.ZodNullable<z.ZodString>;
|
|
35016
35016
|
createdAt: z.ZodString;
|
|
35017
35017
|
updatedAt: z.ZodString;
|
|
35018
|
-
baseUrl: z.ZodString;
|
|
35019
35018
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35019
|
+
baseUrl: z.ZodString;
|
|
35020
35020
|
}, z.core.$strip>>>;
|
|
35021
35021
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
35022
35022
|
id: z.ZodString;
|
|
@@ -35333,7 +35333,6 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
35333
35333
|
name: z.ZodString;
|
|
35334
35334
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35335
35335
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
35336
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35337
35336
|
config: z.ZodObject<{
|
|
35338
35337
|
type: z.ZodLiteral<"mcp">;
|
|
35339
35338
|
mcp: z.ZodObject<{
|
|
@@ -35360,6 +35359,7 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
35360
35359
|
prompt: z.ZodOptional<z.ZodString>;
|
|
35361
35360
|
}, z.core.$strip>;
|
|
35362
35361
|
}, z.core.$strip>;
|
|
35362
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35363
35363
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
35364
35364
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
35365
35365
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -35370,8 +35370,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
35370
35370
|
id: z.ZodString;
|
|
35371
35371
|
name: z.ZodString;
|
|
35372
35372
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35373
|
-
baseUrl: z.ZodURL;
|
|
35374
35373
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35374
|
+
baseUrl: z.ZodURL;
|
|
35375
35375
|
}, z.core.$strip>>>;
|
|
35376
35376
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
35377
35377
|
id: z.ZodString;
|
|
@@ -35395,15 +35395,15 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
35395
35395
|
name: z.ZodString;
|
|
35396
35396
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35397
35397
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
35398
|
-
|
|
35399
|
-
|
|
35398
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35399
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
35400
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
35400
35401
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35401
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
35402
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
35402
35403
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35403
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
35404
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>>;
|
|
35404
35405
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35405
35406
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
35406
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35407
35407
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
35408
35408
|
}, z.core.$strip>>>;
|
|
35409
35409
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -35619,7 +35619,6 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
35619
35619
|
createdAt: z.ZodString;
|
|
35620
35620
|
updatedAt: z.ZodString;
|
|
35621
35621
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
35622
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
35623
35622
|
config: z.ZodType<{
|
|
35624
35623
|
type: "mcp";
|
|
35625
35624
|
mcp: ToolMcpConfig;
|
|
@@ -35633,6 +35632,7 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
35633
35632
|
type: "mcp";
|
|
35634
35633
|
mcp: ToolMcpConfig;
|
|
35635
35634
|
}>>;
|
|
35635
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
35636
35636
|
credentialScope: z.ZodString;
|
|
35637
35637
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
35638
35638
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -35645,8 +35645,8 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
35645
35645
|
description: z.ZodNullable<z.ZodString>;
|
|
35646
35646
|
createdAt: z.ZodString;
|
|
35647
35647
|
updatedAt: z.ZodString;
|
|
35648
|
-
baseUrl: z.ZodString;
|
|
35649
35648
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35649
|
+
baseUrl: z.ZodString;
|
|
35650
35650
|
}, z.core.$strip>>>;
|
|
35651
35651
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
35652
35652
|
id: z.ZodString;
|
|
@@ -35747,7 +35747,6 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
35747
35747
|
tenantId: z.ZodString;
|
|
35748
35748
|
projectId: z.ZodString;
|
|
35749
35749
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
35750
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35751
35750
|
config: z.ZodObject<{
|
|
35752
35751
|
type: z.ZodLiteral<"mcp">;
|
|
35753
35752
|
mcp: z.ZodObject<{
|
|
@@ -35774,6 +35773,7 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
35774
35773
|
prompt: z.ZodOptional<z.ZodString>;
|
|
35775
35774
|
}, z.core.$strip>;
|
|
35776
35775
|
}, z.core.$strip>;
|
|
35776
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35777
35777
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
35778
35778
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
35779
35779
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -35808,7 +35808,6 @@ declare const McpToolListResponse: z.ZodObject<{
|
|
|
35808
35808
|
tenantId: z.ZodString;
|
|
35809
35809
|
projectId: z.ZodString;
|
|
35810
35810
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
35811
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35812
35811
|
config: z.ZodObject<{
|
|
35813
35812
|
type: z.ZodLiteral<"mcp">;
|
|
35814
35813
|
mcp: z.ZodObject<{
|
|
@@ -35835,6 +35834,7 @@ declare const McpToolListResponse: z.ZodObject<{
|
|
|
35835
35834
|
prompt: z.ZodOptional<z.ZodString>;
|
|
35836
35835
|
}, z.core.$strip>;
|
|
35837
35836
|
}, z.core.$strip>;
|
|
35837
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35838
35838
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
35839
35839
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
35840
35840
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -35873,7 +35873,7 @@ declare const SubAgentTeamAgentRelationResponse: z.ZodObject<{
|
|
|
35873
35873
|
id: z.ZodString;
|
|
35874
35874
|
createdAt: z.ZodString;
|
|
35875
35875
|
updatedAt: z.ZodString;
|
|
35876
|
-
headers: z.ZodNullable<z.ZodType<
|
|
35876
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
35877
35877
|
subAgentId: z.ZodString;
|
|
35878
35878
|
targetAgentId: z.ZodString;
|
|
35879
35879
|
}, z.core.$strip>;
|
|
@@ -35883,7 +35883,7 @@ declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
|
|
|
35883
35883
|
id: z.ZodString;
|
|
35884
35884
|
createdAt: z.ZodString;
|
|
35885
35885
|
updatedAt: z.ZodString;
|
|
35886
|
-
headers: z.ZodNullable<z.ZodType<
|
|
35886
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
35887
35887
|
subAgentId: z.ZodString;
|
|
35888
35888
|
targetAgentId: z.ZodString;
|
|
35889
35889
|
}, z.core.$strip>>;
|
|
@@ -35900,9 +35900,9 @@ declare const SubAgentExternalAgentRelationResponse: z.ZodObject<{
|
|
|
35900
35900
|
id: z.ZodString;
|
|
35901
35901
|
createdAt: z.ZodString;
|
|
35902
35902
|
updatedAt: z.ZodString;
|
|
35903
|
-
headers: z.ZodNullable<z.ZodType<
|
|
35904
|
-
subAgentId: z.ZodString;
|
|
35903
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
35905
35904
|
externalAgentId: z.ZodString;
|
|
35905
|
+
subAgentId: z.ZodString;
|
|
35906
35906
|
}, z.core.$strip>;
|
|
35907
35907
|
}, z.core.$strip>;
|
|
35908
35908
|
declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
@@ -35910,9 +35910,9 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
|
35910
35910
|
id: z.ZodString;
|
|
35911
35911
|
createdAt: z.ZodString;
|
|
35912
35912
|
updatedAt: z.ZodString;
|
|
35913
|
-
headers: z.ZodNullable<z.ZodType<
|
|
35914
|
-
subAgentId: z.ZodString;
|
|
35913
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod0.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod0.Json, unknown>>>;
|
|
35915
35914
|
externalAgentId: z.ZodString;
|
|
35915
|
+
subAgentId: z.ZodString;
|
|
35916
35916
|
}, z.core.$strip>>;
|
|
35917
35917
|
pagination: z.ZodObject<{
|
|
35918
35918
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -36141,7 +36141,7 @@ declare const PaginationWithRefQueryParamsSchema: z.ZodObject<{
|
|
|
36141
36141
|
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
36142
36142
|
ref: z.ZodOptional<z.ZodString>;
|
|
36143
36143
|
}, z.core.$strip>;
|
|
36144
|
-
declare const ProjectMetadataSelectSchema:
|
|
36144
|
+
declare const ProjectMetadataSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
36145
36145
|
id: drizzle_orm_pg_core0.PgColumn<{
|
|
36146
36146
|
name: "id";
|
|
36147
36147
|
tableName: "project_metadata";
|
|
@@ -36235,7 +36235,7 @@ declare const ProjectMetadataSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
36235
36235
|
}, {}, {
|
|
36236
36236
|
length: 512;
|
|
36237
36237
|
}>;
|
|
36238
|
-
},
|
|
36238
|
+
}, drizzle_zod0.BuildRefine<{
|
|
36239
36239
|
id: drizzle_orm_pg_core0.PgColumn<{
|
|
36240
36240
|
name: "id";
|
|
36241
36241
|
tableName: "project_metadata";
|
|
@@ -36349,7 +36349,7 @@ declare const WorkAppGitHubAccountTypeSchema: z.ZodEnum<{
|
|
|
36349
36349
|
Organization: "Organization";
|
|
36350
36350
|
User: "User";
|
|
36351
36351
|
}>;
|
|
36352
|
-
declare const WorkAppGitHubInstallationSelectSchema:
|
|
36352
|
+
declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
36353
36353
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
36354
36354
|
name: "created_at";
|
|
36355
36355
|
tableName: "work_app_github_installations";
|
|
@@ -36515,7 +36515,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod3.BuildSchema<"s
|
|
|
36515
36515
|
}, {}, {
|
|
36516
36516
|
length: 256;
|
|
36517
36517
|
}>;
|
|
36518
|
-
},
|
|
36518
|
+
}, drizzle_zod0.BuildRefine<{
|
|
36519
36519
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
36520
36520
|
name: "created_at";
|
|
36521
36521
|
tableName: "work_app_github_installations";
|
|
@@ -36728,7 +36728,7 @@ declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<{
|
|
|
36728
36728
|
User: "User";
|
|
36729
36729
|
}>;
|
|
36730
36730
|
}, z.core.$strip>;
|
|
36731
|
-
declare const WorkAppGitHubRepositorySelectSchema:
|
|
36731
|
+
declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
36732
36732
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
36733
36733
|
name: "created_at";
|
|
36734
36734
|
tableName: "work_app_github_repositories";
|
|
@@ -36873,7 +36873,7 @@ declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod3.BuildSchema<"sel
|
|
|
36873
36873
|
identity: undefined;
|
|
36874
36874
|
generated: undefined;
|
|
36875
36875
|
}, {}, {}>;
|
|
36876
|
-
},
|
|
36876
|
+
}, drizzle_zod0.BuildRefine<{
|
|
36877
36877
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
36878
36878
|
name: "created_at";
|
|
36879
36879
|
tableName: "work_app_github_repositories";
|
|
@@ -37034,7 +37034,7 @@ declare const WorkAppGitHubRepositoryApiInsertSchema: z.ZodObject<{
|
|
|
37034
37034
|
repositoryFullName: z.ZodString;
|
|
37035
37035
|
private: z.ZodOptional<z.ZodBoolean>;
|
|
37036
37036
|
}, z.core.$strip>;
|
|
37037
|
-
declare const WorkAppGitHubProjectRepositoryAccessSelectSchema:
|
|
37037
|
+
declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
37038
37038
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
37039
37039
|
name: "created_at";
|
|
37040
37040
|
tableName: "work_app_github_project_repository_access";
|
|
@@ -37145,7 +37145,7 @@ declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod3.Bui
|
|
|
37145
37145
|
}, {}, {
|
|
37146
37146
|
length: 256;
|
|
37147
37147
|
}>;
|
|
37148
|
-
},
|
|
37148
|
+
}, drizzle_zod0.BuildRefine<{
|
|
37149
37149
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
37150
37150
|
name: "created_at";
|
|
37151
37151
|
tableName: "work_app_github_project_repository_access";
|
|
@@ -37257,7 +37257,7 @@ declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod3.Bui
|
|
|
37257
37257
|
length: 256;
|
|
37258
37258
|
}>;
|
|
37259
37259
|
}, undefined>, undefined>;
|
|
37260
|
-
declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema:
|
|
37260
|
+
declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
37261
37261
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
37262
37262
|
name: "created_at";
|
|
37263
37263
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
@@ -37387,7 +37387,7 @@ declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema: drizzle_zod3.Bui
|
|
|
37387
37387
|
}, {}, {
|
|
37388
37388
|
length: 256;
|
|
37389
37389
|
}>;
|
|
37390
|
-
},
|
|
37390
|
+
}, drizzle_zod0.BuildRefine<{
|
|
37391
37391
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
37392
37392
|
name: "created_at";
|
|
37393
37393
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
@@ -37541,7 +37541,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
37541
37541
|
all: "all";
|
|
37542
37542
|
selected: "selected";
|
|
37543
37543
|
}>;
|
|
37544
|
-
repositories: z.ZodArray<
|
|
37544
|
+
repositories: z.ZodArray<drizzle_zod0.BuildSchema<"select", {
|
|
37545
37545
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
37546
37546
|
name: "created_at";
|
|
37547
37547
|
tableName: "work_app_github_repositories";
|
|
@@ -37686,7 +37686,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
37686
37686
|
identity: undefined;
|
|
37687
37687
|
generated: undefined;
|
|
37688
37688
|
}, {}, {}>;
|
|
37689
|
-
},
|
|
37689
|
+
}, drizzle_zod0.BuildRefine<{
|
|
37690
37690
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
37691
37691
|
name: "created_at";
|
|
37692
37692
|
tableName: "work_app_github_repositories";
|
|
@@ -37833,7 +37833,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
37833
37833
|
}, {}, {}>;
|
|
37834
37834
|
}, undefined>, undefined>>;
|
|
37835
37835
|
}, z.core.$strip>;
|
|
37836
|
-
declare const WorkAppSlackChannelAgentConfigSelectSchema:
|
|
37836
|
+
declare const WorkAppSlackChannelAgentConfigSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
37837
37837
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
37838
37838
|
name: "created_at";
|
|
37839
37839
|
tableName: "work_app_slack_channel_agent_configs";
|
|
@@ -38071,7 +38071,7 @@ declare const WorkAppSlackChannelAgentConfigSelectSchema: drizzle_zod3.BuildSche
|
|
|
38071
38071
|
identity: undefined;
|
|
38072
38072
|
generated: undefined;
|
|
38073
38073
|
}, {}, {}>;
|
|
38074
|
-
},
|
|
38074
|
+
}, drizzle_zod0.BuildRefine<{
|
|
38075
38075
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
38076
38076
|
name: "created_at";
|
|
38077
38077
|
tableName: "work_app_slack_channel_agent_configs";
|
|
@@ -38310,7 +38310,7 @@ declare const WorkAppSlackChannelAgentConfigSelectSchema: drizzle_zod3.BuildSche
|
|
|
38310
38310
|
generated: undefined;
|
|
38311
38311
|
}, {}, {}>;
|
|
38312
38312
|
}, undefined>, undefined>;
|
|
38313
|
-
declare const WorkAppSlackWorkspaceSelectSchema:
|
|
38313
|
+
declare const WorkAppSlackWorkspaceSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
38314
38314
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
38315
38315
|
name: "created_at";
|
|
38316
38316
|
tableName: "work_app_slack_workspaces";
|
|
@@ -38605,7 +38605,7 @@ declare const WorkAppSlackWorkspaceSelectSchema: drizzle_zod3.BuildSchema<"selec
|
|
|
38605
38605
|
identity: undefined;
|
|
38606
38606
|
generated: undefined;
|
|
38607
38607
|
}, {}, {}>;
|
|
38608
|
-
},
|
|
38608
|
+
}, drizzle_zod0.BuildRefine<{
|
|
38609
38609
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
38610
38610
|
name: "created_at";
|
|
38611
38611
|
tableName: "work_app_slack_workspaces";
|
|
@@ -38945,7 +38945,7 @@ declare const WorkAppSlackMcpToolAccessConfigApiInsertSchema: z.ZodObject<{
|
|
|
38945
38945
|
dmEnabled: z.ZodBoolean;
|
|
38946
38946
|
channelIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
38947
38947
|
}, z.core.$strip>;
|
|
38948
|
-
declare const UserProfileSelectSchema:
|
|
38948
|
+
declare const UserProfileSelectSchema: drizzle_zod0.BuildSchema<"select", {
|
|
38949
38949
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
38950
38950
|
name: "created_at";
|
|
38951
38951
|
tableName: "user_profile";
|
|
@@ -39050,7 +39050,7 @@ declare const UserProfileSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
39050
39050
|
}, {}, {
|
|
39051
39051
|
$type: Record<string, unknown>;
|
|
39052
39052
|
}>;
|
|
39053
|
-
},
|
|
39053
|
+
}, drizzle_zod0.BuildRefine<{
|
|
39054
39054
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
39055
39055
|
name: "created_at";
|
|
39056
39056
|
tableName: "user_profile";
|
|
@@ -39220,8 +39220,8 @@ declare const WorkflowExecutionInsertSchema: z.ZodObject<{
|
|
|
39220
39220
|
id: z.ZodString;
|
|
39221
39221
|
tenantId: z.ZodString;
|
|
39222
39222
|
projectId: z.ZodString;
|
|
39223
|
-
agentId: z.ZodString;
|
|
39224
39223
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
39224
|
+
agentId: z.ZodString;
|
|
39225
39225
|
conversationId: z.ZodString;
|
|
39226
39226
|
requestId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
39227
39227
|
status: z.ZodDefault<z.ZodEnum<{
|
|
@@ -39238,8 +39238,8 @@ declare const WorkflowExecutionUpdateSchema: z.ZodObject<{
|
|
|
39238
39238
|
id: z.ZodOptional<z.ZodString>;
|
|
39239
39239
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
39240
39240
|
projectId: z.ZodOptional<z.ZodString>;
|
|
39241
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
39242
39241
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>;
|
|
39242
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
39243
39243
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
39244
39244
|
requestId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
39245
39245
|
status: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|