@inkeep/agents-core 0.78.5 → 0.79.0
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/permissions.d.ts +9 -9
- package/dist/data-access/manage/agents.d.ts +5 -5
- package/dist/data-access/manage/artifactComponents.d.ts +2 -2
- package/dist/data-access/manage/functionTools.d.ts +2 -2
- package/dist/data-access/manage/skills.d.ts +6 -6
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgentRelations.d.ts +2 -2
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgents.d.ts +3 -3
- package/dist/data-access/manage/tools.d.ts +6 -6
- package/dist/data-access/manage/triggers.d.ts +1 -1
- package/dist/data-access/manage/webhookDestinations.d.ts +2 -1
- package/dist/data-access/runtime/apiKeys.d.ts +4 -4
- package/dist/data-access/runtime/apps.d.ts +6 -6
- package/dist/data-access/runtime/conversations.d.ts +28 -28
- package/dist/data-access/runtime/events.d.ts +2 -2
- package/dist/data-access/runtime/feedback.d.ts +2 -2
- package/dist/data-access/runtime/messages.d.ts +9 -9
- package/dist/data-access/runtime/organizations.d.ts +4 -3
- package/dist/data-access/runtime/organizations.js +5 -4
- package/dist/data-access/runtime/scheduledTriggerUsers.d.ts +1 -1
- package/dist/data-access/runtime/tasks.d.ts +5 -5
- package/dist/db/manage/manage-schema.d.ts +521 -502
- package/dist/db/manage/manage-schema.js +2 -1
- package/dist/db/runtime/runtime-schema.d.ts +440 -440
- package/dist/validation/schemas/skills.d.ts +40 -40
- package/dist/validation/schemas.d.ts +325 -280
- package/dist/validation/schemas.js +6 -2
- package/drizzle/manage/0024_blue_junta.sql +2 -0
- package/drizzle/manage/meta/0024_snapshot.json +4323 -0
- package/drizzle/manage/meta/_journal.json +7 -0
- package/package.json +1 -1
|
@@ -848,9 +848,9 @@ declare const SubAgentUpdateSchema: z.ZodObject<{
|
|
|
848
848
|
declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
849
849
|
id: z.ZodString;
|
|
850
850
|
name: z.ZodString;
|
|
851
|
+
description: z.ZodNullable<z.ZodString>;
|
|
851
852
|
createdAt: z.ZodString;
|
|
852
853
|
updatedAt: z.ZodString;
|
|
853
|
-
description: z.ZodNullable<z.ZodString>;
|
|
854
854
|
models: z.ZodNullable<z.ZodType<{
|
|
855
855
|
base?: {
|
|
856
856
|
model?: string | undefined;
|
|
@@ -976,9 +976,9 @@ declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
|
976
976
|
declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
977
977
|
id: z.ZodString;
|
|
978
978
|
name: z.ZodString;
|
|
979
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
979
980
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
980
981
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
981
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
982
982
|
models: z.ZodOptional<z.ZodObject<{
|
|
983
983
|
base: z.ZodOptional<z.ZodObject<{
|
|
984
984
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -1026,9 +1026,9 @@ declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
|
1026
1026
|
declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
1027
1027
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1028
1028
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1029
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
1029
1030
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
1030
1031
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
1031
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
1032
1032
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
1033
1033
|
base: z.ZodOptional<z.ZodObject<{
|
|
1034
1034
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -2828,7 +2828,7 @@ declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
2828
2828
|
}, {}, {
|
|
2829
2829
|
length: 256;
|
|
2830
2830
|
}>;
|
|
2831
|
-
}, "id" | "name" | "
|
|
2831
|
+
}, "id" | "name" | "description" | "createdAt" | "updatedAt" | "projectId" | "tenantId" | "models" | "stopWhen" | "prompt" | "defaultSubAgentId" | "contextConfigId" | "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>>;
|
|
@@ -2991,9 +2991,9 @@ declare const AgentUpdateSchema: z.ZodObject<{
|
|
|
2991
2991
|
declare const AgentApiSelectSchema: z.ZodObject<{
|
|
2992
2992
|
id: z.ZodString;
|
|
2993
2993
|
name: z.ZodString;
|
|
2994
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2994
2995
|
createdAt: z.ZodString;
|
|
2995
2996
|
updatedAt: z.ZodString;
|
|
2996
|
-
description: z.ZodNullable<z.ZodString>;
|
|
2997
2997
|
models: z.ZodNullable<z.ZodType<{
|
|
2998
2998
|
base?: {
|
|
2999
2999
|
model?: string | undefined;
|
|
@@ -3712,8 +3712,8 @@ type ComponentJoin = z.infer<typeof ComponentJoinSchema>;
|
|
|
3712
3712
|
*/
|
|
3713
3713
|
type SignatureValidationOptions = z.infer<typeof SignatureValidationOptionsSchema>;
|
|
3714
3714
|
declare const TriggerInvocationStatusEnum: z.ZodEnum<{
|
|
3715
|
-
pending: "pending";
|
|
3716
3715
|
success: "success";
|
|
3716
|
+
pending: "pending";
|
|
3717
3717
|
failed: "failed";
|
|
3718
3718
|
}>;
|
|
3719
3719
|
declare const maxWebhookDispatchDelayMs = 600000;
|
|
@@ -4558,7 +4558,7 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
4558
4558
|
}, {}, {
|
|
4559
4559
|
length: 256;
|
|
4560
4560
|
}>;
|
|
4561
|
-
}, "id" | "name" | "
|
|
4561
|
+
}, "id" | "name" | "description" | "createdAt" | "updatedAt" | "projectId" | "tenantId" | "agentId" | "enabled" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification" | "runAsUserId" | "dispatchDelayMs" | "createdBy">, 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>>;
|
|
@@ -4592,9 +4592,9 @@ declare const TriggerUpdateSchema: z.ZodObject<{
|
|
|
4592
4592
|
declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
4593
4593
|
id: z.ZodString;
|
|
4594
4594
|
name: z.ZodString;
|
|
4595
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4595
4596
|
createdAt: z.ZodString;
|
|
4596
4597
|
updatedAt: z.ZodString;
|
|
4597
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4598
4598
|
enabled: z.ZodBoolean;
|
|
4599
4599
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4600
4600
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
@@ -4685,9 +4685,9 @@ declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
|
4685
4685
|
declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
4686
4686
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4687
4687
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4688
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4688
4689
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4689
4690
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4690
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4691
4691
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
4692
4692
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4693
4693
|
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
@@ -4709,9 +4709,9 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4709
4709
|
declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
4710
4710
|
id: z.ZodString;
|
|
4711
4711
|
name: z.ZodString;
|
|
4712
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4712
4713
|
createdAt: z.ZodString;
|
|
4713
4714
|
updatedAt: z.ZodString;
|
|
4714
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4715
4715
|
enabled: z.ZodBoolean;
|
|
4716
4716
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4717
4717
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
@@ -5331,7 +5331,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
5331
5331
|
}, {}, {
|
|
5332
5332
|
length: 256;
|
|
5333
5333
|
}>;
|
|
5334
|
-
}, "id" | "createdAt" | "
|
|
5334
|
+
}, "id" | "createdAt" | "projectId" | "tenantId" | "agentId" | "ref" | "status" | "runAsUserId" | "triggerId" | "conversationId" | "batchId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
5335
5335
|
declare const SetTriggerUsersRequestSchema: z.ZodObject<{
|
|
5336
5336
|
userIds: z.ZodArray<z.ZodString>;
|
|
5337
5337
|
}, z.core.$strip>;
|
|
@@ -5528,7 +5528,8 @@ declare const WebhookDestinationSelectSchema: z.ZodObject<{
|
|
|
5528
5528
|
createdAt: z.ZodString;
|
|
5529
5529
|
updatedAt: z.ZodString;
|
|
5530
5530
|
enabled: z.ZodBoolean;
|
|
5531
|
-
url: z.ZodString
|
|
5531
|
+
url: z.ZodNullable<z.ZodString>;
|
|
5532
|
+
slackChannelId: z.ZodNullable<z.ZodString>;
|
|
5532
5533
|
name: z.ZodString;
|
|
5533
5534
|
description: z.ZodNullable<z.ZodString>;
|
|
5534
5535
|
projectId: z.ZodString;
|
|
@@ -5609,7 +5610,7 @@ declare const WebhookDestinationInsertSchema: drizzle_zod19.BuildSchema<"insert"
|
|
|
5609
5610
|
columnType: "PgText";
|
|
5610
5611
|
data: string;
|
|
5611
5612
|
driverParam: string;
|
|
5612
|
-
notNull:
|
|
5613
|
+
notNull: false;
|
|
5613
5614
|
hasDefault: false;
|
|
5614
5615
|
isPrimaryKey: false;
|
|
5615
5616
|
isAutoincrement: false;
|
|
@@ -5619,6 +5620,25 @@ declare const WebhookDestinationInsertSchema: drizzle_zod19.BuildSchema<"insert"
|
|
|
5619
5620
|
identity: undefined;
|
|
5620
5621
|
generated: undefined;
|
|
5621
5622
|
}, {}, {}>;
|
|
5623
|
+
slackChannelId: drizzle_orm_pg_core297.PgColumn<{
|
|
5624
|
+
name: "slack_channel_id";
|
|
5625
|
+
tableName: "webhook_destinations";
|
|
5626
|
+
dataType: "string";
|
|
5627
|
+
columnType: "PgVarchar";
|
|
5628
|
+
data: string;
|
|
5629
|
+
driverParam: string;
|
|
5630
|
+
notNull: false;
|
|
5631
|
+
hasDefault: false;
|
|
5632
|
+
isPrimaryKey: false;
|
|
5633
|
+
isAutoincrement: false;
|
|
5634
|
+
hasRuntimeDefault: false;
|
|
5635
|
+
enumValues: [string, ...string[]];
|
|
5636
|
+
baseColumn: never;
|
|
5637
|
+
identity: undefined;
|
|
5638
|
+
generated: undefined;
|
|
5639
|
+
}, {}, {
|
|
5640
|
+
length: 256;
|
|
5641
|
+
}>;
|
|
5622
5642
|
eventTypes: drizzle_orm_pg_core297.PgColumn<{
|
|
5623
5643
|
name: "event_types";
|
|
5624
5644
|
tableName: "webhook_destinations";
|
|
@@ -5809,7 +5829,7 @@ declare const WebhookDestinationInsertSchema: drizzle_zod19.BuildSchema<"insert"
|
|
|
5809
5829
|
columnType: "PgText";
|
|
5810
5830
|
data: string;
|
|
5811
5831
|
driverParam: string;
|
|
5812
|
-
notNull:
|
|
5832
|
+
notNull: false;
|
|
5813
5833
|
hasDefault: false;
|
|
5814
5834
|
isPrimaryKey: false;
|
|
5815
5835
|
isAutoincrement: false;
|
|
@@ -5819,6 +5839,25 @@ declare const WebhookDestinationInsertSchema: drizzle_zod19.BuildSchema<"insert"
|
|
|
5819
5839
|
identity: undefined;
|
|
5820
5840
|
generated: undefined;
|
|
5821
5841
|
}, {}, {}>;
|
|
5842
|
+
slackChannelId: drizzle_orm_pg_core297.PgColumn<{
|
|
5843
|
+
name: "slack_channel_id";
|
|
5844
|
+
tableName: "webhook_destinations";
|
|
5845
|
+
dataType: "string";
|
|
5846
|
+
columnType: "PgVarchar";
|
|
5847
|
+
data: string;
|
|
5848
|
+
driverParam: string;
|
|
5849
|
+
notNull: false;
|
|
5850
|
+
hasDefault: false;
|
|
5851
|
+
isPrimaryKey: false;
|
|
5852
|
+
isAutoincrement: false;
|
|
5853
|
+
hasRuntimeDefault: false;
|
|
5854
|
+
enumValues: [string, ...string[]];
|
|
5855
|
+
baseColumn: never;
|
|
5856
|
+
identity: undefined;
|
|
5857
|
+
generated: undefined;
|
|
5858
|
+
}, {}, {
|
|
5859
|
+
length: 256;
|
|
5860
|
+
}>;
|
|
5822
5861
|
eventTypes: drizzle_orm_pg_core297.PgColumn<{
|
|
5823
5862
|
name: "event_types";
|
|
5824
5863
|
tableName: "webhook_destinations";
|
|
@@ -5950,11 +5989,12 @@ declare const WebhookDestinationInsertSchema: drizzle_zod19.BuildSchema<"insert"
|
|
|
5950
5989
|
}, {}, {
|
|
5951
5990
|
length: 256;
|
|
5952
5991
|
}>;
|
|
5953
|
-
}, "id" | "name" | "
|
|
5992
|
+
}, "id" | "name" | "description" | "createdAt" | "updatedAt" | "projectId" | "tenantId" | "enabled" | "headers" | "url" | "slackChannelId" | "eventTypes">, undefined>, undefined>;
|
|
5954
5993
|
declare const WebhookDestinationUpdateSchema: z.ZodObject<{
|
|
5955
5994
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5956
5995
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5957
|
-
url: z.ZodOptional<z.ZodString
|
|
5996
|
+
url: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5997
|
+
slackChannelId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5958
5998
|
eventTypes: z.ZodOptional<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
5959
5999
|
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
5960
6000
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -5970,12 +6010,13 @@ declare const WebhookDestinationUpdateSchema: z.ZodObject<{
|
|
|
5970
6010
|
declare const WebhookDestinationApiSelectSchema: z.ZodObject<{
|
|
5971
6011
|
id: z.ZodString;
|
|
5972
6012
|
name: z.ZodString;
|
|
6013
|
+
description: z.ZodNullable<z.ZodString>;
|
|
5973
6014
|
createdAt: z.ZodString;
|
|
5974
6015
|
updatedAt: z.ZodString;
|
|
5975
|
-
description: z.ZodNullable<z.ZodString>;
|
|
5976
6016
|
enabled: z.ZodBoolean;
|
|
5977
6017
|
headers: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5978
|
-
url: z.ZodString
|
|
6018
|
+
url: z.ZodNullable<z.ZodString>;
|
|
6019
|
+
slackChannelId: z.ZodNullable<z.ZodString>;
|
|
5979
6020
|
eventTypes: z.ZodArray<z.ZodEnum<{
|
|
5980
6021
|
"conversation.created": "conversation.created";
|
|
5981
6022
|
"conversation.updated": "conversation.updated";
|
|
@@ -5996,7 +6037,8 @@ declare const WebhookDestinationApiInsertSchema: z.ZodObject<{
|
|
|
5996
6037
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5997
6038
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5998
6039
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
5999
|
-
url: z.ZodString
|
|
6040
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6041
|
+
slackChannelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6000
6042
|
eventTypes: z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>;
|
|
6001
6043
|
agentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6002
6044
|
evaluatorIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -6004,12 +6046,13 @@ declare const WebhookDestinationApiInsertSchema: z.ZodObject<{
|
|
|
6004
6046
|
declare const WebhookDestinationApiUpdateSchema: z.ZodObject<{
|
|
6005
6047
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6006
6048
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6049
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6007
6050
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6008
6051
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6009
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6010
6052
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
6011
6053
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
6012
|
-
url: z.ZodOptional<z.ZodOptional<z.ZodString
|
|
6054
|
+
url: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6055
|
+
slackChannelId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6013
6056
|
eventTypes: z.ZodOptional<z.ZodOptional<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
6014
6057
|
agentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6015
6058
|
evaluatorIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -6018,12 +6061,13 @@ declare const WebhookDestinationResponse: z.ZodObject<{
|
|
|
6018
6061
|
data: z.ZodObject<{
|
|
6019
6062
|
id: z.ZodString;
|
|
6020
6063
|
name: z.ZodString;
|
|
6064
|
+
description: z.ZodNullable<z.ZodString>;
|
|
6021
6065
|
createdAt: z.ZodString;
|
|
6022
6066
|
updatedAt: z.ZodString;
|
|
6023
|
-
description: z.ZodNullable<z.ZodString>;
|
|
6024
6067
|
enabled: z.ZodBoolean;
|
|
6025
6068
|
headers: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6026
|
-
url: z.ZodString
|
|
6069
|
+
url: z.ZodNullable<z.ZodString>;
|
|
6070
|
+
slackChannelId: z.ZodNullable<z.ZodString>;
|
|
6027
6071
|
eventTypes: z.ZodArray<z.ZodEnum<{
|
|
6028
6072
|
"conversation.created": "conversation.created";
|
|
6029
6073
|
"conversation.updated": "conversation.updated";
|
|
@@ -6043,12 +6087,13 @@ declare const WebhookDestinationListResponse: z.ZodObject<{
|
|
|
6043
6087
|
data: z.ZodArray<z.ZodObject<{
|
|
6044
6088
|
id: z.ZodString;
|
|
6045
6089
|
name: z.ZodString;
|
|
6090
|
+
description: z.ZodNullable<z.ZodString>;
|
|
6046
6091
|
createdAt: z.ZodString;
|
|
6047
6092
|
updatedAt: z.ZodString;
|
|
6048
|
-
description: z.ZodNullable<z.ZodString>;
|
|
6049
6093
|
enabled: z.ZodBoolean;
|
|
6050
6094
|
headers: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6051
|
-
url: z.ZodString
|
|
6095
|
+
url: z.ZodNullable<z.ZodString>;
|
|
6096
|
+
slackChannelId: z.ZodNullable<z.ZodString>;
|
|
6052
6097
|
eventTypes: z.ZodArray<z.ZodEnum<{
|
|
6053
6098
|
"conversation.created": "conversation.created";
|
|
6054
6099
|
"conversation.updated": "conversation.updated";
|
|
@@ -6108,12 +6153,12 @@ declare const ScheduledTriggerSelectSchema: z.ZodObject<{
|
|
|
6108
6153
|
declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
6109
6154
|
id: z.ZodString;
|
|
6110
6155
|
name: z.ZodString;
|
|
6111
|
-
ref: z.ZodOptional<z.ZodString>;
|
|
6112
6156
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6113
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
6114
6157
|
projectId: z.ZodString;
|
|
6115
6158
|
tenantId: z.ZodString;
|
|
6116
6159
|
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6160
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
6161
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
6117
6162
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6118
6163
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6119
6164
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
@@ -6158,10 +6203,10 @@ declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
|
6158
6203
|
declare const ScheduledTriggerApiSelectSchema: z.ZodObject<{
|
|
6159
6204
|
id: z.ZodString;
|
|
6160
6205
|
name: z.ZodString;
|
|
6206
|
+
description: z.ZodNullable<z.ZodString>;
|
|
6161
6207
|
createdAt: z.ZodString;
|
|
6162
6208
|
updatedAt: z.ZodString;
|
|
6163
6209
|
ref: z.ZodString;
|
|
6164
|
-
description: z.ZodNullable<z.ZodString>;
|
|
6165
6210
|
enabled: z.ZodBoolean;
|
|
6166
6211
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6167
6212
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -6179,8 +6224,8 @@ declare const ScheduledTriggerApiSelectSchema: z.ZodObject<{
|
|
|
6179
6224
|
}, z.core.$strip>;
|
|
6180
6225
|
declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
6181
6226
|
name: z.ZodString;
|
|
6182
|
-
ref: z.ZodOptional<z.ZodString>;
|
|
6183
6227
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6228
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
6184
6229
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
6185
6230
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6186
6231
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6199,8 +6244,8 @@ declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
6199
6244
|
}, z.core.$strip>;
|
|
6200
6245
|
declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
6201
6246
|
name: z.ZodString;
|
|
6202
|
-
ref: z.ZodOptional<z.ZodString>;
|
|
6203
6247
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6248
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
6204
6249
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
6205
6250
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6206
6251
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6220,8 +6265,8 @@ declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
|
6220
6265
|
declare const ScheduledTriggerApiUpdateSchema: z.ZodObject<{
|
|
6221
6266
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6222
6267
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6223
|
-
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6224
6268
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6269
|
+
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6225
6270
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
6226
6271
|
payload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
6227
6272
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -6896,7 +6941,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6896
6941
|
}, {}, {
|
|
6897
6942
|
length: 256;
|
|
6898
6943
|
}>;
|
|
6899
|
-
}, "id" | "createdAt" | "
|
|
6944
|
+
}, "id" | "createdAt" | "projectId" | "tenantId" | "agentId" | "ref" | "status" | "runAsUserId" | "scheduledTriggerId" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "conversationIds" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
|
|
6900
6945
|
declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
6901
6946
|
scheduledTriggerId: z.ZodOptional<z.ZodString>;
|
|
6902
6947
|
ref: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -7249,8 +7294,11 @@ declare const TaskUpdateSchema: z.ZodObject<{
|
|
|
7249
7294
|
}>;
|
|
7250
7295
|
declare const TaskApiSelectSchema: z.ZodObject<{
|
|
7251
7296
|
id: z.ZodString;
|
|
7297
|
+
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
7252
7298
|
createdAt: z.ZodString;
|
|
7253
7299
|
updatedAt: z.ZodString;
|
|
7300
|
+
agentId: z.ZodString;
|
|
7301
|
+
subAgentId: z.ZodString;
|
|
7254
7302
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
7255
7303
|
type: z.ZodEnum<{
|
|
7256
7304
|
commit: "commit";
|
|
@@ -7260,16 +7308,16 @@ declare const TaskApiSelectSchema: z.ZodObject<{
|
|
|
7260
7308
|
name: z.ZodString;
|
|
7261
7309
|
hash: z.ZodString;
|
|
7262
7310
|
}, z.core.$strip>>>;
|
|
7263
|
-
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
7264
7311
|
status: z.ZodString;
|
|
7265
|
-
agentId: z.ZodString;
|
|
7266
|
-
subAgentId: z.ZodString;
|
|
7267
7312
|
contextId: z.ZodString;
|
|
7268
7313
|
}, z.core.$strip>;
|
|
7269
7314
|
declare const TaskApiInsertSchema: z.ZodObject<{
|
|
7270
7315
|
id: z.ZodString;
|
|
7316
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
7271
7317
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7272
7318
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7319
|
+
agentId: z.ZodString;
|
|
7320
|
+
subAgentId: z.ZodString;
|
|
7273
7321
|
ref: z.ZodObject<{
|
|
7274
7322
|
type: z.ZodEnum<{
|
|
7275
7323
|
commit: "commit";
|
|
@@ -7279,17 +7327,17 @@ declare const TaskApiInsertSchema: z.ZodObject<{
|
|
|
7279
7327
|
name: z.ZodString;
|
|
7280
7328
|
hash: z.ZodString;
|
|
7281
7329
|
}, z.core.$strip>;
|
|
7282
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
7283
7330
|
status: z.ZodString;
|
|
7284
|
-
agentId: z.ZodString;
|
|
7285
|
-
subAgentId: z.ZodString;
|
|
7286
7331
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
7287
7332
|
contextId: z.ZodString;
|
|
7288
7333
|
}, z.core.$strip>;
|
|
7289
7334
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
7290
7335
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7336
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
7291
7337
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7292
7338
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7339
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7340
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7293
7341
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7294
7342
|
type: z.ZodEnum<{
|
|
7295
7343
|
commit: "commit";
|
|
@@ -7299,10 +7347,7 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
7299
7347
|
name: z.ZodString;
|
|
7300
7348
|
hash: z.ZodString;
|
|
7301
7349
|
}, z.core.$strip>>>;
|
|
7302
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
7303
7350
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7304
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7305
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7306
7351
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7307
7352
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7308
7353
|
}, z.core.$strip>;
|
|
@@ -8366,8 +8411,13 @@ declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
8366
8411
|
}>;
|
|
8367
8412
|
declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
8368
8413
|
id: z.ZodString;
|
|
8414
|
+
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
8369
8415
|
createdAt: z.ZodString;
|
|
8370
8416
|
updatedAt: z.ZodString;
|
|
8417
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8418
|
+
title: z.ZodNullable<z.ZodString>;
|
|
8419
|
+
agentId: z.ZodNullable<z.ZodString>;
|
|
8420
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
8371
8421
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
8372
8422
|
type: z.ZodEnum<{
|
|
8373
8423
|
commit: "commit";
|
|
@@ -8377,19 +8427,19 @@ declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
|
8377
8427
|
name: z.ZodString;
|
|
8378
8428
|
hash: z.ZodString;
|
|
8379
8429
|
}, z.core.$strip>>>;
|
|
8380
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
8381
|
-
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
8382
|
-
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8383
|
-
title: z.ZodNullable<z.ZodString>;
|
|
8384
|
-
agentId: z.ZodNullable<z.ZodString>;
|
|
8385
8430
|
userProperties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8386
8431
|
activeSubAgentId: z.ZodString;
|
|
8387
8432
|
lastContextResolution: z.ZodNullable<z.ZodString>;
|
|
8388
8433
|
}, z.core.$strip>;
|
|
8389
8434
|
declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
8390
8435
|
id: z.ZodString;
|
|
8436
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
8391
8437
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8392
8438
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8439
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8440
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8441
|
+
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8442
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8393
8443
|
ref: z.ZodObject<{
|
|
8394
8444
|
type: z.ZodEnum<{
|
|
8395
8445
|
commit: "commit";
|
|
@@ -8399,11 +8449,6 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
8399
8449
|
name: z.ZodString;
|
|
8400
8450
|
hash: z.ZodString;
|
|
8401
8451
|
}, z.core.$strip>;
|
|
8402
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8403
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
8404
|
-
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8405
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8406
|
-
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8407
8452
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
8408
8453
|
userProperties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8409
8454
|
activeSubAgentId: z.ZodString;
|
|
@@ -8411,8 +8456,13 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
8411
8456
|
}, z.core.$strip>;
|
|
8412
8457
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
8413
8458
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8459
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
8414
8460
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8415
8461
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8462
|
+
properties: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
8463
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8464
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8465
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8416
8466
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
8417
8467
|
type: z.ZodEnum<{
|
|
8418
8468
|
commit: "commit";
|
|
@@ -8422,11 +8472,6 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
8422
8472
|
name: z.ZodString;
|
|
8423
8473
|
hash: z.ZodString;
|
|
8424
8474
|
}, z.core.$strip>>>;
|
|
8425
|
-
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8426
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
8427
|
-
properties: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
8428
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8429
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8430
8475
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8431
8476
|
userProperties: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
8432
8477
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -8518,12 +8563,12 @@ declare const MessageUpdateSchema: z.ZodObject<{
|
|
|
8518
8563
|
}>;
|
|
8519
8564
|
declare const MessageApiSelectSchema: z.ZodObject<{
|
|
8520
8565
|
id: z.ZodString;
|
|
8566
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8567
|
+
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
8521
8568
|
createdAt: z.ZodString;
|
|
8522
8569
|
updatedAt: z.ZodString;
|
|
8523
|
-
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
8524
|
-
role: z.ZodString;
|
|
8525
|
-
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8526
8570
|
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8571
|
+
role: z.ZodString;
|
|
8527
8572
|
fromSubAgentId: z.ZodNullable<z.ZodString>;
|
|
8528
8573
|
toSubAgentId: z.ZodNullable<z.ZodString>;
|
|
8529
8574
|
fromExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -8541,12 +8586,12 @@ declare const MessageApiSelectSchema: z.ZodObject<{
|
|
|
8541
8586
|
}, z.core.$strip>;
|
|
8542
8587
|
declare const MessageApiInsertSchema: z.ZodObject<{
|
|
8543
8588
|
id: z.ZodString;
|
|
8589
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8590
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
8544
8591
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8545
8592
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8546
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
8547
|
-
role: z.ZodString;
|
|
8548
|
-
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8549
8593
|
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8594
|
+
role: z.ZodString;
|
|
8550
8595
|
fromSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8551
8596
|
toSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8552
8597
|
fromExternalAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8564,12 +8609,12 @@ declare const MessageApiInsertSchema: z.ZodObject<{
|
|
|
8564
8609
|
}, z.core.$strip>;
|
|
8565
8610
|
declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
8566
8611
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8612
|
+
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8613
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
8567
8614
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8568
8615
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8569
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
8570
|
-
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8571
|
-
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8572
8616
|
properties: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
8617
|
+
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8573
8618
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8574
8619
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8575
8620
|
fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -8955,41 +9000,41 @@ declare const FeedbackUpdateSchema: z.ZodObject<{
|
|
|
8955
9000
|
in: {};
|
|
8956
9001
|
}>;
|
|
8957
9002
|
declare const FeedbackApiSelectSchema: z.ZodObject<{
|
|
8958
|
-
type: z.ZodString;
|
|
8959
9003
|
id: z.ZodString;
|
|
8960
9004
|
createdAt: z.ZodString;
|
|
8961
9005
|
updatedAt: z.ZodString;
|
|
9006
|
+
type: z.ZodString;
|
|
8962
9007
|
details: z.ZodNullable<z.ZodString>;
|
|
8963
9008
|
conversationId: z.ZodString;
|
|
8964
9009
|
messageId: z.ZodNullable<z.ZodString>;
|
|
8965
9010
|
}, z.core.$strip>;
|
|
8966
9011
|
declare const FeedbackApiInsertSchema: z.ZodObject<{
|
|
9012
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
9013
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8967
9014
|
type: z.ZodEnum<{
|
|
8968
9015
|
positive: "positive";
|
|
8969
9016
|
negative: "negative";
|
|
8970
9017
|
}>;
|
|
8971
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8972
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8973
9018
|
details: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8974
9019
|
conversationId: z.ZodString;
|
|
8975
9020
|
messageId: z.ZodOptional<z.ZodString>;
|
|
8976
9021
|
id: z.ZodOptional<z.ZodString>;
|
|
8977
9022
|
}, z.core.$strip>;
|
|
8978
9023
|
declare const FeedbackApiUpdateSchema: z.ZodObject<{
|
|
9024
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9025
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8979
9026
|
type: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
|
|
8980
9027
|
positive: "positive";
|
|
8981
9028
|
negative: "negative";
|
|
8982
9029
|
}>>>;
|
|
8983
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8984
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8985
9030
|
details: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8986
9031
|
}, z.core.$strip>;
|
|
8987
9032
|
declare const WebhookFeedbackDataSchema: z.ZodObject<{
|
|
8988
9033
|
feedback: z.ZodObject<{
|
|
8989
|
-
type: z.ZodString;
|
|
8990
9034
|
id: z.ZodString;
|
|
8991
9035
|
createdAt: z.ZodString;
|
|
8992
9036
|
updatedAt: z.ZodString;
|
|
9037
|
+
type: z.ZodString;
|
|
8993
9038
|
details: z.ZodNullable<z.ZodString>;
|
|
8994
9039
|
conversationId: z.ZodString;
|
|
8995
9040
|
messageId: z.ZodNullable<z.ZodString>;
|
|
@@ -9535,11 +9580,11 @@ declare const EventInsertSchema: z.ZodObject<{
|
|
|
9535
9580
|
in: {};
|
|
9536
9581
|
}>;
|
|
9537
9582
|
declare const EventApiSelectSchema: z.ZodObject<{
|
|
9538
|
-
type: z.ZodString;
|
|
9539
9583
|
id: z.ZodString;
|
|
9584
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
9540
9585
|
createdAt: z.ZodString;
|
|
9541
9586
|
updatedAt: z.ZodString;
|
|
9542
|
-
|
|
9587
|
+
type: z.ZodString;
|
|
9543
9588
|
properties: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
9544
9589
|
agentId: z.ZodNullable<z.ZodString>;
|
|
9545
9590
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
@@ -9559,11 +9604,11 @@ declare const EventApiInsertSchema: z.ZodObject<{
|
|
|
9559
9604
|
}, z.core.$strip>;
|
|
9560
9605
|
declare const WebhookEventCreatedDataSchema: z.ZodObject<{
|
|
9561
9606
|
event: z.ZodObject<{
|
|
9562
|
-
type: z.ZodString;
|
|
9563
9607
|
id: z.ZodString;
|
|
9608
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
9564
9609
|
createdAt: z.ZodString;
|
|
9565
9610
|
updatedAt: z.ZodString;
|
|
9566
|
-
|
|
9611
|
+
type: z.ZodString;
|
|
9567
9612
|
properties: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
9568
9613
|
agentId: z.ZodNullable<z.ZodString>;
|
|
9569
9614
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
@@ -9654,6 +9699,7 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
9654
9699
|
id: z.ZodString;
|
|
9655
9700
|
createdAt: z.ZodString;
|
|
9656
9701
|
updatedAt: z.ZodString;
|
|
9702
|
+
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
9657
9703
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
9658
9704
|
type: z.ZodEnum<{
|
|
9659
9705
|
commit: "commit";
|
|
@@ -9663,7 +9709,6 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
9663
9709
|
name: z.ZodString;
|
|
9664
9710
|
hash: z.ZodString;
|
|
9665
9711
|
}, z.core.$strip>>>;
|
|
9666
|
-
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
9667
9712
|
contextConfigId: z.ZodString;
|
|
9668
9713
|
conversationId: z.ZodString;
|
|
9669
9714
|
contextVariableKey: z.ZodString;
|
|
@@ -9675,6 +9720,7 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
9675
9720
|
id: z.ZodString;
|
|
9676
9721
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9677
9722
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9723
|
+
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
9678
9724
|
ref: z.ZodObject<{
|
|
9679
9725
|
type: z.ZodEnum<{
|
|
9680
9726
|
commit: "commit";
|
|
@@ -9684,7 +9730,6 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
9684
9730
|
name: z.ZodString;
|
|
9685
9731
|
hash: z.ZodString;
|
|
9686
9732
|
}, z.core.$strip>;
|
|
9687
|
-
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
9688
9733
|
contextConfigId: z.ZodString;
|
|
9689
9734
|
conversationId: z.ZodString;
|
|
9690
9735
|
contextVariableKey: z.ZodString;
|
|
@@ -9696,6 +9741,7 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
9696
9741
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9697
9742
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9698
9743
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9744
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
9699
9745
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
9700
9746
|
type: z.ZodEnum<{
|
|
9701
9747
|
commit: "commit";
|
|
@@ -9705,7 +9751,6 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
9705
9751
|
name: z.ZodString;
|
|
9706
9752
|
hash: z.ZodString;
|
|
9707
9753
|
}, z.core.$strip>>>;
|
|
9708
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
9709
9754
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9710
9755
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9711
9756
|
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -10549,26 +10594,26 @@ declare const EvaluationResultUpdateSchema: z.ZodObject<{
|
|
|
10549
10594
|
in: {};
|
|
10550
10595
|
}>;
|
|
10551
10596
|
declare const EvaluationResultApiSelectSchema: z.ZodObject<{
|
|
10552
|
-
output: z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>;
|
|
10553
10597
|
id: z.ZodString;
|
|
10554
10598
|
createdAt: z.ZodString;
|
|
10555
10599
|
updatedAt: z.ZodString;
|
|
10600
|
+
output: z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>;
|
|
10556
10601
|
conversationId: z.ZodString;
|
|
10557
10602
|
evaluatorId: z.ZodString;
|
|
10558
10603
|
evaluationRunId: z.ZodNullable<z.ZodString>;
|
|
10559
10604
|
}, z.core.$strip>;
|
|
10560
10605
|
declare const EvaluationResultApiInsertSchema: z.ZodObject<{
|
|
10561
|
-
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
10562
10606
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10563
10607
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10608
|
+
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
10564
10609
|
conversationId: z.ZodString;
|
|
10565
10610
|
evaluatorId: z.ZodString;
|
|
10566
10611
|
evaluationRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10567
10612
|
}, z.core.$strip>;
|
|
10568
10613
|
declare const EvaluationResultApiUpdateSchema: z.ZodObject<{
|
|
10569
|
-
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
10570
10614
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10571
10615
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10616
|
+
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
10572
10617
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10573
10618
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10574
10619
|
evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -11034,33 +11079,33 @@ declare const EvaluationRunConfigUpdateSchema: z.ZodObject<{
|
|
|
11034
11079
|
declare const EvaluationRunConfigApiSelectSchema: z.ZodObject<{
|
|
11035
11080
|
id: z.ZodString;
|
|
11036
11081
|
name: z.ZodString;
|
|
11082
|
+
description: z.ZodNullable<z.ZodString>;
|
|
11037
11083
|
createdAt: z.ZodString;
|
|
11038
11084
|
updatedAt: z.ZodString;
|
|
11039
|
-
description: z.ZodNullable<z.ZodString>;
|
|
11040
11085
|
isActive: z.ZodBoolean;
|
|
11041
11086
|
}, z.core.$strip>;
|
|
11042
11087
|
declare const EvaluationRunConfigApiInsertSchema: z.ZodObject<{
|
|
11043
11088
|
name: z.ZodString;
|
|
11089
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11044
11090
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11045
11091
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11046
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11047
11092
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
11048
11093
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
11049
11094
|
}, z.core.$strip>;
|
|
11050
11095
|
declare const EvaluationRunConfigApiUpdateSchema: z.ZodObject<{
|
|
11051
11096
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11097
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
11052
11098
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11053
11099
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11054
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
11055
11100
|
isActive: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
11056
11101
|
suiteConfigIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11057
11102
|
}, z.core.$strip>;
|
|
11058
11103
|
declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
11059
11104
|
id: z.ZodString;
|
|
11060
11105
|
name: z.ZodString;
|
|
11106
|
+
description: z.ZodNullable<z.ZodString>;
|
|
11061
11107
|
createdAt: z.ZodString;
|
|
11062
11108
|
updatedAt: z.ZodString;
|
|
11063
|
-
description: z.ZodNullable<z.ZodString>;
|
|
11064
11109
|
isActive: z.ZodBoolean;
|
|
11065
11110
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
11066
11111
|
}, z.core.$strip>;
|
|
@@ -13208,10 +13253,9 @@ declare const EvaluatorUpdateSchema: z.ZodObject<{
|
|
|
13208
13253
|
declare const EvaluatorApiSelectSchema: z.ZodObject<{
|
|
13209
13254
|
id: z.ZodString;
|
|
13210
13255
|
name: z.ZodString;
|
|
13256
|
+
description: z.ZodNullable<z.ZodString>;
|
|
13211
13257
|
createdAt: z.ZodString;
|
|
13212
13258
|
updatedAt: z.ZodString;
|
|
13213
|
-
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
13214
|
-
description: z.ZodNullable<z.ZodString>;
|
|
13215
13259
|
model: z.ZodType<{
|
|
13216
13260
|
model?: string | undefined;
|
|
13217
13261
|
providerOptions?: Record<string, unknown> | undefined;
|
|
@@ -13233,15 +13277,15 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<{
|
|
|
13233
13277
|
fallbackModels?: string[] | undefined;
|
|
13234
13278
|
allowedProviders?: string[] | undefined;
|
|
13235
13279
|
}>>;
|
|
13280
|
+
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
13236
13281
|
prompt: z.ZodString;
|
|
13237
13282
|
passCriteria: z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>;
|
|
13238
13283
|
}, z.core.$strip>;
|
|
13239
13284
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
13240
13285
|
name: z.ZodString;
|
|
13286
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13241
13287
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13242
13288
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13243
|
-
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
13244
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13245
13289
|
model: z.ZodType<{
|
|
13246
13290
|
model?: string | undefined;
|
|
13247
13291
|
providerOptions?: Record<string, unknown> | undefined;
|
|
@@ -13263,15 +13307,15 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
13263
13307
|
fallbackModels?: string[] | undefined;
|
|
13264
13308
|
allowedProviders?: string[] | undefined;
|
|
13265
13309
|
}>>;
|
|
13310
|
+
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
13266
13311
|
prompt: z.ZodString;
|
|
13267
13312
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, any, any>>>;
|
|
13268
13313
|
}, z.core.$strip>;
|
|
13269
13314
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
13270
13315
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13316
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13271
13317
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13272
13318
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13273
|
-
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
13274
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13275
13319
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
13276
13320
|
model?: string | undefined;
|
|
13277
13321
|
providerOptions?: Record<string, unknown> | undefined;
|
|
@@ -13293,6 +13337,7 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
13293
13337
|
fallbackModels?: string[] | undefined;
|
|
13294
13338
|
allowedProviders?: string[] | undefined;
|
|
13295
13339
|
}>>>>;
|
|
13340
|
+
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
13296
13341
|
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13297
13342
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, any, any>>>>>;
|
|
13298
13343
|
}, z.core.$strip>;
|
|
@@ -13883,28 +13928,28 @@ declare const DatasetItemUpdateSchema: z.ZodObject<{
|
|
|
13883
13928
|
in: {};
|
|
13884
13929
|
}>;
|
|
13885
13930
|
declare const DatasetItemApiSelectSchema: z.ZodObject<{
|
|
13886
|
-
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13887
13931
|
id: z.ZodString;
|
|
13888
13932
|
createdAt: z.ZodString;
|
|
13889
13933
|
updatedAt: z.ZodString;
|
|
13934
|
+
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13890
13935
|
datasetId: z.ZodString;
|
|
13891
13936
|
expectedOutput: z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>;
|
|
13892
13937
|
}, z.core.$strip>;
|
|
13893
13938
|
declare const DatasetItemApiInsertSchema: z.ZodObject<{
|
|
13894
|
-
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13895
13939
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13896
13940
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13941
|
+
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13897
13942
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13898
13943
|
}, z.core.$strip>;
|
|
13899
13944
|
declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
13900
|
-
input: z.ZodOptional<z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>>;
|
|
13901
13945
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13902
13946
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13947
|
+
input: z.ZodOptional<z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>>;
|
|
13903
13948
|
expectedOutput: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>>>;
|
|
13904
13949
|
}, z.core.$strip>;
|
|
13905
13950
|
declare const DatasetRunItemSchema: z.ZodObject<{
|
|
13906
|
-
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13907
13951
|
id: z.ZodOptional<z.ZodString>;
|
|
13952
|
+
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13908
13953
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13909
13954
|
agentId: z.ZodString;
|
|
13910
13955
|
}, z.core.$strip>;
|
|
@@ -14298,25 +14343,25 @@ declare const DatasetRunConfigUpdateSchema: z.ZodObject<{
|
|
|
14298
14343
|
declare const DatasetRunConfigApiSelectSchema: z.ZodObject<{
|
|
14299
14344
|
id: z.ZodString;
|
|
14300
14345
|
name: z.ZodString;
|
|
14346
|
+
description: z.ZodNullable<z.ZodString>;
|
|
14301
14347
|
createdAt: z.ZodString;
|
|
14302
14348
|
updatedAt: z.ZodString;
|
|
14303
|
-
description: z.ZodNullable<z.ZodString>;
|
|
14304
14349
|
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
14305
14350
|
datasetId: z.ZodString;
|
|
14306
14351
|
}, z.core.$strip>;
|
|
14307
14352
|
declare const DatasetRunConfigApiInsertSchema: z.ZodObject<{
|
|
14308
14353
|
name: z.ZodString;
|
|
14354
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14309
14355
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14310
14356
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14311
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14312
14357
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
14313
14358
|
datasetId: z.ZodString;
|
|
14314
14359
|
}, z.core.$strip>;
|
|
14315
14360
|
declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
14316
14361
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14362
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14317
14363
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14318
14364
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14319
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14320
14365
|
dispatchDelayMs: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodInt>>>>;
|
|
14321
14366
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14322
14367
|
}, z.core.$strip>;
|
|
@@ -15966,9 +16011,9 @@ declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
|
15966
16011
|
declare const DataComponentApiSelectSchema: z.ZodObject<{
|
|
15967
16012
|
id: z.ZodString;
|
|
15968
16013
|
name: z.ZodString;
|
|
16014
|
+
description: z.ZodNullable<z.ZodString>;
|
|
15969
16015
|
createdAt: z.ZodString;
|
|
15970
16016
|
updatedAt: z.ZodString;
|
|
15971
|
-
description: z.ZodNullable<z.ZodString>;
|
|
15972
16017
|
props: z.ZodType<{
|
|
15973
16018
|
[x: string]: unknown;
|
|
15974
16019
|
type: "object";
|
|
@@ -17108,9 +17153,9 @@ declare const ArtifactComponentUpdateSchema: z.ZodObject<{
|
|
|
17108
17153
|
declare const ArtifactComponentApiSelectSchema: z.ZodObject<{
|
|
17109
17154
|
id: z.ZodString;
|
|
17110
17155
|
name: z.ZodString;
|
|
17156
|
+
description: z.ZodNullable<z.ZodString>;
|
|
17111
17157
|
createdAt: z.ZodString;
|
|
17112
17158
|
updatedAt: z.ZodString;
|
|
17113
|
-
description: z.ZodNullable<z.ZodString>;
|
|
17114
17159
|
props: z.ZodNullable<z.ZodType<{
|
|
17115
17160
|
[x: string]: unknown;
|
|
17116
17161
|
type: "object";
|
|
@@ -17185,9 +17230,9 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
17185
17230
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
17186
17231
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17187
17232
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17233
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17188
17234
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
17189
17235
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
17190
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17191
17236
|
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
17192
17237
|
[x: string]: unknown;
|
|
17193
17238
|
type: "object";
|
|
@@ -17581,9 +17626,9 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
|
17581
17626
|
declare const ExternalAgentApiSelectSchema: z.ZodObject<{
|
|
17582
17627
|
id: z.ZodString;
|
|
17583
17628
|
name: z.ZodString;
|
|
17629
|
+
description: z.ZodNullable<z.ZodString>;
|
|
17584
17630
|
createdAt: z.ZodString;
|
|
17585
17631
|
updatedAt: z.ZodString;
|
|
17586
|
-
description: z.ZodNullable<z.ZodString>;
|
|
17587
17632
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17588
17633
|
baseUrl: z.ZodString;
|
|
17589
17634
|
}, z.core.$strip>;
|
|
@@ -17604,9 +17649,9 @@ declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
|
17604
17649
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
17605
17650
|
id: z.ZodString;
|
|
17606
17651
|
name: z.ZodString;
|
|
17652
|
+
description: z.ZodNullable<z.ZodString>;
|
|
17607
17653
|
createdAt: z.ZodString;
|
|
17608
17654
|
updatedAt: z.ZodString;
|
|
17609
|
-
description: z.ZodNullable<z.ZodString>;
|
|
17610
17655
|
models: z.ZodNullable<z.ZodType<{
|
|
17611
17656
|
base?: {
|
|
17612
17657
|
model?: string | undefined;
|
|
@@ -17732,9 +17777,9 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
17732
17777
|
}, z.core.$strip>, z.ZodObject<{
|
|
17733
17778
|
id: z.ZodString;
|
|
17734
17779
|
name: z.ZodString;
|
|
17780
|
+
description: z.ZodNullable<z.ZodString>;
|
|
17735
17781
|
createdAt: z.ZodString;
|
|
17736
17782
|
updatedAt: z.ZodString;
|
|
17737
|
-
description: z.ZodNullable<z.ZodString>;
|
|
17738
17783
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17739
17784
|
baseUrl: z.ZodString;
|
|
17740
17785
|
type: z.ZodLiteral<"external">;
|
|
@@ -18202,8 +18247,8 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
18202
18247
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
18203
18248
|
name: z.ZodOptional<z.ZodString>;
|
|
18204
18249
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18205
|
-
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18206
18250
|
agentId: z.ZodOptional<z.ZodString>;
|
|
18251
|
+
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18207
18252
|
}, {
|
|
18208
18253
|
out: {};
|
|
18209
18254
|
in: {};
|
|
@@ -18213,8 +18258,8 @@ declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
|
18213
18258
|
name: z.ZodNullable<z.ZodString>;
|
|
18214
18259
|
createdAt: z.ZodString;
|
|
18215
18260
|
updatedAt: z.ZodString;
|
|
18216
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
18217
18261
|
agentId: z.ZodString;
|
|
18262
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
18218
18263
|
publicId: z.ZodString;
|
|
18219
18264
|
keyPrefix: z.ZodString;
|
|
18220
18265
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -18229,8 +18274,8 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
18229
18274
|
name: z.ZodNullable<z.ZodString>;
|
|
18230
18275
|
createdAt: z.ZodString;
|
|
18231
18276
|
updatedAt: z.ZodString;
|
|
18232
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
18233
18277
|
agentId: z.ZodString;
|
|
18278
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
18234
18279
|
publicId: z.ZodString;
|
|
18235
18280
|
keyPrefix: z.ZodString;
|
|
18236
18281
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -18245,8 +18290,8 @@ declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
|
18245
18290
|
name: z.ZodString;
|
|
18246
18291
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18247
18292
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18248
|
-
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18249
18293
|
agentId: z.ZodString;
|
|
18294
|
+
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18250
18295
|
}, {
|
|
18251
18296
|
out: {};
|
|
18252
18297
|
in: {};
|
|
@@ -18254,8 +18299,8 @@ declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
|
18254
18299
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
18255
18300
|
name: z.ZodOptional<z.ZodString>;
|
|
18256
18301
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18257
|
-
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18258
18302
|
agentId: z.ZodOptional<z.ZodString>;
|
|
18303
|
+
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18259
18304
|
}, {
|
|
18260
18305
|
out: {};
|
|
18261
18306
|
in: {};
|
|
@@ -19180,11 +19225,11 @@ declare const AppInsertSchema: z.ZodObject<{
|
|
|
19180
19225
|
}>;
|
|
19181
19226
|
declare const AppUpdateSchema: z.ZodObject<{
|
|
19182
19227
|
name: z.ZodOptional<z.ZodString>;
|
|
19183
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19184
19228
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19185
|
-
|
|
19229
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19186
19230
|
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19187
19231
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19232
|
+
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
19188
19233
|
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19189
19234
|
config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
19190
19235
|
type: z.ZodLiteral<"web_client">;
|
|
@@ -19863,15 +19908,15 @@ declare const AppApiSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
19863
19908
|
}, {}, {}>;
|
|
19864
19909
|
}, undefined>, undefined>;
|
|
19865
19910
|
declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
19866
|
-
type: z.ZodString;
|
|
19867
19911
|
id: z.ZodString;
|
|
19868
19912
|
name: z.ZodString;
|
|
19913
|
+
description: z.ZodNullable<z.ZodString>;
|
|
19869
19914
|
createdAt: z.ZodString;
|
|
19870
19915
|
updatedAt: z.ZodString;
|
|
19871
|
-
description: z.ZodNullable<z.ZodString>;
|
|
19872
|
-
enabled: z.ZodBoolean;
|
|
19873
19916
|
projectId: z.ZodNullable<z.ZodString>;
|
|
19874
19917
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
19918
|
+
type: z.ZodString;
|
|
19919
|
+
enabled: z.ZodBoolean;
|
|
19875
19920
|
prompt: z.ZodNullable<z.ZodString>;
|
|
19876
19921
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
19877
19922
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
@@ -19921,18 +19966,18 @@ declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
|
19921
19966
|
in: {};
|
|
19922
19967
|
}>;
|
|
19923
19968
|
declare const AppApiInsertSchema: z.ZodObject<{
|
|
19969
|
+
name: z.ZodString;
|
|
19970
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19971
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
19972
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19973
|
+
projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19974
|
+
tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19924
19975
|
type: z.ZodEnum<{
|
|
19925
19976
|
web_client: "web_client";
|
|
19926
19977
|
api: "api";
|
|
19927
19978
|
support_copilot: "support_copilot";
|
|
19928
19979
|
}>;
|
|
19929
|
-
name: z.ZodString;
|
|
19930
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
19931
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19932
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19933
19980
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
19934
|
-
projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19935
|
-
tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19936
19981
|
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19937
19982
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
19938
19983
|
type: z.ZodLiteral<"web_client">;
|
|
@@ -19982,11 +20027,11 @@ declare const AppApiInsertSchema: z.ZodObject<{
|
|
|
19982
20027
|
}>;
|
|
19983
20028
|
declare const AppApiUpdateSchema: z.ZodObject<{
|
|
19984
20029
|
name: z.ZodOptional<z.ZodString>;
|
|
19985
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19986
20030
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19987
|
-
|
|
20031
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19988
20032
|
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19989
20033
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20034
|
+
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
19990
20035
|
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19991
20036
|
config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
19992
20037
|
type: z.ZodLiteral<"web_client">;
|
|
@@ -20038,15 +20083,15 @@ declare const AppApiUpdateSchema: z.ZodObject<{
|
|
|
20038
20083
|
declare const AppApiCreationResponseSchema: z.ZodObject<{
|
|
20039
20084
|
data: z.ZodObject<{
|
|
20040
20085
|
app: z.ZodObject<{
|
|
20041
|
-
type: z.ZodString;
|
|
20042
20086
|
id: z.ZodString;
|
|
20043
20087
|
name: z.ZodString;
|
|
20088
|
+
description: z.ZodNullable<z.ZodString>;
|
|
20044
20089
|
createdAt: z.ZodString;
|
|
20045
20090
|
updatedAt: z.ZodString;
|
|
20046
|
-
description: z.ZodNullable<z.ZodString>;
|
|
20047
|
-
enabled: z.ZodBoolean;
|
|
20048
20091
|
projectId: z.ZodNullable<z.ZodString>;
|
|
20049
20092
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
20093
|
+
type: z.ZodString;
|
|
20094
|
+
enabled: z.ZodBoolean;
|
|
20050
20095
|
prompt: z.ZodNullable<z.ZodString>;
|
|
20051
20096
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
20052
20097
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
@@ -20549,31 +20594,31 @@ declare const CredentialReferenceSelectSchema: drizzle_zod19.BuildSchema<"select
|
|
|
20549
20594
|
}>;
|
|
20550
20595
|
}, undefined>, undefined>;
|
|
20551
20596
|
declare const CredentialReferenceInsertSchema: z.ZodObject<{
|
|
20552
|
-
type: z.ZodString;
|
|
20553
20597
|
id: z.ZodString;
|
|
20554
20598
|
name: z.ZodString;
|
|
20555
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20556
20599
|
projectId: z.ZodString;
|
|
20557
20600
|
tenantId: z.ZodString;
|
|
20601
|
+
type: z.ZodString;
|
|
20602
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20603
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20558
20604
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20559
20605
|
credentialStoreId: z.ZodString;
|
|
20560
20606
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20561
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20562
20607
|
}, {
|
|
20563
20608
|
out: {};
|
|
20564
20609
|
in: {};
|
|
20565
20610
|
}>;
|
|
20566
20611
|
declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
20567
|
-
type: z.ZodOptional<z.ZodString>;
|
|
20568
20612
|
id: z.ZodOptional<z.ZodString>;
|
|
20569
20613
|
name: z.ZodOptional<z.ZodString>;
|
|
20570
|
-
userId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20571
20614
|
projectId: z.ZodOptional<z.ZodString>;
|
|
20572
20615
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
20616
|
+
type: z.ZodOptional<z.ZodString>;
|
|
20617
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20618
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20573
20619
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20574
20620
|
credentialStoreId: z.ZodOptional<z.ZodString>;
|
|
20575
20621
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
20576
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20577
20622
|
}, {
|
|
20578
20623
|
out: {};
|
|
20579
20624
|
in: {};
|
|
@@ -20584,10 +20629,10 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
20584
20629
|
createdAt: z.ZodString;
|
|
20585
20630
|
updatedAt: z.ZodString;
|
|
20586
20631
|
userId: z.ZodNullable<z.ZodString>;
|
|
20632
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
20587
20633
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
20588
20634
|
credentialStoreId: z.ZodString;
|
|
20589
20635
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
20590
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
20591
20636
|
type: z.ZodEnum<{
|
|
20592
20637
|
readonly memory: "memory";
|
|
20593
20638
|
readonly keychain: "keychain";
|
|
@@ -21174,10 +21219,10 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
21174
21219
|
id: z.ZodString;
|
|
21175
21220
|
name: z.ZodString;
|
|
21176
21221
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21222
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21177
21223
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21178
21224
|
credentialStoreId: z.ZodString;
|
|
21179
21225
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
21180
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21181
21226
|
type: z.ZodEnum<{
|
|
21182
21227
|
readonly memory: "memory";
|
|
21183
21228
|
readonly keychain: "keychain";
|
|
@@ -21189,10 +21234,10 @@ declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
|
21189
21234
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21190
21235
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21191
21236
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21237
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21192
21238
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21193
21239
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21194
21240
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
21195
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21196
21241
|
type: z.ZodOptional<z.ZodEnum<{
|
|
21197
21242
|
readonly memory: "memory";
|
|
21198
21243
|
readonly keychain: "keychain";
|
|
@@ -21355,10 +21400,10 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
21355
21400
|
id: z.ZodString;
|
|
21356
21401
|
name: z.ZodString;
|
|
21357
21402
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21403
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21358
21404
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21359
21405
|
credentialStoreId: z.ZodString;
|
|
21360
21406
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
21361
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21362
21407
|
type: z.ZodEnum<{
|
|
21363
21408
|
readonly memory: "memory";
|
|
21364
21409
|
readonly keychain: "keychain";
|
|
@@ -21423,9 +21468,9 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
21423
21468
|
declare const ToolApiSelectSchema: z.ZodObject<{
|
|
21424
21469
|
id: z.ZodString;
|
|
21425
21470
|
name: z.ZodString;
|
|
21471
|
+
description: z.ZodNullable<z.ZodString>;
|
|
21426
21472
|
createdAt: z.ZodString;
|
|
21427
21473
|
updatedAt: z.ZodString;
|
|
21428
|
-
description: z.ZodNullable<z.ZodString>;
|
|
21429
21474
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
21430
21475
|
config: z.ZodType<{
|
|
21431
21476
|
type: "mcp";
|
|
@@ -21883,9 +21928,9 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
21883
21928
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
21884
21929
|
id: z.ZodString;
|
|
21885
21930
|
name: z.ZodString;
|
|
21931
|
+
description: z.ZodNullable<z.ZodString>;
|
|
21886
21932
|
createdAt: z.ZodString;
|
|
21887
21933
|
updatedAt: z.ZodString;
|
|
21888
|
-
description: z.ZodNullable<z.ZodString>;
|
|
21889
21934
|
agentId: z.ZodString;
|
|
21890
21935
|
functionId: z.ZodString;
|
|
21891
21936
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -22664,10 +22709,10 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
22664
22709
|
id: z.ZodString;
|
|
22665
22710
|
name: z.ZodString;
|
|
22666
22711
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22712
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22667
22713
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22668
22714
|
credentialStoreId: z.ZodString;
|
|
22669
22715
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22670
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22671
22716
|
type: z.ZodEnum<{
|
|
22672
22717
|
readonly memory: "memory";
|
|
22673
22718
|
readonly keychain: "keychain";
|
|
@@ -23189,9 +23234,9 @@ declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
|
23189
23234
|
id: z.ZodString;
|
|
23190
23235
|
createdAt: z.ZodString;
|
|
23191
23236
|
updatedAt: z.ZodString;
|
|
23192
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
23193
23237
|
subAgentId: z.ZodString;
|
|
23194
23238
|
toolId: z.ZodString;
|
|
23239
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
23195
23240
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
23196
23241
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
23197
23242
|
}, z.core.$strip>;
|
|
@@ -23199,9 +23244,9 @@ declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
|
23199
23244
|
id: z.ZodString;
|
|
23200
23245
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
23201
23246
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
23202
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
23203
23247
|
subAgentId: z.ZodString;
|
|
23204
23248
|
toolId: z.ZodString;
|
|
23249
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
23205
23250
|
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23206
23251
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
23207
23252
|
}, z.core.$strip>>>>;
|
|
@@ -23211,9 +23256,9 @@ declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
|
23211
23256
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23212
23257
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23213
23258
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23214
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
23215
23259
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23216
23260
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23261
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
23217
23262
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23218
23263
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
23219
23264
|
}, z.core.$strip>>>>>>;
|
|
@@ -23588,8 +23633,8 @@ declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<{
|
|
|
23588
23633
|
id: z.ZodString;
|
|
23589
23634
|
createdAt: z.ZodString;
|
|
23590
23635
|
updatedAt: z.ZodString;
|
|
23591
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
23592
23636
|
subAgentId: z.ZodString;
|
|
23637
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
23593
23638
|
externalAgentId: z.ZodString;
|
|
23594
23639
|
}, z.core.$strip>;
|
|
23595
23640
|
declare const SubAgentExternalAgentRelationApiInsertSchema: z.ZodObject<{
|
|
@@ -23602,8 +23647,8 @@ declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
23602
23647
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23603
23648
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23604
23649
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23605
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
23606
23650
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23651
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
23607
23652
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23608
23653
|
}, z.core.$strip>;
|
|
23609
23654
|
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -23975,8 +24020,8 @@ declare const SubAgentTeamAgentRelationApiSelectSchema: z.ZodObject<{
|
|
|
23975
24020
|
id: z.ZodString;
|
|
23976
24021
|
createdAt: z.ZodString;
|
|
23977
24022
|
updatedAt: z.ZodString;
|
|
23978
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
23979
24023
|
subAgentId: z.ZodString;
|
|
24024
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
23980
24025
|
targetAgentId: z.ZodString;
|
|
23981
24026
|
}, z.core.$strip>;
|
|
23982
24027
|
declare const SubAgentTeamAgentRelationApiInsertSchema: z.ZodObject<{
|
|
@@ -23989,8 +24034,8 @@ declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
23989
24034
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23990
24035
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23991
24036
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23992
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
23993
24037
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24038
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
23994
24039
|
targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23995
24040
|
}, z.core.$strip>;
|
|
23996
24041
|
declare const LedgerArtifactSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -25334,7 +25379,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
25334
25379
|
}, {}, {
|
|
25335
25380
|
length: 256;
|
|
25336
25381
|
}>;
|
|
25337
|
-
}, "
|
|
25382
|
+
}, "id" | "name" | "description" | "metadata" | "createdAt" | "updatedAt" | "projectId" | "tenantId" | "type" | "taskId" | "contextId" | "visibility" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
25338
25383
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
25339
25384
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
25340
25385
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -25359,17 +25404,17 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
25359
25404
|
in: {};
|
|
25360
25405
|
}>;
|
|
25361
25406
|
declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
25362
|
-
type: z.ZodString;
|
|
25363
25407
|
id: z.ZodString;
|
|
25364
25408
|
name: z.ZodNullable<z.ZodString>;
|
|
25409
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25410
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
25365
25411
|
createdAt: z.ZodString;
|
|
25366
25412
|
updatedAt: z.ZodString;
|
|
25367
|
-
|
|
25368
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25413
|
+
type: z.ZodString;
|
|
25369
25414
|
taskId: z.ZodString;
|
|
25370
|
-
toolCallId: z.ZodNullable<z.ZodString>;
|
|
25371
25415
|
contextId: z.ZodString;
|
|
25372
25416
|
visibility: z.ZodNullable<z.ZodString>;
|
|
25417
|
+
toolCallId: z.ZodNullable<z.ZodString>;
|
|
25373
25418
|
parts: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
25374
25419
|
summary: z.ZodNullable<z.ZodString>;
|
|
25375
25420
|
mime: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
@@ -25377,17 +25422,17 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
|
25377
25422
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
25378
25423
|
}, z.core.$strip>;
|
|
25379
25424
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
25380
|
-
type: z.ZodOptional<z.ZodString>;
|
|
25381
25425
|
id: z.ZodString;
|
|
25382
25426
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25427
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25428
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25383
25429
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25384
25430
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25385
|
-
|
|
25386
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25431
|
+
type: z.ZodOptional<z.ZodString>;
|
|
25387
25432
|
taskId: z.ZodString;
|
|
25388
|
-
toolCallId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25389
25433
|
contextId: z.ZodString;
|
|
25390
25434
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25435
|
+
toolCallId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25391
25436
|
parts: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25392
25437
|
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25393
25438
|
mime: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
@@ -25395,17 +25440,17 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
|
25395
25440
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25396
25441
|
}, z.core.$strip>;
|
|
25397
25442
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
25398
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
25399
25443
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
25400
25444
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25445
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25446
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
25401
25447
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
25402
25448
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
25403
|
-
|
|
25404
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25449
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
25405
25450
|
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
25406
|
-
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25407
25451
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
25408
25452
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25453
|
+
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25409
25454
|
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
25410
25455
|
summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25411
25456
|
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
@@ -25477,9 +25522,9 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
25477
25522
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
25478
25523
|
id: z.ZodString;
|
|
25479
25524
|
name: z.ZodString;
|
|
25525
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25480
25526
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25481
25527
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25482
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25483
25528
|
models: z.ZodOptional<z.ZodObject<{
|
|
25484
25529
|
base: z.ZodOptional<z.ZodObject<{
|
|
25485
25530
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25555,9 +25600,9 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
25555
25600
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25556
25601
|
id: z.ZodString;
|
|
25557
25602
|
name: z.ZodString;
|
|
25603
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25558
25604
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25559
25605
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25560
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25561
25606
|
models: z.ZodOptional<z.ZodObject<{
|
|
25562
25607
|
base: z.ZodOptional<z.ZodObject<{
|
|
25563
25608
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25756,9 +25801,9 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25756
25801
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25757
25802
|
id: z.ZodString;
|
|
25758
25803
|
name: z.ZodString;
|
|
25804
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25759
25805
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25760
25806
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25761
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25762
25807
|
models: z.ZodOptional<z.ZodObject<{
|
|
25763
25808
|
base: z.ZodOptional<z.ZodObject<{
|
|
25764
25809
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -26074,9 +26119,9 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
26074
26119
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
26075
26120
|
id: z.ZodString;
|
|
26076
26121
|
name: z.ZodString;
|
|
26122
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26077
26123
|
createdAt: z.ZodString;
|
|
26078
26124
|
updatedAt: z.ZodString;
|
|
26079
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26080
26125
|
models: z.ZodNullable<z.ZodObject<{
|
|
26081
26126
|
base: z.ZodObject<{
|
|
26082
26127
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -26206,9 +26251,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26206
26251
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26207
26252
|
id: z.ZodString;
|
|
26208
26253
|
name: z.ZodString;
|
|
26254
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26209
26255
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
26210
26256
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
26211
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26212
26257
|
models: z.ZodOptional<z.ZodObject<{
|
|
26213
26258
|
base: z.ZodOptional<z.ZodObject<{
|
|
26214
26259
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -26555,10 +26600,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26555
26600
|
id: z.ZodString;
|
|
26556
26601
|
name: z.ZodString;
|
|
26557
26602
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26603
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26558
26604
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26559
26605
|
credentialStoreId: z.ZodString;
|
|
26560
26606
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
26561
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26562
26607
|
type: z.ZodEnum<{
|
|
26563
26608
|
readonly memory: "memory";
|
|
26564
26609
|
readonly keychain: "keychain";
|
|
@@ -26575,9 +26620,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26575
26620
|
declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
26576
26621
|
id: z.ZodString;
|
|
26577
26622
|
name: z.ZodString;
|
|
26623
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26578
26624
|
createdAt: z.ZodString;
|
|
26579
26625
|
updatedAt: z.ZodString;
|
|
26580
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26581
26626
|
models: z.ZodNullable<z.ZodType<{
|
|
26582
26627
|
base?: {
|
|
26583
26628
|
model?: string | undefined;
|
|
@@ -26725,9 +26770,9 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
26725
26770
|
declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
26726
26771
|
id: z.ZodString;
|
|
26727
26772
|
name: z.ZodString;
|
|
26773
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26728
26774
|
createdAt: z.ZodString;
|
|
26729
26775
|
updatedAt: z.ZodString;
|
|
26730
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26731
26776
|
models: z.ZodNullable<z.ZodType<{
|
|
26732
26777
|
base?: {
|
|
26733
26778
|
model?: string | undefined;
|
|
@@ -26881,18 +26926,18 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26881
26926
|
declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
26882
26927
|
id: z.ZodString;
|
|
26883
26928
|
name: z.ZodString;
|
|
26929
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26884
26930
|
createdAt: z.ZodString;
|
|
26885
26931
|
updatedAt: z.ZodString;
|
|
26886
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26887
26932
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26888
26933
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26889
26934
|
executionMode: z.ZodString;
|
|
26890
26935
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26891
26936
|
id: z.ZodString;
|
|
26892
26937
|
name: z.ZodString;
|
|
26938
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26893
26939
|
createdAt: z.ZodString;
|
|
26894
26940
|
updatedAt: z.ZodString;
|
|
26895
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26896
26941
|
models: z.ZodNullable<z.ZodType<{
|
|
26897
26942
|
base?: {
|
|
26898
26943
|
model?: string | undefined;
|
|
@@ -27040,9 +27085,9 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
27040
27085
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27041
27086
|
id: z.ZodString;
|
|
27042
27087
|
name: z.ZodString;
|
|
27088
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27043
27089
|
createdAt: z.ZodString;
|
|
27044
27090
|
updatedAt: z.ZodString;
|
|
27045
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27046
27091
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27047
27092
|
config: z.ZodType<{
|
|
27048
27093
|
type: "mcp";
|
|
@@ -27067,9 +27112,9 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
27067
27112
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27068
27113
|
id: z.ZodString;
|
|
27069
27114
|
name: z.ZodString;
|
|
27115
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27070
27116
|
createdAt: z.ZodString;
|
|
27071
27117
|
updatedAt: z.ZodString;
|
|
27072
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27073
27118
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27074
27119
|
baseUrl: z.ZodString;
|
|
27075
27120
|
}, z.core.$strip>>>;
|
|
@@ -27081,9 +27126,9 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
27081
27126
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27082
27127
|
id: z.ZodString;
|
|
27083
27128
|
name: z.ZodString;
|
|
27129
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27084
27130
|
createdAt: z.ZodString;
|
|
27085
27131
|
updatedAt: z.ZodString;
|
|
27086
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27087
27132
|
agentId: z.ZodString;
|
|
27088
27133
|
functionId: z.ZodString;
|
|
27089
27134
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -27146,18 +27191,18 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
27146
27191
|
declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
27147
27192
|
id: z.ZodString;
|
|
27148
27193
|
name: z.ZodString;
|
|
27194
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27149
27195
|
createdAt: z.ZodString;
|
|
27150
27196
|
updatedAt: z.ZodString;
|
|
27151
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27152
27197
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
27153
27198
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
27154
27199
|
executionMode: z.ZodString;
|
|
27155
27200
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27156
27201
|
id: z.ZodString;
|
|
27157
27202
|
name: z.ZodString;
|
|
27203
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27158
27204
|
createdAt: z.ZodString;
|
|
27159
27205
|
updatedAt: z.ZodString;
|
|
27160
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27161
27206
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27162
27207
|
config: z.ZodType<{
|
|
27163
27208
|
type: "mcp";
|
|
@@ -27182,9 +27227,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
27182
27227
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27183
27228
|
id: z.ZodString;
|
|
27184
27229
|
name: z.ZodString;
|
|
27230
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27185
27231
|
createdAt: z.ZodString;
|
|
27186
27232
|
updatedAt: z.ZodString;
|
|
27187
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27188
27233
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27189
27234
|
baseUrl: z.ZodString;
|
|
27190
27235
|
}, z.core.$strip>>>;
|
|
@@ -27196,9 +27241,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
27196
27241
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27197
27242
|
id: z.ZodString;
|
|
27198
27243
|
name: z.ZodString;
|
|
27244
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27199
27245
|
createdAt: z.ZodString;
|
|
27200
27246
|
updatedAt: z.ZodString;
|
|
27201
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27202
27247
|
agentId: z.ZodString;
|
|
27203
27248
|
functionId: z.ZodString;
|
|
27204
27249
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -27260,9 +27305,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
27260
27305
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27261
27306
|
id: z.ZodString;
|
|
27262
27307
|
name: z.ZodString;
|
|
27308
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27263
27309
|
createdAt: z.ZodString;
|
|
27264
27310
|
updatedAt: z.ZodString;
|
|
27265
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27266
27311
|
models: z.ZodNullable<z.ZodType<{
|
|
27267
27312
|
base?: {
|
|
27268
27313
|
model?: string | undefined;
|
|
@@ -27417,9 +27462,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
27417
27462
|
declare const FullProjectSelectSchema: z.ZodObject<{
|
|
27418
27463
|
id: z.ZodString;
|
|
27419
27464
|
name: z.ZodString;
|
|
27465
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27420
27466
|
createdAt: z.ZodString;
|
|
27421
27467
|
updatedAt: z.ZodString;
|
|
27422
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27423
27468
|
models: z.ZodNullable<z.ZodObject<{
|
|
27424
27469
|
base: z.ZodObject<{
|
|
27425
27470
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -27447,18 +27492,18 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27447
27492
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27448
27493
|
id: z.ZodString;
|
|
27449
27494
|
name: z.ZodString;
|
|
27495
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27450
27496
|
createdAt: z.ZodString;
|
|
27451
27497
|
updatedAt: z.ZodString;
|
|
27452
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27453
27498
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
27454
27499
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
27455
27500
|
executionMode: z.ZodString;
|
|
27456
27501
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27457
27502
|
id: z.ZodString;
|
|
27458
27503
|
name: z.ZodString;
|
|
27504
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27459
27505
|
createdAt: z.ZodString;
|
|
27460
27506
|
updatedAt: z.ZodString;
|
|
27461
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27462
27507
|
models: z.ZodNullable<z.ZodType<{
|
|
27463
27508
|
base?: {
|
|
27464
27509
|
model?: string | undefined;
|
|
@@ -27606,9 +27651,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27606
27651
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27607
27652
|
id: z.ZodString;
|
|
27608
27653
|
name: z.ZodString;
|
|
27654
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27609
27655
|
createdAt: z.ZodString;
|
|
27610
27656
|
updatedAt: z.ZodString;
|
|
27611
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27612
27657
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27613
27658
|
config: z.ZodType<{
|
|
27614
27659
|
type: "mcp";
|
|
@@ -27633,9 +27678,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27633
27678
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27634
27679
|
id: z.ZodString;
|
|
27635
27680
|
name: z.ZodString;
|
|
27681
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27636
27682
|
createdAt: z.ZodString;
|
|
27637
27683
|
updatedAt: z.ZodString;
|
|
27638
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27639
27684
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27640
27685
|
baseUrl: z.ZodString;
|
|
27641
27686
|
}, z.core.$strip>>>;
|
|
@@ -27647,9 +27692,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27647
27692
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27648
27693
|
id: z.ZodString;
|
|
27649
27694
|
name: z.ZodString;
|
|
27695
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27650
27696
|
createdAt: z.ZodString;
|
|
27651
27697
|
updatedAt: z.ZodString;
|
|
27652
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27653
27698
|
agentId: z.ZodString;
|
|
27654
27699
|
functionId: z.ZodString;
|
|
27655
27700
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -27712,9 +27757,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27712
27757
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27713
27758
|
id: z.ZodString;
|
|
27714
27759
|
name: z.ZodString;
|
|
27760
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27715
27761
|
createdAt: z.ZodString;
|
|
27716
27762
|
updatedAt: z.ZodString;
|
|
27717
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27718
27763
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27719
27764
|
config: z.ZodType<{
|
|
27720
27765
|
type: "mcp";
|
|
@@ -27739,9 +27784,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27739
27784
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27740
27785
|
id: z.ZodString;
|
|
27741
27786
|
name: z.ZodString;
|
|
27787
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27742
27788
|
createdAt: z.ZodString;
|
|
27743
27789
|
updatedAt: z.ZodString;
|
|
27744
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27745
27790
|
agentId: z.ZodString;
|
|
27746
27791
|
functionId: z.ZodString;
|
|
27747
27792
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -27757,9 +27802,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27757
27802
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27758
27803
|
id: z.ZodString;
|
|
27759
27804
|
name: z.ZodString;
|
|
27805
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27760
27806
|
createdAt: z.ZodString;
|
|
27761
27807
|
updatedAt: z.ZodString;
|
|
27762
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27763
27808
|
props: z.ZodType<{
|
|
27764
27809
|
[x: string]: unknown;
|
|
27765
27810
|
type: "object";
|
|
@@ -27806,9 +27851,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27806
27851
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27807
27852
|
id: z.ZodString;
|
|
27808
27853
|
name: z.ZodString;
|
|
27854
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27809
27855
|
createdAt: z.ZodString;
|
|
27810
27856
|
updatedAt: z.ZodString;
|
|
27811
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27812
27857
|
props: z.ZodNullable<z.ZodType<{
|
|
27813
27858
|
[x: string]: unknown;
|
|
27814
27859
|
type: "object";
|
|
@@ -27855,9 +27900,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27855
27900
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27856
27901
|
id: z.ZodString;
|
|
27857
27902
|
name: z.ZodString;
|
|
27903
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27858
27904
|
createdAt: z.ZodString;
|
|
27859
27905
|
updatedAt: z.ZodString;
|
|
27860
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27861
27906
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27862
27907
|
baseUrl: z.ZodString;
|
|
27863
27908
|
}, z.core.$strip>>>;
|
|
@@ -27882,10 +27927,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27882
27927
|
createdAt: z.ZodString;
|
|
27883
27928
|
updatedAt: z.ZodString;
|
|
27884
27929
|
userId: z.ZodNullable<z.ZodString>;
|
|
27930
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
27885
27931
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
27886
27932
|
credentialStoreId: z.ZodString;
|
|
27887
27933
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27888
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
27889
27934
|
type: z.ZodEnum<{
|
|
27890
27935
|
readonly memory: "memory";
|
|
27891
27936
|
readonly keychain: "keychain";
|
|
@@ -28475,9 +28520,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
28475
28520
|
declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
28476
28521
|
id: z.ZodString;
|
|
28477
28522
|
name: z.ZodString;
|
|
28523
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28478
28524
|
createdAt: z.ZodString;
|
|
28479
28525
|
updatedAt: z.ZodString;
|
|
28480
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28481
28526
|
models: z.ZodNullable<z.ZodObject<{
|
|
28482
28527
|
base: z.ZodObject<{
|
|
28483
28528
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -28505,9 +28550,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28505
28550
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28506
28551
|
id: z.ZodString;
|
|
28507
28552
|
name: z.ZodString;
|
|
28553
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28508
28554
|
createdAt: z.ZodString;
|
|
28509
28555
|
updatedAt: z.ZodString;
|
|
28510
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28511
28556
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
28512
28557
|
config: z.ZodType<{
|
|
28513
28558
|
type: "mcp";
|
|
@@ -28532,9 +28577,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28532
28577
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28533
28578
|
id: z.ZodString;
|
|
28534
28579
|
name: z.ZodString;
|
|
28580
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28535
28581
|
createdAt: z.ZodString;
|
|
28536
28582
|
updatedAt: z.ZodString;
|
|
28537
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28538
28583
|
agentId: z.ZodString;
|
|
28539
28584
|
functionId: z.ZodString;
|
|
28540
28585
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -28550,9 +28595,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28550
28595
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28551
28596
|
id: z.ZodString;
|
|
28552
28597
|
name: z.ZodString;
|
|
28598
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28553
28599
|
createdAt: z.ZodString;
|
|
28554
28600
|
updatedAt: z.ZodString;
|
|
28555
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28556
28601
|
props: z.ZodType<{
|
|
28557
28602
|
[x: string]: unknown;
|
|
28558
28603
|
type: "object";
|
|
@@ -28599,9 +28644,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28599
28644
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28600
28645
|
id: z.ZodString;
|
|
28601
28646
|
name: z.ZodString;
|
|
28647
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28602
28648
|
createdAt: z.ZodString;
|
|
28603
28649
|
updatedAt: z.ZodString;
|
|
28604
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28605
28650
|
props: z.ZodNullable<z.ZodType<{
|
|
28606
28651
|
[x: string]: unknown;
|
|
28607
28652
|
type: "object";
|
|
@@ -28648,9 +28693,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28648
28693
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28649
28694
|
id: z.ZodString;
|
|
28650
28695
|
name: z.ZodString;
|
|
28696
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28651
28697
|
createdAt: z.ZodString;
|
|
28652
28698
|
updatedAt: z.ZodString;
|
|
28653
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28654
28699
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28655
28700
|
baseUrl: z.ZodString;
|
|
28656
28701
|
}, z.core.$strip>>>;
|
|
@@ -28675,10 +28720,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28675
28720
|
createdAt: z.ZodString;
|
|
28676
28721
|
updatedAt: z.ZodString;
|
|
28677
28722
|
userId: z.ZodNullable<z.ZodString>;
|
|
28723
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
28678
28724
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
28679
28725
|
credentialStoreId: z.ZodString;
|
|
28680
28726
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28681
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
28682
28727
|
type: z.ZodEnum<{
|
|
28683
28728
|
readonly memory: "memory";
|
|
28684
28729
|
readonly keychain: "keychain";
|
|
@@ -29264,18 +29309,18 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
29264
29309
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29265
29310
|
id: z.ZodString;
|
|
29266
29311
|
name: z.ZodString;
|
|
29312
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29267
29313
|
createdAt: z.ZodString;
|
|
29268
29314
|
updatedAt: z.ZodString;
|
|
29269
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29270
29315
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
29271
29316
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
29272
29317
|
executionMode: z.ZodString;
|
|
29273
29318
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29274
29319
|
id: z.ZodString;
|
|
29275
29320
|
name: z.ZodString;
|
|
29321
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29276
29322
|
createdAt: z.ZodString;
|
|
29277
29323
|
updatedAt: z.ZodString;
|
|
29278
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29279
29324
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
29280
29325
|
config: z.ZodType<{
|
|
29281
29326
|
type: "mcp";
|
|
@@ -29300,9 +29345,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
29300
29345
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29301
29346
|
id: z.ZodString;
|
|
29302
29347
|
name: z.ZodString;
|
|
29348
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29303
29349
|
createdAt: z.ZodString;
|
|
29304
29350
|
updatedAt: z.ZodString;
|
|
29305
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29306
29351
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29307
29352
|
baseUrl: z.ZodString;
|
|
29308
29353
|
}, z.core.$strip>>>;
|
|
@@ -29314,9 +29359,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
29314
29359
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29315
29360
|
id: z.ZodString;
|
|
29316
29361
|
name: z.ZodString;
|
|
29362
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29317
29363
|
createdAt: z.ZodString;
|
|
29318
29364
|
updatedAt: z.ZodString;
|
|
29319
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29320
29365
|
agentId: z.ZodString;
|
|
29321
29366
|
functionId: z.ZodString;
|
|
29322
29367
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -29378,9 +29423,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
29378
29423
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29379
29424
|
id: z.ZodString;
|
|
29380
29425
|
name: z.ZodString;
|
|
29426
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29381
29427
|
createdAt: z.ZodString;
|
|
29382
29428
|
updatedAt: z.ZodString;
|
|
29383
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29384
29429
|
models: z.ZodNullable<z.ZodType<{
|
|
29385
29430
|
base?: {
|
|
29386
29431
|
model?: string | undefined;
|
|
@@ -29540,9 +29585,9 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
29540
29585
|
data: z.ZodObject<{
|
|
29541
29586
|
id: z.ZodString;
|
|
29542
29587
|
name: z.ZodString;
|
|
29588
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29543
29589
|
createdAt: z.ZodString;
|
|
29544
29590
|
updatedAt: z.ZodString;
|
|
29545
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29546
29591
|
models: z.ZodNullable<z.ZodObject<{
|
|
29547
29592
|
base: z.ZodObject<{
|
|
29548
29593
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -29576,9 +29621,9 @@ declare const SubAgentResponse: z.ZodObject<{
|
|
|
29576
29621
|
data: z.ZodObject<{
|
|
29577
29622
|
id: z.ZodString;
|
|
29578
29623
|
name: z.ZodString;
|
|
29624
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29579
29625
|
createdAt: z.ZodString;
|
|
29580
29626
|
updatedAt: z.ZodString;
|
|
29581
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29582
29627
|
models: z.ZodNullable<z.ZodType<{
|
|
29583
29628
|
base?: {
|
|
29584
29629
|
model?: string | undefined;
|
|
@@ -29706,9 +29751,9 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
29706
29751
|
data: z.ZodObject<{
|
|
29707
29752
|
id: z.ZodString;
|
|
29708
29753
|
name: z.ZodString;
|
|
29754
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29709
29755
|
createdAt: z.ZodString;
|
|
29710
29756
|
updatedAt: z.ZodString;
|
|
29711
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29712
29757
|
models: z.ZodNullable<z.ZodType<{
|
|
29713
29758
|
base?: {
|
|
29714
29759
|
model?: string | undefined;
|
|
@@ -29862,9 +29907,9 @@ declare const ExternalAgentResponse: z.ZodObject<{
|
|
|
29862
29907
|
data: z.ZodObject<{
|
|
29863
29908
|
id: z.ZodString;
|
|
29864
29909
|
name: z.ZodString;
|
|
29910
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29865
29911
|
createdAt: z.ZodString;
|
|
29866
29912
|
updatedAt: z.ZodString;
|
|
29867
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29868
29913
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29869
29914
|
baseUrl: z.ZodString;
|
|
29870
29915
|
}, z.core.$strip>;
|
|
@@ -29884,8 +29929,8 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
29884
29929
|
name: z.ZodNullable<z.ZodString>;
|
|
29885
29930
|
createdAt: z.ZodString;
|
|
29886
29931
|
updatedAt: z.ZodString;
|
|
29887
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
29888
29932
|
agentId: z.ZodString;
|
|
29933
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
29889
29934
|
publicId: z.ZodString;
|
|
29890
29935
|
keyPrefix: z.ZodString;
|
|
29891
29936
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -29901,10 +29946,10 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
29901
29946
|
createdAt: z.ZodString;
|
|
29902
29947
|
updatedAt: z.ZodString;
|
|
29903
29948
|
userId: z.ZodNullable<z.ZodString>;
|
|
29949
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
29904
29950
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
29905
29951
|
credentialStoreId: z.ZodString;
|
|
29906
29952
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29907
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
29908
29953
|
type: z.ZodEnum<{
|
|
29909
29954
|
readonly memory: "memory";
|
|
29910
29955
|
readonly keychain: "keychain";
|
|
@@ -30502,9 +30547,9 @@ declare const FunctionToolResponse: z.ZodObject<{
|
|
|
30502
30547
|
data: z.ZodObject<{
|
|
30503
30548
|
id: z.ZodString;
|
|
30504
30549
|
name: z.ZodString;
|
|
30550
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30505
30551
|
createdAt: z.ZodString;
|
|
30506
30552
|
updatedAt: z.ZodString;
|
|
30507
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30508
30553
|
agentId: z.ZodString;
|
|
30509
30554
|
functionId: z.ZodString;
|
|
30510
30555
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -30524,9 +30569,9 @@ declare const DataComponentResponse: z.ZodObject<{
|
|
|
30524
30569
|
data: z.ZodObject<{
|
|
30525
30570
|
id: z.ZodString;
|
|
30526
30571
|
name: z.ZodString;
|
|
30572
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30527
30573
|
createdAt: z.ZodString;
|
|
30528
30574
|
updatedAt: z.ZodString;
|
|
30529
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30530
30575
|
props: z.ZodType<{
|
|
30531
30576
|
[x: string]: unknown;
|
|
30532
30577
|
type: "object";
|
|
@@ -30575,9 +30620,9 @@ declare const ArtifactComponentResponse: z.ZodObject<{
|
|
|
30575
30620
|
data: z.ZodObject<{
|
|
30576
30621
|
id: z.ZodString;
|
|
30577
30622
|
name: z.ZodString;
|
|
30623
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30578
30624
|
createdAt: z.ZodString;
|
|
30579
30625
|
updatedAt: z.ZodString;
|
|
30580
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30581
30626
|
props: z.ZodNullable<z.ZodType<{
|
|
30582
30627
|
[x: string]: unknown;
|
|
30583
30628
|
type: "object";
|
|
@@ -30637,9 +30682,9 @@ declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
|
30637
30682
|
id: z.ZodString;
|
|
30638
30683
|
createdAt: z.ZodString;
|
|
30639
30684
|
updatedAt: z.ZodString;
|
|
30640
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30641
30685
|
subAgentId: z.ZodString;
|
|
30642
30686
|
toolId: z.ZodString;
|
|
30687
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30643
30688
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30644
30689
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30645
30690
|
}, z.core.$strip>;
|
|
@@ -30648,9 +30693,9 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
30648
30693
|
data: z.ZodObject<{
|
|
30649
30694
|
id: z.ZodString;
|
|
30650
30695
|
name: z.ZodString;
|
|
30696
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30651
30697
|
createdAt: z.ZodString;
|
|
30652
30698
|
updatedAt: z.ZodString;
|
|
30653
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30654
30699
|
enabled: z.ZodBoolean;
|
|
30655
30700
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30656
30701
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
@@ -30732,10 +30777,10 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
30732
30777
|
}, z.core.$strip>;
|
|
30733
30778
|
declare const FeedbackResponse: z.ZodObject<{
|
|
30734
30779
|
data: z.ZodObject<{
|
|
30735
|
-
type: z.ZodString;
|
|
30736
30780
|
id: z.ZodString;
|
|
30737
30781
|
createdAt: z.ZodString;
|
|
30738
30782
|
updatedAt: z.ZodString;
|
|
30783
|
+
type: z.ZodString;
|
|
30739
30784
|
details: z.ZodNullable<z.ZodString>;
|
|
30740
30785
|
conversationId: z.ZodString;
|
|
30741
30786
|
messageId: z.ZodNullable<z.ZodString>;
|
|
@@ -30743,11 +30788,11 @@ declare const FeedbackResponse: z.ZodObject<{
|
|
|
30743
30788
|
}, z.core.$strip>;
|
|
30744
30789
|
declare const EventResponse: z.ZodObject<{
|
|
30745
30790
|
data: z.ZodObject<{
|
|
30746
|
-
type: z.ZodString;
|
|
30747
30791
|
id: z.ZodString;
|
|
30792
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30748
30793
|
createdAt: z.ZodString;
|
|
30749
30794
|
updatedAt: z.ZodString;
|
|
30750
|
-
|
|
30795
|
+
type: z.ZodString;
|
|
30751
30796
|
properties: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30752
30797
|
agentId: z.ZodNullable<z.ZodString>;
|
|
30753
30798
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
@@ -30758,10 +30803,10 @@ declare const EventResponse: z.ZodObject<{
|
|
|
30758
30803
|
}, z.core.$strip>;
|
|
30759
30804
|
declare const BulkFeedbackResponseSchema: z.ZodObject<{
|
|
30760
30805
|
data: z.ZodArray<z.ZodObject<{
|
|
30761
|
-
type: z.ZodString;
|
|
30762
30806
|
id: z.ZodString;
|
|
30763
30807
|
createdAt: z.ZodString;
|
|
30764
30808
|
updatedAt: z.ZodString;
|
|
30809
|
+
type: z.ZodString;
|
|
30765
30810
|
details: z.ZodNullable<z.ZodString>;
|
|
30766
30811
|
conversationId: z.ZodString;
|
|
30767
30812
|
messageId: z.ZodNullable<z.ZodString>;
|
|
@@ -30776,9 +30821,9 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
30776
30821
|
data: z.ZodArray<z.ZodObject<{
|
|
30777
30822
|
id: z.ZodString;
|
|
30778
30823
|
name: z.ZodString;
|
|
30824
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30779
30825
|
createdAt: z.ZodString;
|
|
30780
30826
|
updatedAt: z.ZodString;
|
|
30781
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30782
30827
|
models: z.ZodNullable<z.ZodObject<{
|
|
30783
30828
|
base: z.ZodObject<{
|
|
30784
30829
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -30819,9 +30864,9 @@ declare const SubAgentListResponse: z.ZodObject<{
|
|
|
30819
30864
|
data: z.ZodArray<z.ZodObject<{
|
|
30820
30865
|
id: z.ZodString;
|
|
30821
30866
|
name: z.ZodString;
|
|
30867
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30822
30868
|
createdAt: z.ZodString;
|
|
30823
30869
|
updatedAt: z.ZodString;
|
|
30824
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30825
30870
|
models: z.ZodNullable<z.ZodType<{
|
|
30826
30871
|
base?: {
|
|
30827
30872
|
model?: string | undefined;
|
|
@@ -30956,9 +31001,9 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
30956
31001
|
data: z.ZodArray<z.ZodObject<{
|
|
30957
31002
|
id: z.ZodString;
|
|
30958
31003
|
name: z.ZodString;
|
|
31004
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30959
31005
|
createdAt: z.ZodString;
|
|
30960
31006
|
updatedAt: z.ZodString;
|
|
30961
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30962
31007
|
models: z.ZodNullable<z.ZodType<{
|
|
30963
31008
|
base?: {
|
|
30964
31009
|
model?: string | undefined;
|
|
@@ -31119,9 +31164,9 @@ declare const ExternalAgentListResponse: z.ZodObject<{
|
|
|
31119
31164
|
data: z.ZodArray<z.ZodObject<{
|
|
31120
31165
|
id: z.ZodString;
|
|
31121
31166
|
name: z.ZodString;
|
|
31167
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31122
31168
|
createdAt: z.ZodString;
|
|
31123
31169
|
updatedAt: z.ZodString;
|
|
31124
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31125
31170
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31126
31171
|
baseUrl: z.ZodString;
|
|
31127
31172
|
}, z.core.$strip>>;
|
|
@@ -31155,8 +31200,8 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
31155
31200
|
name: z.ZodNullable<z.ZodString>;
|
|
31156
31201
|
createdAt: z.ZodString;
|
|
31157
31202
|
updatedAt: z.ZodString;
|
|
31158
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
31159
31203
|
agentId: z.ZodString;
|
|
31204
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
31160
31205
|
publicId: z.ZodString;
|
|
31161
31206
|
keyPrefix: z.ZodString;
|
|
31162
31207
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -31174,15 +31219,15 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
31174
31219
|
}, z.core.$strip>;
|
|
31175
31220
|
declare const AppResponse: z.ZodObject<{
|
|
31176
31221
|
data: z.ZodObject<{
|
|
31177
|
-
type: z.ZodString;
|
|
31178
31222
|
id: z.ZodString;
|
|
31179
31223
|
name: z.ZodString;
|
|
31224
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31180
31225
|
createdAt: z.ZodString;
|
|
31181
31226
|
updatedAt: z.ZodString;
|
|
31182
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31183
|
-
enabled: z.ZodBoolean;
|
|
31184
31227
|
projectId: z.ZodNullable<z.ZodString>;
|
|
31185
31228
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
31229
|
+
type: z.ZodString;
|
|
31230
|
+
enabled: z.ZodBoolean;
|
|
31186
31231
|
prompt: z.ZodNullable<z.ZodString>;
|
|
31187
31232
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
31188
31233
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
@@ -31234,15 +31279,15 @@ declare const AppResponse: z.ZodObject<{
|
|
|
31234
31279
|
}, z.core.$strip>;
|
|
31235
31280
|
declare const AppListResponse: z.ZodObject<{
|
|
31236
31281
|
data: z.ZodArray<z.ZodObject<{
|
|
31237
|
-
type: z.ZodString;
|
|
31238
31282
|
id: z.ZodString;
|
|
31239
31283
|
name: z.ZodString;
|
|
31284
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31240
31285
|
createdAt: z.ZodString;
|
|
31241
31286
|
updatedAt: z.ZodString;
|
|
31242
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31243
|
-
enabled: z.ZodBoolean;
|
|
31244
31287
|
projectId: z.ZodNullable<z.ZodString>;
|
|
31245
31288
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
31289
|
+
type: z.ZodString;
|
|
31290
|
+
enabled: z.ZodBoolean;
|
|
31246
31291
|
prompt: z.ZodNullable<z.ZodString>;
|
|
31247
31292
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
31248
31293
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
@@ -31312,10 +31357,10 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
31312
31357
|
createdAt: z.ZodString;
|
|
31313
31358
|
updatedAt: z.ZodString;
|
|
31314
31359
|
userId: z.ZodNullable<z.ZodString>;
|
|
31360
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
31315
31361
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
31316
31362
|
credentialStoreId: z.ZodString;
|
|
31317
31363
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
31318
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
31319
31364
|
type: z.ZodEnum<{
|
|
31320
31365
|
readonly memory: "memory";
|
|
31321
31366
|
readonly keychain: "keychain";
|
|
@@ -31927,9 +31972,9 @@ declare const FunctionToolListResponse: z.ZodObject<{
|
|
|
31927
31972
|
data: z.ZodArray<z.ZodObject<{
|
|
31928
31973
|
id: z.ZodString;
|
|
31929
31974
|
name: z.ZodString;
|
|
31975
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31930
31976
|
createdAt: z.ZodString;
|
|
31931
31977
|
updatedAt: z.ZodString;
|
|
31932
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31933
31978
|
agentId: z.ZodString;
|
|
31934
31979
|
functionId: z.ZodString;
|
|
31935
31980
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -31961,10 +32006,10 @@ declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
|
|
|
31961
32006
|
}, z.core.$strip>;
|
|
31962
32007
|
declare const FeedbackListResponse: z.ZodObject<{
|
|
31963
32008
|
data: z.ZodArray<z.ZodObject<{
|
|
31964
|
-
type: z.ZodString;
|
|
31965
32009
|
id: z.ZodString;
|
|
31966
32010
|
createdAt: z.ZodString;
|
|
31967
32011
|
updatedAt: z.ZodString;
|
|
32012
|
+
type: z.ZodString;
|
|
31968
32013
|
details: z.ZodNullable<z.ZodString>;
|
|
31969
32014
|
conversationId: z.ZodString;
|
|
31970
32015
|
messageId: z.ZodNullable<z.ZodString>;
|
|
@@ -31982,9 +32027,9 @@ declare const DataComponentListResponse: z.ZodObject<{
|
|
|
31982
32027
|
data: z.ZodArray<z.ZodObject<{
|
|
31983
32028
|
id: z.ZodString;
|
|
31984
32029
|
name: z.ZodString;
|
|
32030
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31985
32031
|
createdAt: z.ZodString;
|
|
31986
32032
|
updatedAt: z.ZodString;
|
|
31987
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31988
32033
|
props: z.ZodType<{
|
|
31989
32034
|
[x: string]: unknown;
|
|
31990
32035
|
type: "object";
|
|
@@ -32040,9 +32085,9 @@ declare const ArtifactComponentListResponse: z.ZodObject<{
|
|
|
32040
32085
|
data: z.ZodArray<z.ZodObject<{
|
|
32041
32086
|
id: z.ZodString;
|
|
32042
32087
|
name: z.ZodString;
|
|
32088
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32043
32089
|
createdAt: z.ZodString;
|
|
32044
32090
|
updatedAt: z.ZodString;
|
|
32045
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32046
32091
|
props: z.ZodNullable<z.ZodType<{
|
|
32047
32092
|
[x: string]: unknown;
|
|
32048
32093
|
type: "object";
|
|
@@ -32116,9 +32161,9 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
|
32116
32161
|
id: z.ZodString;
|
|
32117
32162
|
createdAt: z.ZodString;
|
|
32118
32163
|
updatedAt: z.ZodString;
|
|
32119
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
32120
32164
|
subAgentId: z.ZodString;
|
|
32121
32165
|
toolId: z.ZodString;
|
|
32166
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
32122
32167
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
32123
32168
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
32124
32169
|
}, z.core.$strip>>;
|
|
@@ -32134,9 +32179,9 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
32134
32179
|
data: z.ZodArray<z.ZodObject<{
|
|
32135
32180
|
id: z.ZodString;
|
|
32136
32181
|
name: z.ZodString;
|
|
32182
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32137
32183
|
createdAt: z.ZodString;
|
|
32138
32184
|
updatedAt: z.ZodString;
|
|
32139
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32140
32185
|
enabled: z.ZodBoolean;
|
|
32141
32186
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
32142
32187
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
@@ -32234,9 +32279,9 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
32234
32279
|
data: z.ZodObject<{
|
|
32235
32280
|
id: z.ZodString;
|
|
32236
32281
|
name: z.ZodString;
|
|
32282
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32237
32283
|
createdAt: z.ZodString;
|
|
32238
32284
|
updatedAt: z.ZodString;
|
|
32239
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32240
32285
|
enabled: z.ZodBoolean;
|
|
32241
32286
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
32242
32287
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
@@ -32300,9 +32345,9 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
32300
32345
|
data: z.ZodObject<{
|
|
32301
32346
|
id: z.ZodString;
|
|
32302
32347
|
name: z.ZodString;
|
|
32348
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32303
32349
|
createdAt: z.ZodString;
|
|
32304
32350
|
updatedAt: z.ZodString;
|
|
32305
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32306
32351
|
enabled: z.ZodBoolean;
|
|
32307
32352
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
32308
32353
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
@@ -32367,9 +32412,9 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
32367
32412
|
data: z.ZodArray<z.ZodObject<{
|
|
32368
32413
|
id: z.ZodString;
|
|
32369
32414
|
name: z.ZodString;
|
|
32415
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32370
32416
|
createdAt: z.ZodString;
|
|
32371
32417
|
updatedAt: z.ZodString;
|
|
32372
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32373
32418
|
enabled: z.ZodBoolean;
|
|
32374
32419
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
32375
32420
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
@@ -32446,10 +32491,10 @@ declare const LastRunSummarySchema: z.ZodObject<{
|
|
|
32446
32491
|
declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
32447
32492
|
id: z.ZodString;
|
|
32448
32493
|
name: z.ZodString;
|
|
32494
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32449
32495
|
createdAt: z.ZodString;
|
|
32450
32496
|
updatedAt: z.ZodString;
|
|
32451
32497
|
ref: z.ZodString;
|
|
32452
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32453
32498
|
enabled: z.ZodBoolean;
|
|
32454
32499
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
32455
32500
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -32485,10 +32530,10 @@ declare const ScheduledTriggerResponse: z.ZodObject<{
|
|
|
32485
32530
|
data: z.ZodObject<{
|
|
32486
32531
|
id: z.ZodString;
|
|
32487
32532
|
name: z.ZodString;
|
|
32533
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32488
32534
|
createdAt: z.ZodString;
|
|
32489
32535
|
updatedAt: z.ZodString;
|
|
32490
32536
|
ref: z.ZodString;
|
|
32491
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32492
32537
|
enabled: z.ZodBoolean;
|
|
32493
32538
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
32494
32539
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -32509,10 +32554,10 @@ declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
|
32509
32554
|
data: z.ZodArray<z.ZodObject<{
|
|
32510
32555
|
id: z.ZodString;
|
|
32511
32556
|
name: z.ZodString;
|
|
32557
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32512
32558
|
createdAt: z.ZodString;
|
|
32513
32559
|
updatedAt: z.ZodString;
|
|
32514
32560
|
ref: z.ZodString;
|
|
32515
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32516
32561
|
enabled: z.ZodBoolean;
|
|
32517
32562
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
32518
32563
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -32540,10 +32585,10 @@ declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
|
32540
32585
|
data: z.ZodArray<z.ZodObject<{
|
|
32541
32586
|
id: z.ZodString;
|
|
32542
32587
|
name: z.ZodString;
|
|
32588
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32543
32589
|
createdAt: z.ZodString;
|
|
32544
32590
|
updatedAt: z.ZodString;
|
|
32545
32591
|
ref: z.ZodString;
|
|
32546
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32547
32592
|
enabled: z.ZodBoolean;
|
|
32548
32593
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
32549
32594
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -32706,9 +32751,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32706
32751
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32707
32752
|
id: z.ZodString;
|
|
32708
32753
|
name: z.ZodString;
|
|
32754
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32709
32755
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
32710
32756
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
32711
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32712
32757
|
models: z.ZodOptional<z.ZodObject<{
|
|
32713
32758
|
base: z.ZodOptional<z.ZodObject<{
|
|
32714
32759
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -33055,10 +33100,10 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
33055
33100
|
id: z.ZodString;
|
|
33056
33101
|
name: z.ZodString;
|
|
33057
33102
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33103
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33058
33104
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33059
33105
|
credentialStoreId: z.ZodString;
|
|
33060
33106
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
33061
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33062
33107
|
type: z.ZodEnum<{
|
|
33063
33108
|
readonly memory: "memory";
|
|
33064
33109
|
readonly keychain: "keychain";
|
|
@@ -33077,9 +33122,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33077
33122
|
data: z.ZodObject<{
|
|
33078
33123
|
id: z.ZodString;
|
|
33079
33124
|
name: z.ZodString;
|
|
33125
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33080
33126
|
createdAt: z.ZodString;
|
|
33081
33127
|
updatedAt: z.ZodString;
|
|
33082
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33083
33128
|
models: z.ZodNullable<z.ZodObject<{
|
|
33084
33129
|
base: z.ZodObject<{
|
|
33085
33130
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -33107,18 +33152,18 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33107
33152
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33108
33153
|
id: z.ZodString;
|
|
33109
33154
|
name: z.ZodString;
|
|
33155
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33110
33156
|
createdAt: z.ZodString;
|
|
33111
33157
|
updatedAt: z.ZodString;
|
|
33112
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33113
33158
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33114
33159
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
33115
33160
|
executionMode: z.ZodString;
|
|
33116
33161
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33117
33162
|
id: z.ZodString;
|
|
33118
33163
|
name: z.ZodString;
|
|
33164
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33119
33165
|
createdAt: z.ZodString;
|
|
33120
33166
|
updatedAt: z.ZodString;
|
|
33121
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33122
33167
|
models: z.ZodNullable<z.ZodType<{
|
|
33123
33168
|
base?: {
|
|
33124
33169
|
model?: string | undefined;
|
|
@@ -33266,9 +33311,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33266
33311
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33267
33312
|
id: z.ZodString;
|
|
33268
33313
|
name: z.ZodString;
|
|
33314
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33269
33315
|
createdAt: z.ZodString;
|
|
33270
33316
|
updatedAt: z.ZodString;
|
|
33271
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33272
33317
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33273
33318
|
config: z.ZodType<{
|
|
33274
33319
|
type: "mcp";
|
|
@@ -33293,9 +33338,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33293
33338
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33294
33339
|
id: z.ZodString;
|
|
33295
33340
|
name: z.ZodString;
|
|
33341
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33296
33342
|
createdAt: z.ZodString;
|
|
33297
33343
|
updatedAt: z.ZodString;
|
|
33298
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33299
33344
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33300
33345
|
baseUrl: z.ZodString;
|
|
33301
33346
|
}, z.core.$strip>>>;
|
|
@@ -33307,9 +33352,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33307
33352
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33308
33353
|
id: z.ZodString;
|
|
33309
33354
|
name: z.ZodString;
|
|
33355
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33310
33356
|
createdAt: z.ZodString;
|
|
33311
33357
|
updatedAt: z.ZodString;
|
|
33312
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33313
33358
|
agentId: z.ZodString;
|
|
33314
33359
|
functionId: z.ZodString;
|
|
33315
33360
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -33372,9 +33417,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33372
33417
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33373
33418
|
id: z.ZodString;
|
|
33374
33419
|
name: z.ZodString;
|
|
33420
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33375
33421
|
createdAt: z.ZodString;
|
|
33376
33422
|
updatedAt: z.ZodString;
|
|
33377
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33378
33423
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33379
33424
|
config: z.ZodType<{
|
|
33380
33425
|
type: "mcp";
|
|
@@ -33399,9 +33444,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33399
33444
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33400
33445
|
id: z.ZodString;
|
|
33401
33446
|
name: z.ZodString;
|
|
33447
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33402
33448
|
createdAt: z.ZodString;
|
|
33403
33449
|
updatedAt: z.ZodString;
|
|
33404
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33405
33450
|
agentId: z.ZodString;
|
|
33406
33451
|
functionId: z.ZodString;
|
|
33407
33452
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -33417,9 +33462,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33417
33462
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33418
33463
|
id: z.ZodString;
|
|
33419
33464
|
name: z.ZodString;
|
|
33465
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33420
33466
|
createdAt: z.ZodString;
|
|
33421
33467
|
updatedAt: z.ZodString;
|
|
33422
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33423
33468
|
props: z.ZodType<{
|
|
33424
33469
|
[x: string]: unknown;
|
|
33425
33470
|
type: "object";
|
|
@@ -33466,9 +33511,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33466
33511
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33467
33512
|
id: z.ZodString;
|
|
33468
33513
|
name: z.ZodString;
|
|
33514
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33469
33515
|
createdAt: z.ZodString;
|
|
33470
33516
|
updatedAt: z.ZodString;
|
|
33471
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33472
33517
|
props: z.ZodNullable<z.ZodType<{
|
|
33473
33518
|
[x: string]: unknown;
|
|
33474
33519
|
type: "object";
|
|
@@ -33515,9 +33560,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33515
33560
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33516
33561
|
id: z.ZodString;
|
|
33517
33562
|
name: z.ZodString;
|
|
33563
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33518
33564
|
createdAt: z.ZodString;
|
|
33519
33565
|
updatedAt: z.ZodString;
|
|
33520
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33521
33566
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33522
33567
|
baseUrl: z.ZodString;
|
|
33523
33568
|
}, z.core.$strip>>>;
|
|
@@ -33542,10 +33587,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33542
33587
|
createdAt: z.ZodString;
|
|
33543
33588
|
updatedAt: z.ZodString;
|
|
33544
33589
|
userId: z.ZodNullable<z.ZodString>;
|
|
33590
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
33545
33591
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
33546
33592
|
credentialStoreId: z.ZodString;
|
|
33547
33593
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
33548
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
33549
33594
|
type: z.ZodEnum<{
|
|
33550
33595
|
readonly memory: "memory";
|
|
33551
33596
|
readonly keychain: "keychain";
|
|
@@ -34137,9 +34182,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34137
34182
|
data: z.ZodObject<{
|
|
34138
34183
|
id: z.ZodString;
|
|
34139
34184
|
name: z.ZodString;
|
|
34185
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34140
34186
|
createdAt: z.ZodString;
|
|
34141
34187
|
updatedAt: z.ZodString;
|
|
34142
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34143
34188
|
models: z.ZodNullable<z.ZodObject<{
|
|
34144
34189
|
base: z.ZodObject<{
|
|
34145
34190
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -34167,9 +34212,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34167
34212
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34168
34213
|
id: z.ZodString;
|
|
34169
34214
|
name: z.ZodString;
|
|
34215
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34170
34216
|
createdAt: z.ZodString;
|
|
34171
34217
|
updatedAt: z.ZodString;
|
|
34172
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34173
34218
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
34174
34219
|
config: z.ZodType<{
|
|
34175
34220
|
type: "mcp";
|
|
@@ -34194,9 +34239,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34194
34239
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34195
34240
|
id: z.ZodString;
|
|
34196
34241
|
name: z.ZodString;
|
|
34242
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34197
34243
|
createdAt: z.ZodString;
|
|
34198
34244
|
updatedAt: z.ZodString;
|
|
34199
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34200
34245
|
agentId: z.ZodString;
|
|
34201
34246
|
functionId: z.ZodString;
|
|
34202
34247
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -34212,9 +34257,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34212
34257
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34213
34258
|
id: z.ZodString;
|
|
34214
34259
|
name: z.ZodString;
|
|
34260
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34215
34261
|
createdAt: z.ZodString;
|
|
34216
34262
|
updatedAt: z.ZodString;
|
|
34217
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34218
34263
|
props: z.ZodType<{
|
|
34219
34264
|
[x: string]: unknown;
|
|
34220
34265
|
type: "object";
|
|
@@ -34261,9 +34306,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34261
34306
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34262
34307
|
id: z.ZodString;
|
|
34263
34308
|
name: z.ZodString;
|
|
34309
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34264
34310
|
createdAt: z.ZodString;
|
|
34265
34311
|
updatedAt: z.ZodString;
|
|
34266
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34267
34312
|
props: z.ZodNullable<z.ZodType<{
|
|
34268
34313
|
[x: string]: unknown;
|
|
34269
34314
|
type: "object";
|
|
@@ -34310,9 +34355,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34310
34355
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34311
34356
|
id: z.ZodString;
|
|
34312
34357
|
name: z.ZodString;
|
|
34358
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34313
34359
|
createdAt: z.ZodString;
|
|
34314
34360
|
updatedAt: z.ZodString;
|
|
34315
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34316
34361
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34317
34362
|
baseUrl: z.ZodString;
|
|
34318
34363
|
}, z.core.$strip>>>;
|
|
@@ -34337,10 +34382,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34337
34382
|
createdAt: z.ZodString;
|
|
34338
34383
|
updatedAt: z.ZodString;
|
|
34339
34384
|
userId: z.ZodNullable<z.ZodString>;
|
|
34385
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
34340
34386
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
34341
34387
|
credentialStoreId: z.ZodString;
|
|
34342
34388
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
34343
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
34344
34389
|
type: z.ZodEnum<{
|
|
34345
34390
|
readonly memory: "memory";
|
|
34346
34391
|
readonly keychain: "keychain";
|
|
@@ -34926,18 +34971,18 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34926
34971
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34927
34972
|
id: z.ZodString;
|
|
34928
34973
|
name: z.ZodString;
|
|
34974
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34929
34975
|
createdAt: z.ZodString;
|
|
34930
34976
|
updatedAt: z.ZodString;
|
|
34931
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34932
34977
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
34933
34978
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
34934
34979
|
executionMode: z.ZodString;
|
|
34935
34980
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34936
34981
|
id: z.ZodString;
|
|
34937
34982
|
name: z.ZodString;
|
|
34983
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34938
34984
|
createdAt: z.ZodString;
|
|
34939
34985
|
updatedAt: z.ZodString;
|
|
34940
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34941
34986
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
34942
34987
|
config: z.ZodType<{
|
|
34943
34988
|
type: "mcp";
|
|
@@ -34962,9 +35007,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34962
35007
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34963
35008
|
id: z.ZodString;
|
|
34964
35009
|
name: z.ZodString;
|
|
35010
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34965
35011
|
createdAt: z.ZodString;
|
|
34966
35012
|
updatedAt: z.ZodString;
|
|
34967
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34968
35013
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34969
35014
|
baseUrl: z.ZodString;
|
|
34970
35015
|
}, z.core.$strip>>>;
|
|
@@ -34976,9 +35021,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34976
35021
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34977
35022
|
id: z.ZodString;
|
|
34978
35023
|
name: z.ZodString;
|
|
35024
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34979
35025
|
createdAt: z.ZodString;
|
|
34980
35026
|
updatedAt: z.ZodString;
|
|
34981
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34982
35027
|
agentId: z.ZodString;
|
|
34983
35028
|
functionId: z.ZodString;
|
|
34984
35029
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -35040,9 +35085,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
35040
35085
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
35041
35086
|
id: z.ZodString;
|
|
35042
35087
|
name: z.ZodString;
|
|
35088
|
+
description: z.ZodNullable<z.ZodString>;
|
|
35043
35089
|
createdAt: z.ZodString;
|
|
35044
35090
|
updatedAt: z.ZodString;
|
|
35045
|
-
description: z.ZodNullable<z.ZodString>;
|
|
35046
35091
|
models: z.ZodNullable<z.ZodType<{
|
|
35047
35092
|
base?: {
|
|
35048
35093
|
model?: string | undefined;
|
|
@@ -35210,9 +35255,9 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
35210
35255
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
35211
35256
|
id: z.ZodString;
|
|
35212
35257
|
name: z.ZodString;
|
|
35258
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35213
35259
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
35214
35260
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
35215
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35216
35261
|
models: z.ZodOptional<z.ZodObject<{
|
|
35217
35262
|
base: z.ZodOptional<z.ZodObject<{
|
|
35218
35263
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -35406,18 +35451,18 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
35406
35451
|
data: z.ZodObject<{
|
|
35407
35452
|
id: z.ZodString;
|
|
35408
35453
|
name: z.ZodString;
|
|
35454
|
+
description: z.ZodNullable<z.ZodString>;
|
|
35409
35455
|
createdAt: z.ZodString;
|
|
35410
35456
|
updatedAt: z.ZodString;
|
|
35411
|
-
description: z.ZodNullable<z.ZodString>;
|
|
35412
35457
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
35413
35458
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
35414
35459
|
executionMode: z.ZodString;
|
|
35415
35460
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
35416
35461
|
id: z.ZodString;
|
|
35417
35462
|
name: z.ZodString;
|
|
35463
|
+
description: z.ZodNullable<z.ZodString>;
|
|
35418
35464
|
createdAt: z.ZodString;
|
|
35419
35465
|
updatedAt: z.ZodString;
|
|
35420
|
-
description: z.ZodNullable<z.ZodString>;
|
|
35421
35466
|
models: z.ZodNullable<z.ZodType<{
|
|
35422
35467
|
base?: {
|
|
35423
35468
|
model?: string | undefined;
|
|
@@ -35565,9 +35610,9 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
35565
35610
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
35566
35611
|
id: z.ZodString;
|
|
35567
35612
|
name: z.ZodString;
|
|
35613
|
+
description: z.ZodNullable<z.ZodString>;
|
|
35568
35614
|
createdAt: z.ZodString;
|
|
35569
35615
|
updatedAt: z.ZodString;
|
|
35570
|
-
description: z.ZodNullable<z.ZodString>;
|
|
35571
35616
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
35572
35617
|
config: z.ZodType<{
|
|
35573
35618
|
type: "mcp";
|
|
@@ -35592,9 +35637,9 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
35592
35637
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
35593
35638
|
id: z.ZodString;
|
|
35594
35639
|
name: z.ZodString;
|
|
35640
|
+
description: z.ZodNullable<z.ZodString>;
|
|
35595
35641
|
createdAt: z.ZodString;
|
|
35596
35642
|
updatedAt: z.ZodString;
|
|
35597
|
-
description: z.ZodNullable<z.ZodString>;
|
|
35598
35643
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35599
35644
|
baseUrl: z.ZodString;
|
|
35600
35645
|
}, z.core.$strip>>>;
|
|
@@ -35606,9 +35651,9 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
35606
35651
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
35607
35652
|
id: z.ZodString;
|
|
35608
35653
|
name: z.ZodString;
|
|
35654
|
+
description: z.ZodNullable<z.ZodString>;
|
|
35609
35655
|
createdAt: z.ZodString;
|
|
35610
35656
|
updatedAt: z.ZodString;
|
|
35611
|
-
description: z.ZodNullable<z.ZodString>;
|
|
35612
35657
|
agentId: z.ZodString;
|
|
35613
35658
|
functionId: z.ZodString;
|
|
35614
35659
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -35823,8 +35868,8 @@ declare const SubAgentTeamAgentRelationResponse: z.ZodObject<{
|
|
|
35823
35868
|
id: z.ZodString;
|
|
35824
35869
|
createdAt: z.ZodString;
|
|
35825
35870
|
updatedAt: z.ZodString;
|
|
35826
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
35827
35871
|
subAgentId: z.ZodString;
|
|
35872
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
35828
35873
|
targetAgentId: z.ZodString;
|
|
35829
35874
|
}, z.core.$strip>;
|
|
35830
35875
|
}, z.core.$strip>;
|
|
@@ -35833,8 +35878,8 @@ declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
|
|
|
35833
35878
|
id: z.ZodString;
|
|
35834
35879
|
createdAt: z.ZodString;
|
|
35835
35880
|
updatedAt: z.ZodString;
|
|
35836
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
35837
35881
|
subAgentId: z.ZodString;
|
|
35882
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
35838
35883
|
targetAgentId: z.ZodString;
|
|
35839
35884
|
}, z.core.$strip>>;
|
|
35840
35885
|
pagination: z.ZodObject<{
|
|
@@ -35850,8 +35895,8 @@ declare const SubAgentExternalAgentRelationResponse: z.ZodObject<{
|
|
|
35850
35895
|
id: z.ZodString;
|
|
35851
35896
|
createdAt: z.ZodString;
|
|
35852
35897
|
updatedAt: z.ZodString;
|
|
35853
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
35854
35898
|
subAgentId: z.ZodString;
|
|
35899
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
35855
35900
|
externalAgentId: z.ZodString;
|
|
35856
35901
|
}, z.core.$strip>;
|
|
35857
35902
|
}, z.core.$strip>;
|
|
@@ -35860,8 +35905,8 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
|
35860
35905
|
id: z.ZodString;
|
|
35861
35906
|
createdAt: z.ZodString;
|
|
35862
35907
|
updatedAt: z.ZodString;
|
|
35863
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
35864
35908
|
subAgentId: z.ZodString;
|
|
35909
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
35865
35910
|
externalAgentId: z.ZodString;
|
|
35866
35911
|
}, z.core.$strip>>;
|
|
35867
35912
|
pagination: z.ZodObject<{
|
|
@@ -35876,9 +35921,9 @@ declare const DataComponentArrayResponse: z.ZodObject<{
|
|
|
35876
35921
|
data: z.ZodArray<z.ZodObject<{
|
|
35877
35922
|
id: z.ZodString;
|
|
35878
35923
|
name: z.ZodString;
|
|
35924
|
+
description: z.ZodNullable<z.ZodString>;
|
|
35879
35925
|
createdAt: z.ZodString;
|
|
35880
35926
|
updatedAt: z.ZodString;
|
|
35881
|
-
description: z.ZodNullable<z.ZodString>;
|
|
35882
35927
|
props: z.ZodType<{
|
|
35883
35928
|
[x: string]: unknown;
|
|
35884
35929
|
type: "object";
|
|
@@ -35927,9 +35972,9 @@ declare const ArtifactComponentArrayResponse: z.ZodObject<{
|
|
|
35927
35972
|
data: z.ZodArray<z.ZodObject<{
|
|
35928
35973
|
id: z.ZodString;
|
|
35929
35974
|
name: z.ZodString;
|
|
35975
|
+
description: z.ZodNullable<z.ZodString>;
|
|
35930
35976
|
createdAt: z.ZodString;
|
|
35931
35977
|
updatedAt: z.ZodString;
|
|
35932
|
-
description: z.ZodNullable<z.ZodString>;
|
|
35933
35978
|
props: z.ZodNullable<z.ZodType<{
|
|
35934
35979
|
[x: string]: unknown;
|
|
35935
35980
|
type: "object";
|
|
@@ -36634,8 +36679,8 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
36634
36679
|
}, undefined>, undefined>;
|
|
36635
36680
|
declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
|
|
36636
36681
|
id: z.ZodString;
|
|
36637
|
-
accountId: z.ZodString;
|
|
36638
36682
|
tenantId: z.ZodString;
|
|
36683
|
+
accountId: z.ZodString;
|
|
36639
36684
|
installationId: z.ZodString;
|
|
36640
36685
|
accountLogin: z.ZodString;
|
|
36641
36686
|
accountType: z.ZodEnum<{
|
|
@@ -36663,6 +36708,7 @@ declare const WorkAppGithubInstallationApiSelectSchema: z.ZodObject<{
|
|
|
36663
36708
|
accountType: z.ZodString;
|
|
36664
36709
|
}, z.core.$strip>;
|
|
36665
36710
|
declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<{
|
|
36711
|
+
tenantId: z.ZodString;
|
|
36666
36712
|
accountId: z.ZodString;
|
|
36667
36713
|
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
36668
36714
|
pending: "pending";
|
|
@@ -36670,7 +36716,6 @@ declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<{
|
|
|
36670
36716
|
suspended: "suspended";
|
|
36671
36717
|
disconnected: "disconnected";
|
|
36672
36718
|
}>>>;
|
|
36673
|
-
tenantId: z.ZodString;
|
|
36674
36719
|
installationId: z.ZodString;
|
|
36675
36720
|
accountLogin: z.ZodString;
|
|
36676
36721
|
accountType: z.ZodEnum<{
|