@inkeep/agents-core 0.67.0 → 0.67.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/auth-schema.d.ts +108 -108
- package/dist/auth/auth-validation-schemas.d.ts +154 -154
- 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 +2 -2
- package/dist/data-access/manage/subAgentRelations.d.ts +2 -2
- package/dist/data-access/manage/subAgents.d.ts +3 -3
- package/dist/data-access/manage/tools.d.ts +6 -6
- package/dist/data-access/runtime/apps.d.ts +4 -4
- package/dist/data-access/runtime/conversations.d.ts +4 -4
- package/dist/data-access/runtime/feedback.d.ts +2 -2
- package/dist/data-access/runtime/tasks.d.ts +1 -1
- package/dist/db/manage/dolt-safe-jsonb.d.ts +2 -2
- package/dist/db/manage/manage-schema.d.ts +453 -453
- package/dist/db/runtime/runtime-schema.d.ts +405 -405
- package/dist/validation/schemas/skills.d.ts +29 -29
- package/dist/validation/schemas.d.ts +284 -284
- package/package.json +1 -1
|
@@ -739,9 +739,9 @@ declare const SubAgentUpdateSchema: z.ZodObject<{
|
|
|
739
739
|
in: {};
|
|
740
740
|
}>;
|
|
741
741
|
declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
742
|
-
description: z.ZodNullable<z.ZodString>;
|
|
743
742
|
id: z.ZodString;
|
|
744
743
|
name: z.ZodString;
|
|
744
|
+
description: z.ZodNullable<z.ZodString>;
|
|
745
745
|
createdAt: z.ZodString;
|
|
746
746
|
updatedAt: z.ZodString;
|
|
747
747
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -834,9 +834,9 @@ declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
|
834
834
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
835
835
|
}, z.core.$strip>;
|
|
836
836
|
declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
837
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
838
837
|
id: z.ZodString;
|
|
839
838
|
name: z.ZodString;
|
|
839
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
840
840
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
841
841
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
842
842
|
models: z.ZodOptional<z.ZodObject<{
|
|
@@ -872,9 +872,9 @@ declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
|
872
872
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
873
873
|
}, z.core.$strip>;
|
|
874
874
|
declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
875
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
876
875
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
877
876
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
877
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
878
878
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
879
879
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
880
880
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -2664,7 +2664,7 @@ declare const AgentInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
2664
2664
|
}, {}, {
|
|
2665
2665
|
length: 256;
|
|
2666
2666
|
}>;
|
|
2667
|
-
}, "
|
|
2667
|
+
}, "id" | "name" | "description" | "createdAt" | "updatedAt" | "projectId" | "tenantId" | "models" | "stopWhen" | "prompt" | "defaultSubAgentId" | "contextConfigId" | "statusUpdates" | "executionMode">, undefined>, undefined>;
|
|
2668
2668
|
declare const AgentUpdateSchema: z.ZodObject<{
|
|
2669
2669
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2670
2670
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2825,9 +2825,9 @@ declare const AgentUpdateSchema: z.ZodObject<{
|
|
|
2825
2825
|
in: {};
|
|
2826
2826
|
}>;
|
|
2827
2827
|
declare const AgentApiSelectSchema: z.ZodObject<{
|
|
2828
|
-
description: z.ZodNullable<z.ZodString>;
|
|
2829
2828
|
id: z.ZodString;
|
|
2830
2829
|
name: z.ZodString;
|
|
2830
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2831
2831
|
createdAt: z.ZodString;
|
|
2832
2832
|
updatedAt: z.ZodString;
|
|
2833
2833
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -2979,9 +2979,9 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
2979
2979
|
executionMode: z.ZodString;
|
|
2980
2980
|
}, z.core.$strip>;
|
|
2981
2981
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
2982
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2983
2982
|
id: z.ZodString;
|
|
2984
2983
|
name: z.ZodString;
|
|
2984
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2985
2985
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2986
2986
|
base?: {
|
|
2987
2987
|
model?: string | undefined;
|
|
@@ -3131,8 +3131,8 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
3131
3131
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
3132
3132
|
}, z.core.$strip>;
|
|
3133
3133
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
3134
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3135
3134
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3135
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3136
3136
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3137
3137
|
base?: {
|
|
3138
3138
|
model?: string | undefined;
|
|
@@ -4394,7 +4394,7 @@ declare const TriggerInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
4394
4394
|
}, {}, {
|
|
4395
4395
|
length: 256;
|
|
4396
4396
|
}>;
|
|
4397
|
-
}, "
|
|
4397
|
+
}, "id" | "name" | "description" | "createdAt" | "updatedAt" | "projectId" | "tenantId" | "agentId" | "inputSchema" | "enabled" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification" | "runAsUserId" | "dispatchDelayMs" | "createdBy">, undefined>, undefined>;
|
|
4398
4398
|
declare const runAsUserIdsSchema: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4399
4399
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
4400
4400
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4426,9 +4426,9 @@ declare const TriggerUpdateSchema: z.ZodObject<{
|
|
|
4426
4426
|
in: {};
|
|
4427
4427
|
}>;
|
|
4428
4428
|
declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
4429
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4430
4429
|
id: z.ZodString;
|
|
4431
4430
|
name: z.ZodString;
|
|
4431
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4432
4432
|
createdAt: z.ZodString;
|
|
4433
4433
|
updatedAt: z.ZodString;
|
|
4434
4434
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
@@ -4487,9 +4487,9 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4487
4487
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4488
4488
|
}, z.core.$strip>;
|
|
4489
4489
|
declare const TriggerApiInsertBaseSchema: z.ZodObject<{
|
|
4490
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4491
4490
|
id: z.ZodOptional<z.ZodString>;
|
|
4492
4491
|
name: z.ZodString;
|
|
4492
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4493
4493
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
4494
4494
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4495
4495
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
@@ -4503,9 +4503,9 @@ declare const TriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
4503
4503
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4504
4504
|
}, z.core.$strip>;
|
|
4505
4505
|
declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
4506
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4507
4506
|
id: z.ZodOptional<z.ZodString>;
|
|
4508
4507
|
name: z.ZodString;
|
|
4508
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4509
4509
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
4510
4510
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4511
4511
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
@@ -4519,9 +4519,9 @@ declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
|
4519
4519
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4520
4520
|
}, z.core.$strip>;
|
|
4521
4521
|
declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
4522
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4523
4522
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4524
4523
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4524
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4525
4525
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4526
4526
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4527
4527
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>>>;
|
|
@@ -4543,9 +4543,9 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4543
4543
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4544
4544
|
}, z.core.$strip>;
|
|
4545
4545
|
declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
4546
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4547
4546
|
id: z.ZodString;
|
|
4548
4547
|
name: z.ZodString;
|
|
4548
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4549
4549
|
createdAt: z.ZodString;
|
|
4550
4550
|
updatedAt: z.ZodString;
|
|
4551
4551
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
@@ -5167,7 +5167,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod3.BuildSchema<"insert",
|
|
|
5167
5167
|
}, {}, {
|
|
5168
5168
|
length: 256;
|
|
5169
5169
|
}>;
|
|
5170
|
-
}, "
|
|
5170
|
+
}, "id" | "ref" | "createdAt" | "projectId" | "tenantId" | "agentId" | "status" | "runAsUserId" | "triggerId" | "conversationId" | "batchId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
5171
5171
|
declare const SetTriggerUsersRequestSchema: z.ZodObject<{
|
|
5172
5172
|
userIds: z.ZodArray<z.ZodString>;
|
|
5173
5173
|
}, z.core.$strip>;
|
|
@@ -5213,7 +5213,6 @@ declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
5213
5213
|
in: {};
|
|
5214
5214
|
}>;
|
|
5215
5215
|
declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
5216
|
-
status: z.ZodString;
|
|
5217
5216
|
id: z.ZodString;
|
|
5218
5217
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5219
5218
|
type: z.ZodEnum<{
|
|
@@ -5225,6 +5224,7 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5225
5224
|
hash: z.ZodString;
|
|
5226
5225
|
}, z.core.$strip>>>;
|
|
5227
5226
|
createdAt: z.ZodString;
|
|
5227
|
+
status: z.ZodString;
|
|
5228
5228
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5229
5229
|
triggerId: z.ZodString;
|
|
5230
5230
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
@@ -5234,7 +5234,6 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5234
5234
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
5235
5235
|
}, z.core.$strip>;
|
|
5236
5236
|
declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
5237
|
-
status: z.ZodOptional<z.ZodString>;
|
|
5238
5237
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
5239
5238
|
type: "commit" | "tag" | "branch";
|
|
5240
5239
|
name: string;
|
|
@@ -5253,6 +5252,7 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
5253
5252
|
hash: string;
|
|
5254
5253
|
}>>>>;
|
|
5255
5254
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5255
|
+
status: z.ZodOptional<z.ZodString>;
|
|
5256
5256
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5257
5257
|
triggerId: z.ZodString;
|
|
5258
5258
|
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5263,7 +5263,6 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
5263
5263
|
id: z.ZodString;
|
|
5264
5264
|
}, z.core.$strip>;
|
|
5265
5265
|
declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
5266
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5267
5266
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5268
5267
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
5269
5268
|
type: "commit" | "tag" | "branch";
|
|
@@ -5283,6 +5282,7 @@ declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
5283
5282
|
hash: string;
|
|
5284
5283
|
}>>>>>>;
|
|
5285
5284
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5285
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5286
5286
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5287
5287
|
triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5288
5288
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -5321,9 +5321,9 @@ declare const ScheduledTriggerSelectSchema: z.ZodObject<{
|
|
|
5321
5321
|
in: {};
|
|
5322
5322
|
}>;
|
|
5323
5323
|
declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
5324
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5325
5324
|
id: z.ZodString;
|
|
5326
5325
|
name: z.ZodString;
|
|
5326
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5327
5327
|
ref: z.ZodOptional<z.ZodString>;
|
|
5328
5328
|
projectId: z.ZodString;
|
|
5329
5329
|
tenantId: z.ZodString;
|
|
@@ -5345,9 +5345,9 @@ declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
|
5345
5345
|
in: {};
|
|
5346
5346
|
}>;
|
|
5347
5347
|
declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
5348
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5349
5348
|
id: z.ZodOptional<z.ZodString>;
|
|
5350
5349
|
name: z.ZodOptional<z.ZodString>;
|
|
5350
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5351
5351
|
projectId: z.ZodOptional<z.ZodString>;
|
|
5352
5352
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
5353
5353
|
agentId: z.ZodOptional<z.ZodString>;
|
|
@@ -5369,9 +5369,9 @@ declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
|
5369
5369
|
in: {};
|
|
5370
5370
|
}>;
|
|
5371
5371
|
declare const ScheduledTriggerApiSelectSchema: z.ZodObject<{
|
|
5372
|
-
description: z.ZodNullable<z.ZodString>;
|
|
5373
5372
|
id: z.ZodString;
|
|
5374
5373
|
name: z.ZodString;
|
|
5374
|
+
description: z.ZodNullable<z.ZodString>;
|
|
5375
5375
|
ref: z.ZodString;
|
|
5376
5376
|
createdAt: z.ZodString;
|
|
5377
5377
|
updatedAt: z.ZodString;
|
|
@@ -5390,8 +5390,8 @@ declare const ScheduledTriggerApiSelectSchema: z.ZodObject<{
|
|
|
5390
5390
|
nextRunAt: z.ZodNullable<z.ZodString>;
|
|
5391
5391
|
}, z.core.$strip>;
|
|
5392
5392
|
declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
5393
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5394
5393
|
name: z.ZodString;
|
|
5394
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5395
5395
|
ref: z.ZodOptional<z.ZodString>;
|
|
5396
5396
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5397
5397
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5409,8 +5409,8 @@ declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
5409
5409
|
dispatchDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
5410
5410
|
}, z.core.$strip>;
|
|
5411
5411
|
declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
5412
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5413
5412
|
name: z.ZodString;
|
|
5413
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5414
5414
|
ref: z.ZodOptional<z.ZodString>;
|
|
5415
5415
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5416
5416
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5428,9 +5428,9 @@ declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
|
5428
5428
|
dispatchDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
5429
5429
|
}, z.core.$strip>;
|
|
5430
5430
|
declare const ScheduledTriggerApiUpdateSchema: z.ZodObject<{
|
|
5431
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5432
5431
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5433
5432
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5433
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5434
5434
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5435
5435
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
5436
5436
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -6105,7 +6105,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod3.BuildSchema<"
|
|
|
6105
6105
|
}, {}, {
|
|
6106
6106
|
length: 256;
|
|
6107
6107
|
}>;
|
|
6108
|
-
}, "
|
|
6108
|
+
}, "id" | "ref" | "createdAt" | "projectId" | "tenantId" | "agentId" | "status" | "runAsUserId" | "scheduledTriggerId" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "conversationIds" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
|
|
6109
6109
|
declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
6110
6110
|
scheduledTriggerId: z.ZodOptional<z.ZodString>;
|
|
6111
6111
|
ref: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -6144,13 +6144,6 @@ declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
6144
6144
|
in: {};
|
|
6145
6145
|
}>;
|
|
6146
6146
|
declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
6147
|
-
status: z.ZodEnum<{
|
|
6148
|
-
pending: "pending";
|
|
6149
|
-
failed: "failed";
|
|
6150
|
-
running: "running";
|
|
6151
|
-
completed: "completed";
|
|
6152
|
-
cancelled: "cancelled";
|
|
6153
|
-
}>;
|
|
6154
6147
|
id: z.ZodString;
|
|
6155
6148
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6156
6149
|
type: z.ZodEnum<{
|
|
@@ -6162,6 +6155,13 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
6162
6155
|
hash: z.ZodString;
|
|
6163
6156
|
}, z.core.$strip>>>;
|
|
6164
6157
|
createdAt: z.ZodString;
|
|
6158
|
+
status: z.ZodEnum<{
|
|
6159
|
+
pending: "pending";
|
|
6160
|
+
failed: "failed";
|
|
6161
|
+
running: "running";
|
|
6162
|
+
completed: "completed";
|
|
6163
|
+
cancelled: "cancelled";
|
|
6164
|
+
}>;
|
|
6165
6165
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
6166
6166
|
scheduledTriggerId: z.ZodString;
|
|
6167
6167
|
scheduledFor: z.ZodString;
|
|
@@ -6173,7 +6173,6 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
6173
6173
|
idempotencyKey: z.ZodString;
|
|
6174
6174
|
}, z.core.$strip>;
|
|
6175
6175
|
declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
6176
|
-
status: z.ZodString;
|
|
6177
6176
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6178
6177
|
type: "commit" | "tag" | "branch";
|
|
6179
6178
|
name: string;
|
|
@@ -6192,6 +6191,7 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
6192
6191
|
hash: string;
|
|
6193
6192
|
}>>>>;
|
|
6194
6193
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6194
|
+
status: z.ZodString;
|
|
6195
6195
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6196
6196
|
scheduledTriggerId: z.ZodString;
|
|
6197
6197
|
scheduledFor: z.ZodString;
|
|
@@ -6204,7 +6204,6 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
6204
6204
|
id: z.ZodString;
|
|
6205
6205
|
}, z.core.$strip>;
|
|
6206
6206
|
declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
6207
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6208
6207
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6209
6208
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6210
6209
|
type: "commit" | "tag" | "branch";
|
|
@@ -6224,6 +6223,7 @@ declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
6224
6223
|
hash: string;
|
|
6225
6224
|
}>>>>>>;
|
|
6226
6225
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6226
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6227
6227
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6228
6228
|
scheduledTriggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6229
6229
|
scheduledFor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -6457,7 +6457,6 @@ declare const TaskUpdateSchema: z.ZodObject<{
|
|
|
6457
6457
|
in: {};
|
|
6458
6458
|
}>;
|
|
6459
6459
|
declare const TaskApiSelectSchema: z.ZodObject<{
|
|
6460
|
-
status: z.ZodString;
|
|
6461
6460
|
id: z.ZodString;
|
|
6462
6461
|
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
6463
6462
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -6472,11 +6471,11 @@ declare const TaskApiSelectSchema: z.ZodObject<{
|
|
|
6472
6471
|
createdAt: z.ZodString;
|
|
6473
6472
|
updatedAt: z.ZodString;
|
|
6474
6473
|
agentId: z.ZodString;
|
|
6474
|
+
status: z.ZodString;
|
|
6475
6475
|
subAgentId: z.ZodString;
|
|
6476
6476
|
contextId: z.ZodString;
|
|
6477
6477
|
}, z.core.$strip>;
|
|
6478
6478
|
declare const TaskApiInsertSchema: z.ZodObject<{
|
|
6479
|
-
status: z.ZodString;
|
|
6480
6479
|
id: z.ZodString;
|
|
6481
6480
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
6482
6481
|
ref: z.ZodObject<{
|
|
@@ -6491,12 +6490,12 @@ declare const TaskApiInsertSchema: z.ZodObject<{
|
|
|
6491
6490
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6492
6491
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6493
6492
|
agentId: z.ZodString;
|
|
6493
|
+
status: z.ZodString;
|
|
6494
6494
|
subAgentId: z.ZodString;
|
|
6495
6495
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
6496
6496
|
contextId: z.ZodString;
|
|
6497
6497
|
}, z.core.$strip>;
|
|
6498
6498
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
6499
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6500
6499
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6501
6500
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
6502
6501
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -6511,6 +6510,7 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
6511
6510
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6512
6511
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6513
6512
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6513
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6514
6514
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6515
6515
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6516
6516
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -7448,9 +7448,9 @@ declare const ToolSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
7448
7448
|
}>;
|
|
7449
7449
|
}, undefined>, undefined>;
|
|
7450
7450
|
declare const ToolInsertSchema: z.ZodObject<{
|
|
7451
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7452
7451
|
id: z.ZodString;
|
|
7453
7452
|
name: z.ZodString;
|
|
7453
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7454
7454
|
projectId: z.ZodString;
|
|
7455
7455
|
tenantId: z.ZodString;
|
|
7456
7456
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -7568,7 +7568,6 @@ declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
7568
7568
|
in: {};
|
|
7569
7569
|
}>;
|
|
7570
7570
|
declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
7571
|
-
title: z.ZodNullable<z.ZodString>;
|
|
7572
7571
|
id: z.ZodString;
|
|
7573
7572
|
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
7574
7573
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -7582,13 +7581,13 @@ declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
|
7582
7581
|
}, z.core.$strip>>>;
|
|
7583
7582
|
createdAt: z.ZodString;
|
|
7584
7583
|
updatedAt: z.ZodString;
|
|
7584
|
+
title: z.ZodNullable<z.ZodString>;
|
|
7585
7585
|
agentId: z.ZodNullable<z.ZodString>;
|
|
7586
7586
|
userId: z.ZodNullable<z.ZodString>;
|
|
7587
7587
|
activeSubAgentId: z.ZodString;
|
|
7588
7588
|
lastContextResolution: z.ZodNullable<z.ZodString>;
|
|
7589
7589
|
}, z.core.$strip>;
|
|
7590
7590
|
declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
7591
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7592
7591
|
id: z.ZodString;
|
|
7593
7592
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
7594
7593
|
ref: z.ZodObject<{
|
|
@@ -7602,6 +7601,7 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
7602
7601
|
}, z.core.$strip>;
|
|
7603
7602
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7604
7603
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7604
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7605
7605
|
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7606
7606
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7607
7607
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
@@ -7609,7 +7609,6 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
7609
7609
|
lastContextResolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7610
7610
|
}, z.core.$strip>;
|
|
7611
7611
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
7612
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7613
7612
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7614
7613
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
7615
7614
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -7623,6 +7622,7 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
7623
7622
|
}, z.core.$strip>>>;
|
|
7624
7623
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7625
7624
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7625
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7626
7626
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7627
7627
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7628
7628
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
@@ -8907,33 +8907,33 @@ declare const FeedbackUpdateSchema: z.ZodObject<{
|
|
|
8907
8907
|
in: {};
|
|
8908
8908
|
}>;
|
|
8909
8909
|
declare const FeedbackApiSelectSchema: z.ZodObject<{
|
|
8910
|
-
type: z.ZodString;
|
|
8911
8910
|
id: z.ZodString;
|
|
8912
8911
|
createdAt: z.ZodString;
|
|
8913
8912
|
updatedAt: z.ZodString;
|
|
8913
|
+
type: z.ZodString;
|
|
8914
8914
|
details: z.ZodNullable<z.ZodString>;
|
|
8915
8915
|
conversationId: z.ZodString;
|
|
8916
8916
|
messageId: z.ZodNullable<z.ZodString>;
|
|
8917
8917
|
}, z.core.$strip>;
|
|
8918
8918
|
declare const FeedbackApiInsertSchema: z.ZodObject<{
|
|
8919
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8920
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8919
8921
|
type: z.ZodEnum<{
|
|
8920
8922
|
positive: "positive";
|
|
8921
8923
|
negative: "negative";
|
|
8922
8924
|
}>;
|
|
8923
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8924
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8925
8925
|
details: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8926
8926
|
conversationId: z.ZodString;
|
|
8927
8927
|
messageId: z.ZodOptional<z.ZodString>;
|
|
8928
8928
|
id: z.ZodOptional<z.ZodString>;
|
|
8929
8929
|
}, z.core.$strip>;
|
|
8930
8930
|
declare const FeedbackApiUpdateSchema: z.ZodObject<{
|
|
8931
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8932
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8931
8933
|
type: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
|
|
8932
8934
|
positive: "positive";
|
|
8933
8935
|
negative: "negative";
|
|
8934
8936
|
}>>>;
|
|
8935
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8936
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8937
8937
|
details: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8938
8938
|
}, z.core.$strip>;
|
|
8939
8939
|
declare const ContextCacheSelectSchema: z.ZodObject<{
|
|
@@ -9913,26 +9913,26 @@ declare const EvaluationResultUpdateSchema: z.ZodObject<{
|
|
|
9913
9913
|
in: {};
|
|
9914
9914
|
}>;
|
|
9915
9915
|
declare const EvaluationResultApiSelectSchema: z.ZodObject<{
|
|
9916
|
-
output: z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>;
|
|
9917
9916
|
id: z.ZodString;
|
|
9918
9917
|
createdAt: z.ZodString;
|
|
9919
9918
|
updatedAt: z.ZodString;
|
|
9919
|
+
output: z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>;
|
|
9920
9920
|
conversationId: z.ZodString;
|
|
9921
9921
|
evaluatorId: z.ZodString;
|
|
9922
9922
|
evaluationRunId: z.ZodNullable<z.ZodString>;
|
|
9923
9923
|
}, z.core.$strip>;
|
|
9924
9924
|
declare const EvaluationResultApiInsertSchema: z.ZodObject<{
|
|
9925
|
-
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
9926
9925
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9927
9926
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9927
|
+
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
9928
9928
|
conversationId: z.ZodString;
|
|
9929
9929
|
evaluatorId: z.ZodString;
|
|
9930
9930
|
evaluationRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9931
9931
|
}, z.core.$strip>;
|
|
9932
9932
|
declare const EvaluationResultApiUpdateSchema: z.ZodObject<{
|
|
9933
|
-
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
9934
9933
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9935
9934
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9935
|
+
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
9936
9936
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9937
9937
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9938
9938
|
evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -10396,33 +10396,33 @@ declare const EvaluationRunConfigUpdateSchema: z.ZodObject<{
|
|
|
10396
10396
|
in: {};
|
|
10397
10397
|
}>;
|
|
10398
10398
|
declare const EvaluationRunConfigApiSelectSchema: z.ZodObject<{
|
|
10399
|
-
description: z.ZodNullable<z.ZodString>;
|
|
10400
10399
|
id: z.ZodString;
|
|
10401
10400
|
name: z.ZodString;
|
|
10401
|
+
description: z.ZodNullable<z.ZodString>;
|
|
10402
10402
|
createdAt: z.ZodString;
|
|
10403
10403
|
updatedAt: z.ZodString;
|
|
10404
10404
|
isActive: z.ZodBoolean;
|
|
10405
10405
|
}, z.core.$strip>;
|
|
10406
10406
|
declare const EvaluationRunConfigApiInsertSchema: z.ZodObject<{
|
|
10407
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10408
10407
|
name: z.ZodString;
|
|
10408
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10409
10409
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10410
10410
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10411
10411
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
10412
10412
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
10413
10413
|
}, z.core.$strip>;
|
|
10414
10414
|
declare const EvaluationRunConfigApiUpdateSchema: z.ZodObject<{
|
|
10415
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10416
10415
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10416
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10417
10417
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10418
10418
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10419
10419
|
isActive: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
10420
10420
|
suiteConfigIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10421
10421
|
}, z.core.$strip>;
|
|
10422
10422
|
declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
10423
|
-
description: z.ZodNullable<z.ZodString>;
|
|
10424
10423
|
id: z.ZodString;
|
|
10425
10424
|
name: z.ZodString;
|
|
10425
|
+
description: z.ZodNullable<z.ZodString>;
|
|
10426
10426
|
createdAt: z.ZodString;
|
|
10427
10427
|
updatedAt: z.ZodString;
|
|
10428
10428
|
isActive: z.ZodBoolean;
|
|
@@ -12570,9 +12570,9 @@ declare const EvaluatorUpdateSchema: z.ZodObject<{
|
|
|
12570
12570
|
in: {};
|
|
12571
12571
|
}>;
|
|
12572
12572
|
declare const EvaluatorApiSelectSchema: z.ZodObject<{
|
|
12573
|
-
description: z.ZodNullable<z.ZodString>;
|
|
12574
12573
|
id: z.ZodString;
|
|
12575
12574
|
name: z.ZodString;
|
|
12575
|
+
description: z.ZodNullable<z.ZodString>;
|
|
12576
12576
|
createdAt: z.ZodString;
|
|
12577
12577
|
updatedAt: z.ZodString;
|
|
12578
12578
|
model: z.ZodType<{
|
|
@@ -12601,8 +12601,8 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<{
|
|
|
12601
12601
|
passCriteria: z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>;
|
|
12602
12602
|
}, z.core.$strip>;
|
|
12603
12603
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
12604
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12605
12604
|
name: z.ZodString;
|
|
12605
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12606
12606
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12607
12607
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12608
12608
|
model: z.ZodType<{
|
|
@@ -12631,8 +12631,8 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
12631
12631
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
|
|
12632
12632
|
}, z.core.$strip>;
|
|
12633
12633
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
12634
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12635
12634
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12635
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12636
12636
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12637
12637
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12638
12638
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
@@ -13247,28 +13247,28 @@ declare const DatasetItemUpdateSchema: z.ZodObject<{
|
|
|
13247
13247
|
in: {};
|
|
13248
13248
|
}>;
|
|
13249
13249
|
declare const DatasetItemApiSelectSchema: z.ZodObject<{
|
|
13250
|
-
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13251
13250
|
id: z.ZodString;
|
|
13252
13251
|
createdAt: z.ZodString;
|
|
13253
13252
|
updatedAt: z.ZodString;
|
|
13253
|
+
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13254
13254
|
datasetId: z.ZodString;
|
|
13255
13255
|
expectedOutput: z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>;
|
|
13256
13256
|
}, z.core.$strip>;
|
|
13257
13257
|
declare const DatasetItemApiInsertSchema: z.ZodObject<{
|
|
13258
|
-
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13259
13258
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13260
13259
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13260
|
+
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13261
13261
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13262
13262
|
}, z.core.$strip>;
|
|
13263
13263
|
declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
13264
|
-
input: z.ZodOptional<z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>>;
|
|
13265
13264
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13266
13265
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13266
|
+
input: z.ZodOptional<z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>>;
|
|
13267
13267
|
expectedOutput: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>>>;
|
|
13268
13268
|
}, z.core.$strip>;
|
|
13269
13269
|
declare const DatasetRunItemSchema: z.ZodObject<{
|
|
13270
|
-
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13271
13270
|
id: z.ZodOptional<z.ZodString>;
|
|
13271
|
+
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13272
13272
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13273
13273
|
agentId: z.ZodString;
|
|
13274
13274
|
}, z.core.$strip>;
|
|
@@ -13624,23 +13624,23 @@ declare const DatasetRunConfigUpdateSchema: z.ZodObject<{
|
|
|
13624
13624
|
in: {};
|
|
13625
13625
|
}>;
|
|
13626
13626
|
declare const DatasetRunConfigApiSelectSchema: z.ZodObject<{
|
|
13627
|
-
description: z.ZodNullable<z.ZodString>;
|
|
13628
13627
|
id: z.ZodString;
|
|
13629
13628
|
name: z.ZodString;
|
|
13629
|
+
description: z.ZodNullable<z.ZodString>;
|
|
13630
13630
|
createdAt: z.ZodString;
|
|
13631
13631
|
updatedAt: z.ZodString;
|
|
13632
13632
|
datasetId: z.ZodString;
|
|
13633
13633
|
}, z.core.$strip>;
|
|
13634
13634
|
declare const DatasetRunConfigApiInsertSchema: z.ZodObject<{
|
|
13635
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13636
13635
|
name: z.ZodString;
|
|
13636
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13637
13637
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13638
13638
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13639
13639
|
datasetId: z.ZodString;
|
|
13640
13640
|
}, z.core.$strip>;
|
|
13641
13641
|
declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
13642
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13643
13642
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13643
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13644
13644
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13645
13645
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13646
13646
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -14900,9 +14900,9 @@ declare const DataComponentSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
14900
14900
|
}>;
|
|
14901
14901
|
}, undefined>, undefined>;
|
|
14902
14902
|
declare const DataComponentInsertSchema: z.ZodObject<{
|
|
14903
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14904
14903
|
id: z.ZodString;
|
|
14905
14904
|
name: z.ZodString;
|
|
14905
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14906
14906
|
projectId: z.ZodString;
|
|
14907
14907
|
tenantId: z.ZodString;
|
|
14908
14908
|
props: z.ZodType<{
|
|
@@ -14952,9 +14952,9 @@ declare const DataComponentInsertSchema: z.ZodObject<{
|
|
|
14952
14952
|
in: {};
|
|
14953
14953
|
}>;
|
|
14954
14954
|
declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
14955
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
14956
14955
|
id: z.ZodOptional<z.ZodString>;
|
|
14957
14956
|
name: z.ZodOptional<z.ZodString>;
|
|
14957
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
14958
14958
|
projectId: z.ZodOptional<z.ZodString>;
|
|
14959
14959
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
14960
14960
|
props: z.ZodOptional<z.ZodType<{
|
|
@@ -15004,9 +15004,9 @@ declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
|
15004
15004
|
in: {};
|
|
15005
15005
|
}>;
|
|
15006
15006
|
declare const DataComponentApiSelectSchema: z.ZodObject<{
|
|
15007
|
-
description: z.ZodNullable<z.ZodString>;
|
|
15008
15007
|
id: z.ZodString;
|
|
15009
15008
|
name: z.ZodString;
|
|
15009
|
+
description: z.ZodNullable<z.ZodString>;
|
|
15010
15010
|
createdAt: z.ZodString;
|
|
15011
15011
|
updatedAt: z.ZodString;
|
|
15012
15012
|
props: z.ZodType<{
|
|
@@ -16146,9 +16146,9 @@ declare const ArtifactComponentUpdateSchema: z.ZodObject<{
|
|
|
16146
16146
|
in: {};
|
|
16147
16147
|
}>;
|
|
16148
16148
|
declare const ArtifactComponentApiSelectSchema: z.ZodObject<{
|
|
16149
|
-
description: z.ZodNullable<z.ZodString>;
|
|
16150
16149
|
id: z.ZodString;
|
|
16151
16150
|
name: z.ZodString;
|
|
16151
|
+
description: z.ZodNullable<z.ZodString>;
|
|
16152
16152
|
createdAt: z.ZodString;
|
|
16153
16153
|
updatedAt: z.ZodString;
|
|
16154
16154
|
props: z.ZodNullable<z.ZodType<{
|
|
@@ -16223,9 +16223,9 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
16223
16223
|
in: {};
|
|
16224
16224
|
}>;
|
|
16225
16225
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
16226
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16227
16226
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16228
16227
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16228
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16229
16229
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16230
16230
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16231
16231
|
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -16595,9 +16595,9 @@ declare const ExternalAgentSelectSchema: z.ZodObject<{
|
|
|
16595
16595
|
in: {};
|
|
16596
16596
|
}>;
|
|
16597
16597
|
declare const ExternalAgentInsertSchema: z.ZodObject<{
|
|
16598
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16599
16598
|
id: z.ZodString;
|
|
16600
16599
|
name: z.ZodString;
|
|
16600
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16601
16601
|
projectId: z.ZodString;
|
|
16602
16602
|
tenantId: z.ZodString;
|
|
16603
16603
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -16607,9 +16607,9 @@ declare const ExternalAgentInsertSchema: z.ZodObject<{
|
|
|
16607
16607
|
in: {};
|
|
16608
16608
|
}>;
|
|
16609
16609
|
declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
16610
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16611
16610
|
id: z.ZodOptional<z.ZodString>;
|
|
16612
16611
|
name: z.ZodOptional<z.ZodString>;
|
|
16612
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16613
16613
|
projectId: z.ZodOptional<z.ZodString>;
|
|
16614
16614
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
16615
16615
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -16619,32 +16619,32 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
|
16619
16619
|
in: {};
|
|
16620
16620
|
}>;
|
|
16621
16621
|
declare const ExternalAgentApiSelectSchema: z.ZodObject<{
|
|
16622
|
-
description: z.ZodNullable<z.ZodString>;
|
|
16623
16622
|
id: z.ZodString;
|
|
16624
16623
|
name: z.ZodString;
|
|
16624
|
+
description: z.ZodNullable<z.ZodString>;
|
|
16625
16625
|
createdAt: z.ZodString;
|
|
16626
16626
|
updatedAt: z.ZodString;
|
|
16627
16627
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16628
16628
|
baseUrl: z.ZodString;
|
|
16629
16629
|
}, z.core.$strip>;
|
|
16630
16630
|
declare const ExternalAgentApiInsertSchema: z.ZodObject<{
|
|
16631
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16632
16631
|
id: z.ZodString;
|
|
16633
16632
|
name: z.ZodString;
|
|
16633
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16634
16634
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16635
16635
|
baseUrl: z.ZodURL;
|
|
16636
16636
|
}, z.core.$strip>;
|
|
16637
16637
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
16638
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16639
16638
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16640
16639
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16640
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16641
16641
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16642
16642
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodURL>>;
|
|
16643
16643
|
}, z.core.$strip>;
|
|
16644
16644
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
16645
|
-
description: z.ZodNullable<z.ZodString>;
|
|
16646
16645
|
id: z.ZodString;
|
|
16647
16646
|
name: z.ZodString;
|
|
16647
|
+
description: z.ZodNullable<z.ZodString>;
|
|
16648
16648
|
createdAt: z.ZodString;
|
|
16649
16649
|
updatedAt: z.ZodString;
|
|
16650
16650
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -16737,9 +16737,9 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16737
16737
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
16738
16738
|
type: z.ZodLiteral<"internal">;
|
|
16739
16739
|
}, z.core.$strip>, z.ZodObject<{
|
|
16740
|
-
description: z.ZodNullable<z.ZodString>;
|
|
16741
16740
|
id: z.ZodString;
|
|
16742
16741
|
name: z.ZodString;
|
|
16742
|
+
description: z.ZodNullable<z.ZodString>;
|
|
16743
16743
|
createdAt: z.ZodString;
|
|
16744
16744
|
updatedAt: z.ZodString;
|
|
16745
16745
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -18058,8 +18058,8 @@ declare const AppInsertSchema: z.ZodObject<{
|
|
|
18058
18058
|
in: {};
|
|
18059
18059
|
}>;
|
|
18060
18060
|
declare const AppUpdateSchema: z.ZodObject<{
|
|
18061
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18062
18061
|
name: z.ZodOptional<z.ZodString>;
|
|
18062
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18063
18063
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18064
18064
|
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18065
18065
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -18675,14 +18675,14 @@ declare const AppApiSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
18675
18675
|
}, {}, {}>;
|
|
18676
18676
|
}, undefined>, undefined>;
|
|
18677
18677
|
declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
18678
|
-
type: z.ZodString;
|
|
18679
|
-
description: z.ZodNullable<z.ZodString>;
|
|
18680
18678
|
id: z.ZodString;
|
|
18681
18679
|
name: z.ZodString;
|
|
18680
|
+
description: z.ZodNullable<z.ZodString>;
|
|
18682
18681
|
createdAt: z.ZodString;
|
|
18683
18682
|
updatedAt: z.ZodString;
|
|
18684
18683
|
projectId: z.ZodNullable<z.ZodString>;
|
|
18685
18684
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
18685
|
+
type: z.ZodString;
|
|
18686
18686
|
prompt: z.ZodNullable<z.ZodString>;
|
|
18687
18687
|
enabled: z.ZodBoolean;
|
|
18688
18688
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -18718,16 +18718,16 @@ declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
|
18718
18718
|
in: {};
|
|
18719
18719
|
}>;
|
|
18720
18720
|
declare const AppApiInsertSchema: z.ZodObject<{
|
|
18721
|
-
type: z.ZodEnum<{
|
|
18722
|
-
web_client: "web_client";
|
|
18723
|
-
api: "api";
|
|
18724
|
-
}>;
|
|
18725
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18726
18721
|
name: z.ZodString;
|
|
18722
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18727
18723
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18728
18724
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18729
18725
|
projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18730
18726
|
tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18727
|
+
type: z.ZodEnum<{
|
|
18728
|
+
web_client: "web_client";
|
|
18729
|
+
api: "api";
|
|
18730
|
+
}>;
|
|
18731
18731
|
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18732
18732
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
18733
18733
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -18762,8 +18762,8 @@ declare const AppApiInsertSchema: z.ZodObject<{
|
|
|
18762
18762
|
in: {};
|
|
18763
18763
|
}>;
|
|
18764
18764
|
declare const AppApiUpdateSchema: z.ZodObject<{
|
|
18765
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18766
18765
|
name: z.ZodOptional<z.ZodString>;
|
|
18766
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18767
18767
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18768
18768
|
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18769
18769
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -18804,14 +18804,14 @@ declare const AppApiUpdateSchema: z.ZodObject<{
|
|
|
18804
18804
|
declare const AppApiCreationResponseSchema: z.ZodObject<{
|
|
18805
18805
|
data: z.ZodObject<{
|
|
18806
18806
|
app: z.ZodObject<{
|
|
18807
|
-
type: z.ZodString;
|
|
18808
|
-
description: z.ZodNullable<z.ZodString>;
|
|
18809
18807
|
id: z.ZodString;
|
|
18810
18808
|
name: z.ZodString;
|
|
18809
|
+
description: z.ZodNullable<z.ZodString>;
|
|
18811
18810
|
createdAt: z.ZodString;
|
|
18812
18811
|
updatedAt: z.ZodString;
|
|
18813
18812
|
projectId: z.ZodNullable<z.ZodString>;
|
|
18814
18813
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
18814
|
+
type: z.ZodString;
|
|
18815
18815
|
prompt: z.ZodNullable<z.ZodString>;
|
|
18816
18816
|
enabled: z.ZodBoolean;
|
|
18817
18817
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -19300,31 +19300,31 @@ declare const CredentialReferenceSelectSchema: drizzle_zod3.BuildSchema<"select"
|
|
|
19300
19300
|
}>;
|
|
19301
19301
|
}, undefined>, undefined>;
|
|
19302
19302
|
declare const CredentialReferenceInsertSchema: z.ZodObject<{
|
|
19303
|
-
type: z.ZodString;
|
|
19304
19303
|
id: z.ZodString;
|
|
19305
19304
|
name: z.ZodString;
|
|
19306
19305
|
projectId: z.ZodString;
|
|
19307
19306
|
tenantId: z.ZodString;
|
|
19307
|
+
type: z.ZodString;
|
|
19308
19308
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19309
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19310
19309
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19311
19310
|
credentialStoreId: z.ZodString;
|
|
19312
19311
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19312
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19313
19313
|
}, {
|
|
19314
19314
|
out: {};
|
|
19315
19315
|
in: {};
|
|
19316
19316
|
}>;
|
|
19317
19317
|
declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
19318
|
-
type: z.ZodOptional<z.ZodString>;
|
|
19319
19318
|
id: z.ZodOptional<z.ZodString>;
|
|
19320
19319
|
name: z.ZodOptional<z.ZodString>;
|
|
19321
19320
|
projectId: z.ZodOptional<z.ZodString>;
|
|
19322
19321
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19322
|
+
type: z.ZodOptional<z.ZodString>;
|
|
19323
19323
|
userId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19324
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19325
19324
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19326
19325
|
credentialStoreId: z.ZodOptional<z.ZodString>;
|
|
19327
19326
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
19327
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19328
19328
|
}, {
|
|
19329
19329
|
out: {};
|
|
19330
19330
|
in: {};
|
|
@@ -19335,10 +19335,10 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
19335
19335
|
createdAt: z.ZodString;
|
|
19336
19336
|
updatedAt: z.ZodString;
|
|
19337
19337
|
userId: z.ZodNullable<z.ZodString>;
|
|
19338
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
19339
19338
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
19340
19339
|
credentialStoreId: z.ZodString;
|
|
19341
19340
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
19341
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
19342
19342
|
type: z.ZodEnum<{
|
|
19343
19343
|
readonly memory: "memory";
|
|
19344
19344
|
readonly keychain: "keychain";
|
|
@@ -19925,10 +19925,10 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
19925
19925
|
id: z.ZodString;
|
|
19926
19926
|
name: z.ZodString;
|
|
19927
19927
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19928
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19929
19928
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19930
19929
|
credentialStoreId: z.ZodString;
|
|
19931
19930
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19931
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19932
19932
|
type: z.ZodEnum<{
|
|
19933
19933
|
readonly memory: "memory";
|
|
19934
19934
|
readonly keychain: "keychain";
|
|
@@ -19940,10 +19940,10 @@ declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
|
19940
19940
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19941
19941
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19942
19942
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19943
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19944
19943
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19945
19944
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19946
19945
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
19946
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19947
19947
|
type: z.ZodOptional<z.ZodEnum<{
|
|
19948
19948
|
readonly memory: "memory";
|
|
19949
19949
|
readonly keychain: "keychain";
|
|
@@ -20008,9 +20008,9 @@ declare const OAuthCallbackQuerySchema: z.ZodObject<{
|
|
|
20008
20008
|
error_description: z.ZodOptional<z.ZodString>;
|
|
20009
20009
|
}, z.core.$strip>;
|
|
20010
20010
|
declare const McpToolSchema: z.ZodObject<{
|
|
20011
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20012
20011
|
id: z.ZodString;
|
|
20013
20012
|
name: z.ZodString;
|
|
20013
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20014
20014
|
projectId: z.ZodString;
|
|
20015
20015
|
tenantId: z.ZodString;
|
|
20016
20016
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -20106,10 +20106,10 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
20106
20106
|
id: z.ZodString;
|
|
20107
20107
|
name: z.ZodString;
|
|
20108
20108
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20109
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20110
20109
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20111
20110
|
credentialStoreId: z.ZodString;
|
|
20112
20111
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20112
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20113
20113
|
type: z.ZodEnum<{
|
|
20114
20114
|
readonly memory: "memory";
|
|
20115
20115
|
readonly keychain: "keychain";
|
|
@@ -20129,9 +20129,9 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
20129
20129
|
in: {};
|
|
20130
20130
|
}>;
|
|
20131
20131
|
declare const ToolUpdateSchema: z.ZodObject<{
|
|
20132
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20133
20132
|
id: z.ZodOptional<z.ZodString>;
|
|
20134
20133
|
name: z.ZodOptional<z.ZodString>;
|
|
20134
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20135
20135
|
projectId: z.ZodOptional<z.ZodString>;
|
|
20136
20136
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
20137
20137
|
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
@@ -20172,9 +20172,9 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
20172
20172
|
in: {};
|
|
20173
20173
|
}>;
|
|
20174
20174
|
declare const ToolApiSelectSchema: z.ZodObject<{
|
|
20175
|
-
description: z.ZodNullable<z.ZodString>;
|
|
20176
20175
|
id: z.ZodString;
|
|
20177
20176
|
name: z.ZodString;
|
|
20177
|
+
description: z.ZodNullable<z.ZodString>;
|
|
20178
20178
|
createdAt: z.ZodString;
|
|
20179
20179
|
updatedAt: z.ZodString;
|
|
20180
20180
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
@@ -20199,9 +20199,9 @@ declare const ToolApiSelectSchema: z.ZodObject<{
|
|
|
20199
20199
|
isWorkApp: z.ZodBoolean;
|
|
20200
20200
|
}, z.core.$strip>;
|
|
20201
20201
|
declare const ToolApiInsertSchema: z.ZodObject<{
|
|
20202
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20203
20202
|
id: z.ZodString;
|
|
20204
20203
|
name: z.ZodString;
|
|
20204
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20205
20205
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
20206
20206
|
config: z.ZodObject<{
|
|
20207
20207
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -20237,9 +20237,9 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
20237
20237
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
20238
20238
|
}, z.core.$strip>;
|
|
20239
20239
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
20240
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20241
20240
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20242
20241
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20242
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20243
20243
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
20244
20244
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
20245
20245
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -20608,9 +20608,9 @@ declare const FunctionToolSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
20608
20608
|
}>;
|
|
20609
20609
|
}, undefined>, undefined>;
|
|
20610
20610
|
declare const FunctionToolInsertSchema: z.ZodObject<{
|
|
20611
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20612
20611
|
id: z.ZodString;
|
|
20613
20612
|
name: z.ZodString;
|
|
20613
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20614
20614
|
projectId: z.ZodString;
|
|
20615
20615
|
tenantId: z.ZodString;
|
|
20616
20616
|
agentId: z.ZodString;
|
|
@@ -20620,9 +20620,9 @@ declare const FunctionToolInsertSchema: z.ZodObject<{
|
|
|
20620
20620
|
in: {};
|
|
20621
20621
|
}>;
|
|
20622
20622
|
declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
20623
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20624
20623
|
id: z.ZodOptional<z.ZodString>;
|
|
20625
20624
|
name: z.ZodOptional<z.ZodString>;
|
|
20625
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20626
20626
|
projectId: z.ZodOptional<z.ZodString>;
|
|
20627
20627
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
20628
20628
|
agentId: z.ZodOptional<z.ZodString>;
|
|
@@ -20632,9 +20632,9 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
20632
20632
|
in: {};
|
|
20633
20633
|
}>;
|
|
20634
20634
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
20635
|
-
description: z.ZodNullable<z.ZodString>;
|
|
20636
20635
|
id: z.ZodString;
|
|
20637
20636
|
name: z.ZodString;
|
|
20637
|
+
description: z.ZodNullable<z.ZodString>;
|
|
20638
20638
|
createdAt: z.ZodString;
|
|
20639
20639
|
updatedAt: z.ZodString;
|
|
20640
20640
|
agentId: z.ZodString;
|
|
@@ -20642,15 +20642,15 @@ declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
|
20642
20642
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
20643
20643
|
}, z.core.$strip>;
|
|
20644
20644
|
declare const FunctionToolApiInsertSchema: z.ZodObject<{
|
|
20645
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20646
20645
|
id: z.ZodString;
|
|
20647
20646
|
name: z.ZodString;
|
|
20647
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20648
20648
|
functionId: z.ZodString;
|
|
20649
20649
|
}, z.core.$strip>;
|
|
20650
20650
|
declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
20651
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20652
20651
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20653
20652
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20653
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20654
20654
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20655
20655
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20656
20656
|
}, z.core.$strip>;
|
|
@@ -21415,10 +21415,10 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
21415
21415
|
id: z.ZodString;
|
|
21416
21416
|
name: z.ZodString;
|
|
21417
21417
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21418
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21419
21418
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21420
21419
|
credentialStoreId: z.ZodString;
|
|
21421
21420
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
21421
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21422
21422
|
type: z.ZodEnum<{
|
|
21423
21423
|
readonly memory: "memory";
|
|
21424
21424
|
readonly keychain: "keychain";
|
|
@@ -21941,8 +21941,8 @@ declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
|
21941
21941
|
createdAt: z.ZodString;
|
|
21942
21942
|
updatedAt: z.ZodString;
|
|
21943
21943
|
subAgentId: z.ZodString;
|
|
21944
|
-
toolId: z.ZodString;
|
|
21945
21944
|
headers: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
21945
|
+
toolId: z.ZodString;
|
|
21946
21946
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
21947
21947
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
21948
21948
|
}, z.core.$strip>;
|
|
@@ -21951,8 +21951,8 @@ declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
|
21951
21951
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
21952
21952
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
21953
21953
|
subAgentId: z.ZodString;
|
|
21954
|
-
toolId: z.ZodString;
|
|
21955
21954
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
21955
|
+
toolId: z.ZodString;
|
|
21956
21956
|
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
21957
21957
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
21958
21958
|
}, z.core.$strip>>>>;
|
|
@@ -21963,8 +21963,8 @@ declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
|
21963
21963
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21964
21964
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21965
21965
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21966
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21967
21966
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
21967
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21968
21968
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
21969
21969
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
21970
21970
|
}, z.core.$strip>>>>>>;
|
|
@@ -24085,7 +24085,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
24085
24085
|
}, {}, {
|
|
24086
24086
|
length: 256;
|
|
24087
24087
|
}>;
|
|
24088
|
-
}, "
|
|
24088
|
+
}, "id" | "name" | "description" | "metadata" | "createdAt" | "updatedAt" | "projectId" | "tenantId" | "type" | "taskId" | "contextId" | "visibility" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
24089
24089
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
24090
24090
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24091
24091
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -24110,13 +24110,13 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
24110
24110
|
in: {};
|
|
24111
24111
|
}>;
|
|
24112
24112
|
declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
24113
|
-
type: z.ZodString;
|
|
24114
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24115
24113
|
id: z.ZodString;
|
|
24116
24114
|
name: z.ZodNullable<z.ZodString>;
|
|
24115
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24117
24116
|
metadata: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
24118
24117
|
createdAt: z.ZodString;
|
|
24119
24118
|
updatedAt: z.ZodString;
|
|
24119
|
+
type: z.ZodString;
|
|
24120
24120
|
taskId: z.ZodString;
|
|
24121
24121
|
contextId: z.ZodString;
|
|
24122
24122
|
visibility: z.ZodNullable<z.ZodString>;
|
|
@@ -24128,13 +24128,13 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
|
24128
24128
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
24129
24129
|
}, z.core.$strip>;
|
|
24130
24130
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
24131
|
-
type: z.ZodOptional<z.ZodString>;
|
|
24132
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24133
24131
|
id: z.ZodString;
|
|
24134
24132
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24133
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24135
24134
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
24136
24135
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24137
24136
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24137
|
+
type: z.ZodOptional<z.ZodString>;
|
|
24138
24138
|
taskId: z.ZodString;
|
|
24139
24139
|
contextId: z.ZodString;
|
|
24140
24140
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24146,13 +24146,13 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
|
24146
24146
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24147
24147
|
}, z.core.$strip>;
|
|
24148
24148
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
24149
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24150
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24151
24149
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24152
24150
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24151
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24153
24152
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>>>;
|
|
24154
24153
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24155
24154
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24155
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24156
24156
|
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24157
24157
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24158
24158
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -24226,9 +24226,9 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
24226
24226
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24227
24227
|
}, z.core.$strip>;
|
|
24228
24228
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
24229
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24230
24229
|
id: z.ZodString;
|
|
24231
24230
|
name: z.ZodString;
|
|
24231
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24232
24232
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24233
24233
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24234
24234
|
models: z.ZodOptional<z.ZodObject<{
|
|
@@ -24285,16 +24285,16 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
24285
24285
|
}, z.core.$strip>>;
|
|
24286
24286
|
}, z.core.$strip>;
|
|
24287
24287
|
declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
24288
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24289
24288
|
id: z.ZodString;
|
|
24290
24289
|
name: z.ZodString;
|
|
24290
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24291
24291
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24292
24292
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24293
24293
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
24294
24294
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24295
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24296
24295
|
id: z.ZodString;
|
|
24297
24296
|
name: z.ZodString;
|
|
24297
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24298
24298
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24299
24299
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24300
24300
|
models: z.ZodOptional<z.ZodObject<{
|
|
@@ -24351,9 +24351,9 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24351
24351
|
}, z.core.$strip>>;
|
|
24352
24352
|
}, z.core.$strip>>;
|
|
24353
24353
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24354
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24355
24354
|
id: z.ZodString;
|
|
24356
24355
|
name: z.ZodString;
|
|
24356
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24357
24357
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24358
24358
|
config: z.ZodObject<{
|
|
24359
24359
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -24389,9 +24389,9 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24389
24389
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
24390
24390
|
}, z.core.$strip>>>;
|
|
24391
24391
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24392
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24393
24392
|
id: z.ZodString;
|
|
24394
24393
|
name: z.ZodString;
|
|
24394
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24395
24395
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24396
24396
|
baseUrl: z.ZodURL;
|
|
24397
24397
|
}, z.core.$strip>>>;
|
|
@@ -24401,9 +24401,9 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24401
24401
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24402
24402
|
}, z.core.$strip>>>;
|
|
24403
24403
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24404
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24405
24404
|
id: z.ZodString;
|
|
24406
24405
|
name: z.ZodString;
|
|
24406
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24407
24407
|
functionId: z.ZodString;
|
|
24408
24408
|
}, z.core.$strip>>>;
|
|
24409
24409
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -24413,9 +24413,9 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24413
24413
|
executeCode: z.ZodString;
|
|
24414
24414
|
}, z.core.$strip>>>;
|
|
24415
24415
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24416
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24417
24416
|
id: z.ZodOptional<z.ZodString>;
|
|
24418
24417
|
name: z.ZodString;
|
|
24418
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24419
24419
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
24420
24420
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24421
24421
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
@@ -24474,16 +24474,16 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24474
24474
|
prompt: z.ZodOptional<z.ZodString>;
|
|
24475
24475
|
}, z.core.$strip>;
|
|
24476
24476
|
declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
24477
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24478
24477
|
id: z.ZodString;
|
|
24479
24478
|
name: z.ZodString;
|
|
24479
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24480
24480
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24481
24481
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24482
24482
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
24483
24483
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24484
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24485
24484
|
id: z.ZodString;
|
|
24486
24485
|
name: z.ZodString;
|
|
24486
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24487
24487
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24488
24488
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24489
24489
|
models: z.ZodOptional<z.ZodObject<{
|
|
@@ -24540,9 +24540,9 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24540
24540
|
}, z.core.$strip>>;
|
|
24541
24541
|
}, z.core.$strip>>;
|
|
24542
24542
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24543
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24544
24543
|
id: z.ZodString;
|
|
24545
24544
|
name: z.ZodString;
|
|
24545
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24546
24546
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24547
24547
|
config: z.ZodObject<{
|
|
24548
24548
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -24578,9 +24578,9 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24578
24578
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
24579
24579
|
}, z.core.$strip>>>;
|
|
24580
24580
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24581
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24582
24581
|
id: z.ZodString;
|
|
24583
24582
|
name: z.ZodString;
|
|
24583
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24584
24584
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24585
24585
|
baseUrl: z.ZodURL;
|
|
24586
24586
|
}, z.core.$strip>>>;
|
|
@@ -24590,9 +24590,9 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24590
24590
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24591
24591
|
}, z.core.$strip>>>;
|
|
24592
24592
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24593
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24594
24593
|
id: z.ZodString;
|
|
24595
24594
|
name: z.ZodString;
|
|
24595
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24596
24596
|
functionId: z.ZodString;
|
|
24597
24597
|
}, z.core.$strip>>>;
|
|
24598
24598
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -24602,9 +24602,9 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24602
24602
|
executeCode: z.ZodString;
|
|
24603
24603
|
}, z.core.$strip>>>;
|
|
24604
24604
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24605
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24606
24605
|
id: z.ZodOptional<z.ZodString>;
|
|
24607
24606
|
name: z.ZodString;
|
|
24607
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24608
24608
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
24609
24609
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24610
24610
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
@@ -24722,9 +24722,9 @@ declare const ProjectSelectSchema: z.ZodObject<{
|
|
|
24722
24722
|
in: {};
|
|
24723
24723
|
}>;
|
|
24724
24724
|
declare const ProjectInsertSchema: z.ZodObject<{
|
|
24725
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24726
24725
|
id: z.ZodString;
|
|
24727
24726
|
name: z.ZodString;
|
|
24727
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24728
24728
|
tenantId: z.ZodString;
|
|
24729
24729
|
models: z.ZodObject<{
|
|
24730
24730
|
base: z.ZodObject<{
|
|
@@ -24755,8 +24755,8 @@ declare const ProjectInsertSchema: z.ZodObject<{
|
|
|
24755
24755
|
in: {};
|
|
24756
24756
|
}>;
|
|
24757
24757
|
declare const ProjectUpdateSchema: z.ZodObject<{
|
|
24758
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24759
24758
|
name: z.ZodOptional<z.ZodString>;
|
|
24759
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24760
24760
|
models: z.ZodOptional<z.ZodObject<{
|
|
24761
24761
|
base: z.ZodObject<{
|
|
24762
24762
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24786,9 +24786,9 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
24786
24786
|
in: {};
|
|
24787
24787
|
}>;
|
|
24788
24788
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
24789
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24790
24789
|
id: z.ZodString;
|
|
24791
24790
|
name: z.ZodString;
|
|
24791
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24792
24792
|
createdAt: z.ZodString;
|
|
24793
24793
|
updatedAt: z.ZodString;
|
|
24794
24794
|
models: z.ZodNullable<z.ZodObject<{
|
|
@@ -24820,9 +24820,9 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
24820
24820
|
in: {};
|
|
24821
24821
|
}>;
|
|
24822
24822
|
declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
24823
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24824
24823
|
id: z.ZodString;
|
|
24825
24824
|
name: z.ZodString;
|
|
24825
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24826
24826
|
models: z.ZodObject<{
|
|
24827
24827
|
base: z.ZodObject<{
|
|
24828
24828
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24852,8 +24852,8 @@ declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
|
24852
24852
|
in: {};
|
|
24853
24853
|
}>;
|
|
24854
24854
|
declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
24855
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24856
24855
|
name: z.ZodOptional<z.ZodString>;
|
|
24856
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24857
24857
|
models: z.ZodOptional<z.ZodObject<{
|
|
24858
24858
|
base: z.ZodObject<{
|
|
24859
24859
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24883,9 +24883,9 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
|
24883
24883
|
in: {};
|
|
24884
24884
|
}>;
|
|
24885
24885
|
declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
24886
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24887
24886
|
id: z.ZodString;
|
|
24888
24887
|
name: z.ZodString;
|
|
24888
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24889
24889
|
models: z.ZodObject<{
|
|
24890
24890
|
base: z.ZodObject<{
|
|
24891
24891
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24911,16 +24911,16 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24911
24911
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
24912
24912
|
}, z.core.$strip>>;
|
|
24913
24913
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24914
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24915
24914
|
id: z.ZodString;
|
|
24916
24915
|
name: z.ZodString;
|
|
24916
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24917
24917
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24918
24918
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24919
24919
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
24920
24920
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24921
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24922
24921
|
id: z.ZodString;
|
|
24923
24922
|
name: z.ZodString;
|
|
24923
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24924
24924
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24925
24925
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24926
24926
|
models: z.ZodOptional<z.ZodObject<{
|
|
@@ -24977,9 +24977,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24977
24977
|
}, z.core.$strip>>;
|
|
24978
24978
|
}, z.core.$strip>>;
|
|
24979
24979
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24980
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24981
24980
|
id: z.ZodString;
|
|
24982
24981
|
name: z.ZodString;
|
|
24982
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24983
24983
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24984
24984
|
config: z.ZodObject<{
|
|
24985
24985
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -25015,9 +25015,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25015
25015
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
25016
25016
|
}, z.core.$strip>>>;
|
|
25017
25017
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25018
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25019
25018
|
id: z.ZodString;
|
|
25020
25019
|
name: z.ZodString;
|
|
25020
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25021
25021
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25022
25022
|
baseUrl: z.ZodURL;
|
|
25023
25023
|
}, z.core.$strip>>>;
|
|
@@ -25027,9 +25027,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25027
25027
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25028
25028
|
}, z.core.$strip>>>;
|
|
25029
25029
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25030
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25031
25030
|
id: z.ZodString;
|
|
25032
25031
|
name: z.ZodString;
|
|
25032
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25033
25033
|
functionId: z.ZodString;
|
|
25034
25034
|
}, z.core.$strip>>>;
|
|
25035
25035
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -25039,9 +25039,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25039
25039
|
executeCode: z.ZodString;
|
|
25040
25040
|
}, z.core.$strip>>>;
|
|
25041
25041
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25042
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25043
25042
|
id: z.ZodOptional<z.ZodString>;
|
|
25044
25043
|
name: z.ZodString;
|
|
25044
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25045
25045
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
25046
25046
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25047
25047
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
@@ -25100,9 +25100,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25100
25100
|
prompt: z.ZodOptional<z.ZodString>;
|
|
25101
25101
|
}, z.core.$strip>>;
|
|
25102
25102
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25103
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25104
25103
|
id: z.ZodString;
|
|
25105
25104
|
name: z.ZodString;
|
|
25105
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25106
25106
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25107
25107
|
config: z.ZodObject<{
|
|
25108
25108
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -25138,9 +25138,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25138
25138
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
25139
25139
|
}, z.core.$strip>>;
|
|
25140
25140
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25141
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25142
25141
|
id: z.ZodString;
|
|
25143
25142
|
name: z.ZodString;
|
|
25143
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25144
25144
|
functionId: z.ZodString;
|
|
25145
25145
|
}, z.core.$strip>>>;
|
|
25146
25146
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -25174,8 +25174,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25174
25174
|
filePath: z.ZodString;
|
|
25175
25175
|
content: z.ZodString;
|
|
25176
25176
|
}, z.core.$strip>>;
|
|
25177
|
-
description: z.ZodString;
|
|
25178
25177
|
name: z.ZodString;
|
|
25178
|
+
description: z.ZodString;
|
|
25179
25179
|
content: z.ZodString;
|
|
25180
25180
|
}, z.core.$strict>>>>;
|
|
25181
25181
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -25232,9 +25232,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25232
25232
|
in: {};
|
|
25233
25233
|
}>>>;
|
|
25234
25234
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25235
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25236
25235
|
id: z.ZodString;
|
|
25237
25236
|
name: z.ZodString;
|
|
25237
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25238
25238
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25239
25239
|
baseUrl: z.ZodURL;
|
|
25240
25240
|
}, z.core.$strip>>>;
|
|
@@ -25257,10 +25257,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25257
25257
|
id: z.ZodString;
|
|
25258
25258
|
name: z.ZodString;
|
|
25259
25259
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25260
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25261
25260
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25262
25261
|
credentialStoreId: z.ZodString;
|
|
25263
25262
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
25263
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25264
25264
|
type: z.ZodEnum<{
|
|
25265
25265
|
readonly memory: "memory";
|
|
25266
25266
|
readonly keychain: "keychain";
|
|
@@ -25275,9 +25275,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25275
25275
|
in: {};
|
|
25276
25276
|
}>;
|
|
25277
25277
|
declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
25278
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25279
25278
|
id: z.ZodString;
|
|
25280
25279
|
name: z.ZodString;
|
|
25280
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25281
25281
|
createdAt: z.ZodString;
|
|
25282
25282
|
updatedAt: z.ZodString;
|
|
25283
25283
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -25392,9 +25392,9 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
25392
25392
|
}, z.core.$strip>]>>>;
|
|
25393
25393
|
}, z.core.$strip>;
|
|
25394
25394
|
declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
25395
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25396
25395
|
id: z.ZodString;
|
|
25397
25396
|
name: z.ZodString;
|
|
25397
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25398
25398
|
createdAt: z.ZodString;
|
|
25399
25399
|
updatedAt: z.ZodString;
|
|
25400
25400
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -25515,18 +25515,18 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25515
25515
|
}, z.core.$strip>]>>>;
|
|
25516
25516
|
}, z.core.$strip>;
|
|
25517
25517
|
declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
25518
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25519
25518
|
id: z.ZodString;
|
|
25520
25519
|
name: z.ZodString;
|
|
25520
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25521
25521
|
createdAt: z.ZodString;
|
|
25522
25522
|
updatedAt: z.ZodString;
|
|
25523
25523
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25524
25524
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25525
25525
|
executionMode: z.ZodString;
|
|
25526
25526
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25527
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25528
25527
|
id: z.ZodString;
|
|
25529
25528
|
name: z.ZodString;
|
|
25529
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25530
25530
|
createdAt: z.ZodString;
|
|
25531
25531
|
updatedAt: z.ZodString;
|
|
25532
25532
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -25641,9 +25641,9 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25641
25641
|
}, z.core.$strip>]>>>;
|
|
25642
25642
|
}, z.core.$strip>>;
|
|
25643
25643
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25644
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25645
25644
|
id: z.ZodString;
|
|
25646
25645
|
name: z.ZodString;
|
|
25646
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25647
25647
|
createdAt: z.ZodString;
|
|
25648
25648
|
updatedAt: z.ZodString;
|
|
25649
25649
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
@@ -25668,9 +25668,9 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25668
25668
|
isWorkApp: z.ZodBoolean;
|
|
25669
25669
|
}, z.core.$strip>>>;
|
|
25670
25670
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25671
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25672
25671
|
id: z.ZodString;
|
|
25673
25672
|
name: z.ZodString;
|
|
25673
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25674
25674
|
createdAt: z.ZodString;
|
|
25675
25675
|
updatedAt: z.ZodString;
|
|
25676
25676
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -25682,9 +25682,9 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25682
25682
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25683
25683
|
}, z.core.$strip>>>;
|
|
25684
25684
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25685
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25686
25685
|
id: z.ZodString;
|
|
25687
25686
|
name: z.ZodString;
|
|
25687
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25688
25688
|
createdAt: z.ZodString;
|
|
25689
25689
|
updatedAt: z.ZodString;
|
|
25690
25690
|
agentId: z.ZodString;
|
|
@@ -25747,18 +25747,18 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25747
25747
|
prompt: z.ZodNullable<z.ZodString>;
|
|
25748
25748
|
}, z.core.$strip>;
|
|
25749
25749
|
declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
25750
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25751
25750
|
id: z.ZodString;
|
|
25752
25751
|
name: z.ZodString;
|
|
25752
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25753
25753
|
createdAt: z.ZodString;
|
|
25754
25754
|
updatedAt: z.ZodString;
|
|
25755
25755
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25756
25756
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25757
25757
|
executionMode: z.ZodString;
|
|
25758
25758
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25759
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25760
25759
|
id: z.ZodString;
|
|
25761
25760
|
name: z.ZodString;
|
|
25761
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25762
25762
|
createdAt: z.ZodString;
|
|
25763
25763
|
updatedAt: z.ZodString;
|
|
25764
25764
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
@@ -25783,9 +25783,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25783
25783
|
isWorkApp: z.ZodBoolean;
|
|
25784
25784
|
}, z.core.$strip>>>;
|
|
25785
25785
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25786
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25787
25786
|
id: z.ZodString;
|
|
25788
25787
|
name: z.ZodString;
|
|
25788
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25789
25789
|
createdAt: z.ZodString;
|
|
25790
25790
|
updatedAt: z.ZodString;
|
|
25791
25791
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -25797,9 +25797,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25797
25797
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25798
25798
|
}, z.core.$strip>>>;
|
|
25799
25799
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25800
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25801
25800
|
id: z.ZodString;
|
|
25802
25801
|
name: z.ZodString;
|
|
25802
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25803
25803
|
createdAt: z.ZodString;
|
|
25804
25804
|
updatedAt: z.ZodString;
|
|
25805
25805
|
agentId: z.ZodString;
|
|
@@ -25861,9 +25861,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25861
25861
|
}, z.core.$strip>>;
|
|
25862
25862
|
prompt: z.ZodNullable<z.ZodString>;
|
|
25863
25863
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25864
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25865
25864
|
id: z.ZodString;
|
|
25866
25865
|
name: z.ZodString;
|
|
25866
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25867
25867
|
createdAt: z.ZodString;
|
|
25868
25868
|
updatedAt: z.ZodString;
|
|
25869
25869
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -25985,9 +25985,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25985
25985
|
}, z.core.$strip>>;
|
|
25986
25986
|
}, z.core.$strip>;
|
|
25987
25987
|
declare const FullProjectSelectSchema: z.ZodObject<{
|
|
25988
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25989
25988
|
id: z.ZodString;
|
|
25990
25989
|
name: z.ZodString;
|
|
25990
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25991
25991
|
createdAt: z.ZodString;
|
|
25992
25992
|
updatedAt: z.ZodString;
|
|
25993
25993
|
models: z.ZodNullable<z.ZodObject<{
|
|
@@ -26015,18 +26015,18 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26015
26015
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
26016
26016
|
}, z.core.$strip>>;
|
|
26017
26017
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26018
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26019
26018
|
id: z.ZodString;
|
|
26020
26019
|
name: z.ZodString;
|
|
26020
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26021
26021
|
createdAt: z.ZodString;
|
|
26022
26022
|
updatedAt: z.ZodString;
|
|
26023
26023
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26024
26024
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26025
26025
|
executionMode: z.ZodString;
|
|
26026
26026
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26027
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26028
26027
|
id: z.ZodString;
|
|
26029
26028
|
name: z.ZodString;
|
|
26029
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26030
26030
|
createdAt: z.ZodString;
|
|
26031
26031
|
updatedAt: z.ZodString;
|
|
26032
26032
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -26141,9 +26141,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26141
26141
|
}, z.core.$strip>]>>>;
|
|
26142
26142
|
}, z.core.$strip>>;
|
|
26143
26143
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26144
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26145
26144
|
id: z.ZodString;
|
|
26146
26145
|
name: z.ZodString;
|
|
26146
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26147
26147
|
createdAt: z.ZodString;
|
|
26148
26148
|
updatedAt: z.ZodString;
|
|
26149
26149
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
@@ -26168,9 +26168,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26168
26168
|
isWorkApp: z.ZodBoolean;
|
|
26169
26169
|
}, z.core.$strip>>>;
|
|
26170
26170
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26171
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26172
26171
|
id: z.ZodString;
|
|
26173
26172
|
name: z.ZodString;
|
|
26173
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26174
26174
|
createdAt: z.ZodString;
|
|
26175
26175
|
updatedAt: z.ZodString;
|
|
26176
26176
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -26182,9 +26182,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26182
26182
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26183
26183
|
}, z.core.$strip>>>;
|
|
26184
26184
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26185
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26186
26185
|
id: z.ZodString;
|
|
26187
26186
|
name: z.ZodString;
|
|
26187
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26188
26188
|
createdAt: z.ZodString;
|
|
26189
26189
|
updatedAt: z.ZodString;
|
|
26190
26190
|
agentId: z.ZodString;
|
|
@@ -26247,9 +26247,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26247
26247
|
prompt: z.ZodNullable<z.ZodString>;
|
|
26248
26248
|
}, z.core.$strip>>;
|
|
26249
26249
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26250
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26251
26250
|
id: z.ZodString;
|
|
26252
26251
|
name: z.ZodString;
|
|
26252
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26253
26253
|
createdAt: z.ZodString;
|
|
26254
26254
|
updatedAt: z.ZodString;
|
|
26255
26255
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
@@ -26274,9 +26274,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26274
26274
|
isWorkApp: z.ZodBoolean;
|
|
26275
26275
|
}, z.core.$strip>>;
|
|
26276
26276
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26277
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26278
26277
|
id: z.ZodString;
|
|
26279
26278
|
name: z.ZodString;
|
|
26279
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26280
26280
|
createdAt: z.ZodString;
|
|
26281
26281
|
updatedAt: z.ZodString;
|
|
26282
26282
|
agentId: z.ZodString;
|
|
@@ -26292,9 +26292,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26292
26292
|
executeCode: z.ZodString;
|
|
26293
26293
|
}, z.core.$strip>>>;
|
|
26294
26294
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26295
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26296
26295
|
id: z.ZodString;
|
|
26297
26296
|
name: z.ZodString;
|
|
26297
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26298
26298
|
createdAt: z.ZodString;
|
|
26299
26299
|
updatedAt: z.ZodString;
|
|
26300
26300
|
props: z.ZodType<{
|
|
@@ -26341,9 +26341,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26341
26341
|
}>>>;
|
|
26342
26342
|
}, z.core.$strip>>>;
|
|
26343
26343
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26344
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26345
26344
|
id: z.ZodString;
|
|
26346
26345
|
name: z.ZodString;
|
|
26346
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26347
26347
|
createdAt: z.ZodString;
|
|
26348
26348
|
updatedAt: z.ZodString;
|
|
26349
26349
|
props: z.ZodNullable<z.ZodType<{
|
|
@@ -26390,9 +26390,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26390
26390
|
}>>>;
|
|
26391
26391
|
}, z.core.$strip>>>;
|
|
26392
26392
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26393
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26394
26393
|
id: z.ZodString;
|
|
26395
26394
|
name: z.ZodString;
|
|
26395
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26396
26396
|
createdAt: z.ZodString;
|
|
26397
26397
|
updatedAt: z.ZodString;
|
|
26398
26398
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -26419,10 +26419,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26419
26419
|
createdAt: z.ZodString;
|
|
26420
26420
|
updatedAt: z.ZodString;
|
|
26421
26421
|
userId: z.ZodNullable<z.ZodString>;
|
|
26422
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
26423
26422
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
26424
26423
|
credentialStoreId: z.ZodString;
|
|
26425
26424
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26425
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
26426
26426
|
type: z.ZodEnum<{
|
|
26427
26427
|
readonly memory: "memory";
|
|
26428
26428
|
readonly keychain: "keychain";
|
|
@@ -27010,9 +27010,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27010
27010
|
in: {};
|
|
27011
27011
|
}>;
|
|
27012
27012
|
declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
27013
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27014
27013
|
id: z.ZodString;
|
|
27015
27014
|
name: z.ZodString;
|
|
27015
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27016
27016
|
createdAt: z.ZodString;
|
|
27017
27017
|
updatedAt: z.ZodString;
|
|
27018
27018
|
models: z.ZodNullable<z.ZodObject<{
|
|
@@ -27040,9 +27040,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27040
27040
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
27041
27041
|
}, z.core.$strip>>;
|
|
27042
27042
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27043
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27044
27043
|
id: z.ZodString;
|
|
27045
27044
|
name: z.ZodString;
|
|
27045
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27046
27046
|
createdAt: z.ZodString;
|
|
27047
27047
|
updatedAt: z.ZodString;
|
|
27048
27048
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
@@ -27067,9 +27067,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27067
27067
|
isWorkApp: z.ZodBoolean;
|
|
27068
27068
|
}, z.core.$strip>>;
|
|
27069
27069
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27070
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27071
27070
|
id: z.ZodString;
|
|
27072
27071
|
name: z.ZodString;
|
|
27072
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27073
27073
|
createdAt: z.ZodString;
|
|
27074
27074
|
updatedAt: z.ZodString;
|
|
27075
27075
|
agentId: z.ZodString;
|
|
@@ -27085,9 +27085,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27085
27085
|
executeCode: z.ZodString;
|
|
27086
27086
|
}, z.core.$strip>>>;
|
|
27087
27087
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27088
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27089
27088
|
id: z.ZodString;
|
|
27090
27089
|
name: z.ZodString;
|
|
27090
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27091
27091
|
createdAt: z.ZodString;
|
|
27092
27092
|
updatedAt: z.ZodString;
|
|
27093
27093
|
props: z.ZodType<{
|
|
@@ -27134,9 +27134,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27134
27134
|
}>>>;
|
|
27135
27135
|
}, z.core.$strip>>>;
|
|
27136
27136
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27137
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27138
27137
|
id: z.ZodString;
|
|
27139
27138
|
name: z.ZodString;
|
|
27139
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27140
27140
|
createdAt: z.ZodString;
|
|
27141
27141
|
updatedAt: z.ZodString;
|
|
27142
27142
|
props: z.ZodNullable<z.ZodType<{
|
|
@@ -27183,9 +27183,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27183
27183
|
}>>>;
|
|
27184
27184
|
}, z.core.$strip>>>;
|
|
27185
27185
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27186
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27187
27186
|
id: z.ZodString;
|
|
27188
27187
|
name: z.ZodString;
|
|
27188
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27189
27189
|
createdAt: z.ZodString;
|
|
27190
27190
|
updatedAt: z.ZodString;
|
|
27191
27191
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -27212,10 +27212,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27212
27212
|
createdAt: z.ZodString;
|
|
27213
27213
|
updatedAt: z.ZodString;
|
|
27214
27214
|
userId: z.ZodNullable<z.ZodString>;
|
|
27215
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
27216
27215
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
27217
27216
|
credentialStoreId: z.ZodString;
|
|
27218
27217
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27218
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
27219
27219
|
type: z.ZodEnum<{
|
|
27220
27220
|
readonly memory: "memory";
|
|
27221
27221
|
readonly keychain: "keychain";
|
|
@@ -27799,18 +27799,18 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27799
27799
|
}>>>;
|
|
27800
27800
|
}, z.core.$strip>>>;
|
|
27801
27801
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27802
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27803
27802
|
id: z.ZodString;
|
|
27804
27803
|
name: z.ZodString;
|
|
27804
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27805
27805
|
createdAt: z.ZodString;
|
|
27806
27806
|
updatedAt: z.ZodString;
|
|
27807
27807
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
27808
27808
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
27809
27809
|
executionMode: z.ZodString;
|
|
27810
27810
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27811
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27812
27811
|
id: z.ZodString;
|
|
27813
27812
|
name: z.ZodString;
|
|
27813
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27814
27814
|
createdAt: z.ZodString;
|
|
27815
27815
|
updatedAt: z.ZodString;
|
|
27816
27816
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
@@ -27835,9 +27835,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27835
27835
|
isWorkApp: z.ZodBoolean;
|
|
27836
27836
|
}, z.core.$strip>>>;
|
|
27837
27837
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27838
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27839
27838
|
id: z.ZodString;
|
|
27840
27839
|
name: z.ZodString;
|
|
27840
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27841
27841
|
createdAt: z.ZodString;
|
|
27842
27842
|
updatedAt: z.ZodString;
|
|
27843
27843
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -27849,9 +27849,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27849
27849
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27850
27850
|
}, z.core.$strip>>>;
|
|
27851
27851
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27852
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27853
27852
|
id: z.ZodString;
|
|
27854
27853
|
name: z.ZodString;
|
|
27854
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27855
27855
|
createdAt: z.ZodString;
|
|
27856
27856
|
updatedAt: z.ZodString;
|
|
27857
27857
|
agentId: z.ZodString;
|
|
@@ -27913,9 +27913,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27913
27913
|
}, z.core.$strip>>;
|
|
27914
27914
|
prompt: z.ZodNullable<z.ZodString>;
|
|
27915
27915
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27916
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27917
27916
|
id: z.ZodString;
|
|
27918
27917
|
name: z.ZodString;
|
|
27918
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27919
27919
|
createdAt: z.ZodString;
|
|
27920
27920
|
updatedAt: z.ZodString;
|
|
27921
27921
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -28042,9 +28042,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28042
28042
|
}>;
|
|
28043
28043
|
declare const ProjectResponse: z.ZodObject<{
|
|
28044
28044
|
data: z.ZodObject<{
|
|
28045
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28046
28045
|
id: z.ZodString;
|
|
28047
28046
|
name: z.ZodString;
|
|
28047
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28048
28048
|
createdAt: z.ZodString;
|
|
28049
28049
|
updatedAt: z.ZodString;
|
|
28050
28050
|
models: z.ZodNullable<z.ZodObject<{
|
|
@@ -28078,9 +28078,9 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
28078
28078
|
}, z.core.$strip>;
|
|
28079
28079
|
declare const SubAgentResponse: z.ZodObject<{
|
|
28080
28080
|
data: z.ZodObject<{
|
|
28081
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28082
28081
|
id: z.ZodString;
|
|
28083
28082
|
name: z.ZodString;
|
|
28083
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28084
28084
|
createdAt: z.ZodString;
|
|
28085
28085
|
updatedAt: z.ZodString;
|
|
28086
28086
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -28175,9 +28175,9 @@ declare const SubAgentResponse: z.ZodObject<{
|
|
|
28175
28175
|
}, z.core.$strip>;
|
|
28176
28176
|
declare const AgentResponse: z.ZodObject<{
|
|
28177
28177
|
data: z.ZodObject<{
|
|
28178
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28179
28178
|
id: z.ZodString;
|
|
28180
28179
|
name: z.ZodString;
|
|
28180
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28181
28181
|
createdAt: z.ZodString;
|
|
28182
28182
|
updatedAt: z.ZodString;
|
|
28183
28183
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -28331,9 +28331,9 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
28331
28331
|
}, z.core.$strip>;
|
|
28332
28332
|
declare const ExternalAgentResponse: z.ZodObject<{
|
|
28333
28333
|
data: z.ZodObject<{
|
|
28334
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28335
28334
|
id: z.ZodString;
|
|
28336
28335
|
name: z.ZodString;
|
|
28336
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28337
28337
|
createdAt: z.ZodString;
|
|
28338
28338
|
updatedAt: z.ZodString;
|
|
28339
28339
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -28372,10 +28372,10 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
28372
28372
|
createdAt: z.ZodString;
|
|
28373
28373
|
updatedAt: z.ZodString;
|
|
28374
28374
|
userId: z.ZodNullable<z.ZodString>;
|
|
28375
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
28376
28375
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
28377
28376
|
credentialStoreId: z.ZodString;
|
|
28378
28377
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28378
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
28379
28379
|
type: z.ZodEnum<{
|
|
28380
28380
|
readonly memory: "memory";
|
|
28381
28381
|
readonly keychain: "keychain";
|
|
@@ -28971,9 +28971,9 @@ declare const FunctionResponse: z.ZodObject<{
|
|
|
28971
28971
|
}, z.core.$strip>;
|
|
28972
28972
|
declare const FunctionToolResponse: z.ZodObject<{
|
|
28973
28973
|
data: z.ZodObject<{
|
|
28974
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28975
28974
|
id: z.ZodString;
|
|
28976
28975
|
name: z.ZodString;
|
|
28976
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28977
28977
|
createdAt: z.ZodString;
|
|
28978
28978
|
updatedAt: z.ZodString;
|
|
28979
28979
|
agentId: z.ZodString;
|
|
@@ -28993,9 +28993,9 @@ declare const SubAgentFunctionToolRelationResponse: z.ZodObject<{
|
|
|
28993
28993
|
}, z.core.$strip>;
|
|
28994
28994
|
declare const DataComponentResponse: z.ZodObject<{
|
|
28995
28995
|
data: z.ZodObject<{
|
|
28996
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28997
28996
|
id: z.ZodString;
|
|
28998
28997
|
name: z.ZodString;
|
|
28998
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28999
28999
|
createdAt: z.ZodString;
|
|
29000
29000
|
updatedAt: z.ZodString;
|
|
29001
29001
|
props: z.ZodType<{
|
|
@@ -29044,9 +29044,9 @@ declare const DataComponentResponse: z.ZodObject<{
|
|
|
29044
29044
|
}, z.core.$strip>;
|
|
29045
29045
|
declare const ArtifactComponentResponse: z.ZodObject<{
|
|
29046
29046
|
data: z.ZodObject<{
|
|
29047
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29048
29047
|
id: z.ZodString;
|
|
29049
29048
|
name: z.ZodString;
|
|
29049
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29050
29050
|
createdAt: z.ZodString;
|
|
29051
29051
|
updatedAt: z.ZodString;
|
|
29052
29052
|
props: z.ZodNullable<z.ZodType<{
|
|
@@ -29109,17 +29109,17 @@ declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
|
29109
29109
|
createdAt: z.ZodString;
|
|
29110
29110
|
updatedAt: z.ZodString;
|
|
29111
29111
|
subAgentId: z.ZodString;
|
|
29112
|
-
toolId: z.ZodString;
|
|
29113
29112
|
headers: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
29113
|
+
toolId: z.ZodString;
|
|
29114
29114
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
29115
29115
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
29116
29116
|
}, z.core.$strip>;
|
|
29117
29117
|
}, z.core.$strip>;
|
|
29118
29118
|
declare const TriggerResponse: z.ZodObject<{
|
|
29119
29119
|
data: z.ZodObject<{
|
|
29120
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29121
29120
|
id: z.ZodString;
|
|
29122
29121
|
name: z.ZodString;
|
|
29122
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29123
29123
|
createdAt: z.ZodString;
|
|
29124
29124
|
updatedAt: z.ZodString;
|
|
29125
29125
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
@@ -29180,7 +29180,6 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
29180
29180
|
}, z.core.$strip>;
|
|
29181
29181
|
declare const TriggerInvocationResponse: z.ZodObject<{
|
|
29182
29182
|
data: z.ZodObject<{
|
|
29183
|
-
status: z.ZodString;
|
|
29184
29183
|
id: z.ZodString;
|
|
29185
29184
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
29186
29185
|
type: z.ZodEnum<{
|
|
@@ -29192,6 +29191,7 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
29192
29191
|
hash: z.ZodString;
|
|
29193
29192
|
}, z.core.$strip>>>;
|
|
29194
29193
|
createdAt: z.ZodString;
|
|
29194
|
+
status: z.ZodString;
|
|
29195
29195
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29196
29196
|
triggerId: z.ZodString;
|
|
29197
29197
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
@@ -29203,10 +29203,10 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
29203
29203
|
}, z.core.$strip>;
|
|
29204
29204
|
declare const FeedbackResponse: z.ZodObject<{
|
|
29205
29205
|
data: z.ZodObject<{
|
|
29206
|
-
type: z.ZodString;
|
|
29207
29206
|
id: z.ZodString;
|
|
29208
29207
|
createdAt: z.ZodString;
|
|
29209
29208
|
updatedAt: z.ZodString;
|
|
29209
|
+
type: z.ZodString;
|
|
29210
29210
|
details: z.ZodNullable<z.ZodString>;
|
|
29211
29211
|
conversationId: z.ZodString;
|
|
29212
29212
|
messageId: z.ZodNullable<z.ZodString>;
|
|
@@ -29214,9 +29214,9 @@ declare const FeedbackResponse: z.ZodObject<{
|
|
|
29214
29214
|
}, z.core.$strip>;
|
|
29215
29215
|
declare const ProjectListResponse: z.ZodObject<{
|
|
29216
29216
|
data: z.ZodArray<z.ZodObject<{
|
|
29217
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29218
29217
|
id: z.ZodString;
|
|
29219
29218
|
name: z.ZodString;
|
|
29219
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29220
29220
|
createdAt: z.ZodString;
|
|
29221
29221
|
updatedAt: z.ZodString;
|
|
29222
29222
|
models: z.ZodNullable<z.ZodObject<{
|
|
@@ -29256,9 +29256,9 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
29256
29256
|
}, z.core.$strip>;
|
|
29257
29257
|
declare const SubAgentListResponse: z.ZodObject<{
|
|
29258
29258
|
data: z.ZodArray<z.ZodObject<{
|
|
29259
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29260
29259
|
id: z.ZodString;
|
|
29261
29260
|
name: z.ZodString;
|
|
29261
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29262
29262
|
createdAt: z.ZodString;
|
|
29263
29263
|
updatedAt: z.ZodString;
|
|
29264
29264
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -29359,9 +29359,9 @@ declare const SubAgentListResponse: z.ZodObject<{
|
|
|
29359
29359
|
}, z.core.$strip>;
|
|
29360
29360
|
declare const AgentListResponse: z.ZodObject<{
|
|
29361
29361
|
data: z.ZodArray<z.ZodObject<{
|
|
29362
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29363
29362
|
id: z.ZodString;
|
|
29364
29363
|
name: z.ZodString;
|
|
29364
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29365
29365
|
createdAt: z.ZodString;
|
|
29366
29366
|
updatedAt: z.ZodString;
|
|
29367
29367
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -29521,9 +29521,9 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
29521
29521
|
}, z.core.$strip>;
|
|
29522
29522
|
declare const ExternalAgentListResponse: z.ZodObject<{
|
|
29523
29523
|
data: z.ZodArray<z.ZodObject<{
|
|
29524
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29525
29524
|
id: z.ZodString;
|
|
29526
29525
|
name: z.ZodString;
|
|
29526
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29527
29527
|
createdAt: z.ZodString;
|
|
29528
29528
|
updatedAt: z.ZodString;
|
|
29529
29529
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -29575,14 +29575,14 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
29575
29575
|
}, z.core.$strip>;
|
|
29576
29576
|
declare const AppResponse: z.ZodObject<{
|
|
29577
29577
|
data: z.ZodObject<{
|
|
29578
|
-
type: z.ZodString;
|
|
29579
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29580
29578
|
id: z.ZodString;
|
|
29581
29579
|
name: z.ZodString;
|
|
29580
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29582
29581
|
createdAt: z.ZodString;
|
|
29583
29582
|
updatedAt: z.ZodString;
|
|
29584
29583
|
projectId: z.ZodNullable<z.ZodString>;
|
|
29585
29584
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
29585
|
+
type: z.ZodString;
|
|
29586
29586
|
prompt: z.ZodNullable<z.ZodString>;
|
|
29587
29587
|
enabled: z.ZodBoolean;
|
|
29588
29588
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -29620,14 +29620,14 @@ declare const AppResponse: z.ZodObject<{
|
|
|
29620
29620
|
}, z.core.$strip>;
|
|
29621
29621
|
declare const AppListResponse: z.ZodObject<{
|
|
29622
29622
|
data: z.ZodArray<z.ZodObject<{
|
|
29623
|
-
type: z.ZodString;
|
|
29624
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29625
29623
|
id: z.ZodString;
|
|
29626
29624
|
name: z.ZodString;
|
|
29625
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29627
29626
|
createdAt: z.ZodString;
|
|
29628
29627
|
updatedAt: z.ZodString;
|
|
29629
29628
|
projectId: z.ZodNullable<z.ZodString>;
|
|
29630
29629
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
29630
|
+
type: z.ZodString;
|
|
29631
29631
|
prompt: z.ZodNullable<z.ZodString>;
|
|
29632
29632
|
enabled: z.ZodBoolean;
|
|
29633
29633
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -29676,10 +29676,10 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
29676
29676
|
createdAt: z.ZodString;
|
|
29677
29677
|
updatedAt: z.ZodString;
|
|
29678
29678
|
userId: z.ZodNullable<z.ZodString>;
|
|
29679
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
29680
29679
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
29681
29680
|
credentialStoreId: z.ZodString;
|
|
29682
29681
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29682
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
29683
29683
|
type: z.ZodEnum<{
|
|
29684
29684
|
readonly memory: "memory";
|
|
29685
29685
|
readonly keychain: "keychain";
|
|
@@ -30287,9 +30287,9 @@ declare const FunctionListResponse: z.ZodObject<{
|
|
|
30287
30287
|
}, z.core.$strip>;
|
|
30288
30288
|
declare const FunctionToolListResponse: z.ZodObject<{
|
|
30289
30289
|
data: z.ZodArray<z.ZodObject<{
|
|
30290
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30291
30290
|
id: z.ZodString;
|
|
30292
30291
|
name: z.ZodString;
|
|
30292
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30293
30293
|
createdAt: z.ZodString;
|
|
30294
30294
|
updatedAt: z.ZodString;
|
|
30295
30295
|
agentId: z.ZodString;
|
|
@@ -30321,10 +30321,10 @@ declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
|
|
|
30321
30321
|
}, z.core.$strip>;
|
|
30322
30322
|
declare const FeedbackListResponse: z.ZodObject<{
|
|
30323
30323
|
data: z.ZodArray<z.ZodObject<{
|
|
30324
|
-
type: z.ZodString;
|
|
30325
30324
|
id: z.ZodString;
|
|
30326
30325
|
createdAt: z.ZodString;
|
|
30327
30326
|
updatedAt: z.ZodString;
|
|
30327
|
+
type: z.ZodString;
|
|
30328
30328
|
details: z.ZodNullable<z.ZodString>;
|
|
30329
30329
|
conversationId: z.ZodString;
|
|
30330
30330
|
messageId: z.ZodNullable<z.ZodString>;
|
|
@@ -30339,9 +30339,9 @@ declare const FeedbackListResponse: z.ZodObject<{
|
|
|
30339
30339
|
}, z.core.$strip>;
|
|
30340
30340
|
declare const DataComponentListResponse: z.ZodObject<{
|
|
30341
30341
|
data: z.ZodArray<z.ZodObject<{
|
|
30342
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30343
30342
|
id: z.ZodString;
|
|
30344
30343
|
name: z.ZodString;
|
|
30344
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30345
30345
|
createdAt: z.ZodString;
|
|
30346
30346
|
updatedAt: z.ZodString;
|
|
30347
30347
|
props: z.ZodType<{
|
|
@@ -30396,9 +30396,9 @@ declare const DataComponentListResponse: z.ZodObject<{
|
|
|
30396
30396
|
}, z.core.$strip>;
|
|
30397
30397
|
declare const ArtifactComponentListResponse: z.ZodObject<{
|
|
30398
30398
|
data: z.ZodArray<z.ZodObject<{
|
|
30399
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30400
30399
|
id: z.ZodString;
|
|
30401
30400
|
name: z.ZodString;
|
|
30401
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30402
30402
|
createdAt: z.ZodString;
|
|
30403
30403
|
updatedAt: z.ZodString;
|
|
30404
30404
|
props: z.ZodNullable<z.ZodType<{
|
|
@@ -30473,8 +30473,8 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
|
30473
30473
|
createdAt: z.ZodString;
|
|
30474
30474
|
updatedAt: z.ZodString;
|
|
30475
30475
|
subAgentId: z.ZodString;
|
|
30476
|
-
toolId: z.ZodString;
|
|
30477
30476
|
headers: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
30477
|
+
toolId: z.ZodString;
|
|
30478
30478
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
30479
30479
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
30480
30480
|
}, z.core.$strip>>;
|
|
@@ -30487,9 +30487,9 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
|
30487
30487
|
}, z.core.$strip>;
|
|
30488
30488
|
declare const TriggerListResponse: z.ZodObject<{
|
|
30489
30489
|
data: z.ZodArray<z.ZodObject<{
|
|
30490
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30491
30490
|
id: z.ZodString;
|
|
30492
30491
|
name: z.ZodString;
|
|
30492
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30493
30493
|
createdAt: z.ZodString;
|
|
30494
30494
|
updatedAt: z.ZodString;
|
|
30495
30495
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
@@ -30556,7 +30556,6 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
30556
30556
|
}, z.core.$strip>;
|
|
30557
30557
|
declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
30558
30558
|
data: z.ZodArray<z.ZodObject<{
|
|
30559
|
-
status: z.ZodString;
|
|
30560
30559
|
id: z.ZodString;
|
|
30561
30560
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30562
30561
|
type: z.ZodEnum<{
|
|
@@ -30568,6 +30567,7 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
30568
30567
|
hash: z.ZodString;
|
|
30569
30568
|
}, z.core.$strip>>>;
|
|
30570
30569
|
createdAt: z.ZodString;
|
|
30570
|
+
status: z.ZodString;
|
|
30571
30571
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30572
30572
|
triggerId: z.ZodString;
|
|
30573
30573
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
@@ -30585,9 +30585,9 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
30585
30585
|
}, z.core.$strip>;
|
|
30586
30586
|
declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
30587
30587
|
data: z.ZodObject<{
|
|
30588
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30589
30588
|
id: z.ZodString;
|
|
30590
30589
|
name: z.ZodString;
|
|
30590
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30591
30591
|
createdAt: z.ZodString;
|
|
30592
30592
|
updatedAt: z.ZodString;
|
|
30593
30593
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
@@ -30651,9 +30651,9 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
30651
30651
|
}, z.core.$strip>;
|
|
30652
30652
|
declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
30653
30653
|
data: z.ZodObject<{
|
|
30654
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30655
30654
|
id: z.ZodString;
|
|
30656
30655
|
name: z.ZodString;
|
|
30656
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30657
30657
|
createdAt: z.ZodString;
|
|
30658
30658
|
updatedAt: z.ZodString;
|
|
30659
30659
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
@@ -30718,9 +30718,9 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
30718
30718
|
}, z.core.$strip>;
|
|
30719
30719
|
declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
30720
30720
|
data: z.ZodArray<z.ZodObject<{
|
|
30721
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30722
30721
|
id: z.ZodString;
|
|
30723
30722
|
name: z.ZodString;
|
|
30723
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30724
30724
|
createdAt: z.ZodString;
|
|
30725
30725
|
updatedAt: z.ZodString;
|
|
30726
30726
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
@@ -30796,9 +30796,9 @@ declare const LastRunSummarySchema: z.ZodObject<{
|
|
|
30796
30796
|
pending: z.ZodNumber;
|
|
30797
30797
|
}, z.core.$strip>;
|
|
30798
30798
|
declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
30799
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30800
30799
|
id: z.ZodString;
|
|
30801
30800
|
name: z.ZodString;
|
|
30801
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30802
30802
|
ref: z.ZodString;
|
|
30803
30803
|
createdAt: z.ZodString;
|
|
30804
30804
|
updatedAt: z.ZodString;
|
|
@@ -30834,9 +30834,9 @@ declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
|
30834
30834
|
type ScheduledTriggerWithRunInfo = z.infer<typeof ScheduledTriggerWithRunInfoSchema>;
|
|
30835
30835
|
declare const ScheduledTriggerResponse: z.ZodObject<{
|
|
30836
30836
|
data: z.ZodObject<{
|
|
30837
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30838
30837
|
id: z.ZodString;
|
|
30839
30838
|
name: z.ZodString;
|
|
30839
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30840
30840
|
ref: z.ZodString;
|
|
30841
30841
|
createdAt: z.ZodString;
|
|
30842
30842
|
updatedAt: z.ZodString;
|
|
@@ -30857,9 +30857,9 @@ declare const ScheduledTriggerResponse: z.ZodObject<{
|
|
|
30857
30857
|
}, z.core.$strip>;
|
|
30858
30858
|
declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
30859
30859
|
data: z.ZodArray<z.ZodObject<{
|
|
30860
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30861
30860
|
id: z.ZodString;
|
|
30862
30861
|
name: z.ZodString;
|
|
30862
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30863
30863
|
ref: z.ZodString;
|
|
30864
30864
|
createdAt: z.ZodString;
|
|
30865
30865
|
updatedAt: z.ZodString;
|
|
@@ -30886,9 +30886,9 @@ declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
|
30886
30886
|
}, z.core.$strip>;
|
|
30887
30887
|
declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
30888
30888
|
data: z.ZodArray<z.ZodObject<{
|
|
30889
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30890
30889
|
id: z.ZodString;
|
|
30891
30890
|
name: z.ZodString;
|
|
30891
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30892
30892
|
ref: z.ZodString;
|
|
30893
30893
|
createdAt: z.ZodString;
|
|
30894
30894
|
updatedAt: z.ZodString;
|
|
@@ -30930,13 +30930,6 @@ declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
|
30930
30930
|
}, z.core.$strip>;
|
|
30931
30931
|
declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
30932
30932
|
data: z.ZodObject<{
|
|
30933
|
-
status: z.ZodEnum<{
|
|
30934
|
-
pending: "pending";
|
|
30935
|
-
failed: "failed";
|
|
30936
|
-
running: "running";
|
|
30937
|
-
completed: "completed";
|
|
30938
|
-
cancelled: "cancelled";
|
|
30939
|
-
}>;
|
|
30940
30933
|
id: z.ZodString;
|
|
30941
30934
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30942
30935
|
type: z.ZodEnum<{
|
|
@@ -30948,6 +30941,13 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
30948
30941
|
hash: z.ZodString;
|
|
30949
30942
|
}, z.core.$strip>>>;
|
|
30950
30943
|
createdAt: z.ZodString;
|
|
30944
|
+
status: z.ZodEnum<{
|
|
30945
|
+
pending: "pending";
|
|
30946
|
+
failed: "failed";
|
|
30947
|
+
running: "running";
|
|
30948
|
+
completed: "completed";
|
|
30949
|
+
cancelled: "cancelled";
|
|
30950
|
+
}>;
|
|
30951
30951
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
30952
30952
|
scheduledTriggerId: z.ZodString;
|
|
30953
30953
|
scheduledFor: z.ZodString;
|
|
@@ -30961,13 +30961,6 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
30961
30961
|
}, z.core.$strip>;
|
|
30962
30962
|
declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
30963
30963
|
data: z.ZodArray<z.ZodObject<{
|
|
30964
|
-
status: z.ZodEnum<{
|
|
30965
|
-
pending: "pending";
|
|
30966
|
-
failed: "failed";
|
|
30967
|
-
running: "running";
|
|
30968
|
-
completed: "completed";
|
|
30969
|
-
cancelled: "cancelled";
|
|
30970
|
-
}>;
|
|
30971
30964
|
id: z.ZodString;
|
|
30972
30965
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30973
30966
|
type: z.ZodEnum<{
|
|
@@ -30979,6 +30972,13 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
30979
30972
|
hash: z.ZodString;
|
|
30980
30973
|
}, z.core.$strip>>>;
|
|
30981
30974
|
createdAt: z.ZodString;
|
|
30975
|
+
status: z.ZodEnum<{
|
|
30976
|
+
pending: "pending";
|
|
30977
|
+
failed: "failed";
|
|
30978
|
+
running: "running";
|
|
30979
|
+
completed: "completed";
|
|
30980
|
+
cancelled: "cancelled";
|
|
30981
|
+
}>;
|
|
30982
30982
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
30983
30983
|
scheduledTriggerId: z.ZodString;
|
|
30984
30984
|
scheduledFor: z.ZodString;
|
|
@@ -31014,9 +31014,9 @@ declare const SubAgentArtifactComponentResponse: z.ZodObject<{
|
|
|
31014
31014
|
}, z.core.$strip>;
|
|
31015
31015
|
declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
31016
31016
|
data: z.ZodObject<{
|
|
31017
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31018
31017
|
id: z.ZodString;
|
|
31019
31018
|
name: z.ZodString;
|
|
31019
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31020
31020
|
models: z.ZodObject<{
|
|
31021
31021
|
base: z.ZodObject<{
|
|
31022
31022
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -31042,16 +31042,16 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31042
31042
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
31043
31043
|
}, z.core.$strip>>;
|
|
31044
31044
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31045
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31046
31045
|
id: z.ZodString;
|
|
31047
31046
|
name: z.ZodString;
|
|
31047
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31048
31048
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31049
31049
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31050
31050
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
31051
31051
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31052
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31053
31052
|
id: z.ZodString;
|
|
31054
31053
|
name: z.ZodString;
|
|
31054
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31055
31055
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31056
31056
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31057
31057
|
models: z.ZodOptional<z.ZodObject<{
|
|
@@ -31108,9 +31108,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31108
31108
|
}, z.core.$strip>>;
|
|
31109
31109
|
}, z.core.$strip>>;
|
|
31110
31110
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31111
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31112
31111
|
id: z.ZodString;
|
|
31113
31112
|
name: z.ZodString;
|
|
31113
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31114
31114
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
31115
31115
|
config: z.ZodObject<{
|
|
31116
31116
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -31146,9 +31146,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31146
31146
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
31147
31147
|
}, z.core.$strip>>>;
|
|
31148
31148
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31149
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31150
31149
|
id: z.ZodString;
|
|
31151
31150
|
name: z.ZodString;
|
|
31151
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31152
31152
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31153
31153
|
baseUrl: z.ZodURL;
|
|
31154
31154
|
}, z.core.$strip>>>;
|
|
@@ -31158,9 +31158,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31158
31158
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31159
31159
|
}, z.core.$strip>>>;
|
|
31160
31160
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31161
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31162
31161
|
id: z.ZodString;
|
|
31163
31162
|
name: z.ZodString;
|
|
31163
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31164
31164
|
functionId: z.ZodString;
|
|
31165
31165
|
}, z.core.$strip>>>;
|
|
31166
31166
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -31170,9 +31170,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31170
31170
|
executeCode: z.ZodString;
|
|
31171
31171
|
}, z.core.$strip>>>;
|
|
31172
31172
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31173
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31174
31173
|
id: z.ZodOptional<z.ZodString>;
|
|
31175
31174
|
name: z.ZodString;
|
|
31175
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31176
31176
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
31177
31177
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
31178
31178
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
@@ -31231,9 +31231,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31231
31231
|
prompt: z.ZodOptional<z.ZodString>;
|
|
31232
31232
|
}, z.core.$strip>>;
|
|
31233
31233
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31234
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31235
31234
|
id: z.ZodString;
|
|
31236
31235
|
name: z.ZodString;
|
|
31236
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31237
31237
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
31238
31238
|
config: z.ZodObject<{
|
|
31239
31239
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -31269,9 +31269,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31269
31269
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
31270
31270
|
}, z.core.$strip>>;
|
|
31271
31271
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31272
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31273
31272
|
id: z.ZodString;
|
|
31274
31273
|
name: z.ZodString;
|
|
31274
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31275
31275
|
functionId: z.ZodString;
|
|
31276
31276
|
}, z.core.$strip>>>;
|
|
31277
31277
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -31305,8 +31305,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31305
31305
|
filePath: z.ZodString;
|
|
31306
31306
|
content: z.ZodString;
|
|
31307
31307
|
}, z.core.$strip>>;
|
|
31308
|
-
description: z.ZodString;
|
|
31309
31308
|
name: z.ZodString;
|
|
31309
|
+
description: z.ZodString;
|
|
31310
31310
|
content: z.ZodString;
|
|
31311
31311
|
}, z.core.$strict>>>>;
|
|
31312
31312
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -31363,9 +31363,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31363
31363
|
in: {};
|
|
31364
31364
|
}>>>;
|
|
31365
31365
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31366
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31367
31366
|
id: z.ZodString;
|
|
31368
31367
|
name: z.ZodString;
|
|
31368
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31369
31369
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31370
31370
|
baseUrl: z.ZodURL;
|
|
31371
31371
|
}, z.core.$strip>>>;
|
|
@@ -31388,10 +31388,10 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31388
31388
|
id: z.ZodString;
|
|
31389
31389
|
name: z.ZodString;
|
|
31390
31390
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31391
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31392
31391
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31393
31392
|
credentialStoreId: z.ZodString;
|
|
31394
31393
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31394
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31395
31395
|
type: z.ZodEnum<{
|
|
31396
31396
|
readonly memory: "memory";
|
|
31397
31397
|
readonly keychain: "keychain";
|
|
@@ -31408,9 +31408,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31408
31408
|
}, z.core.$strip>;
|
|
31409
31409
|
declare const FullProjectSelectResponse: z.ZodObject<{
|
|
31410
31410
|
data: z.ZodObject<{
|
|
31411
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31412
31411
|
id: z.ZodString;
|
|
31413
31412
|
name: z.ZodString;
|
|
31413
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31414
31414
|
createdAt: z.ZodString;
|
|
31415
31415
|
updatedAt: z.ZodString;
|
|
31416
31416
|
models: z.ZodNullable<z.ZodObject<{
|
|
@@ -31438,18 +31438,18 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31438
31438
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
31439
31439
|
}, z.core.$strip>>;
|
|
31440
31440
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31441
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31442
31441
|
id: z.ZodString;
|
|
31443
31442
|
name: z.ZodString;
|
|
31443
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31444
31444
|
createdAt: z.ZodString;
|
|
31445
31445
|
updatedAt: z.ZodString;
|
|
31446
31446
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
31447
31447
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
31448
31448
|
executionMode: z.ZodString;
|
|
31449
31449
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31450
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31451
31450
|
id: z.ZodString;
|
|
31452
31451
|
name: z.ZodString;
|
|
31452
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31453
31453
|
createdAt: z.ZodString;
|
|
31454
31454
|
updatedAt: z.ZodString;
|
|
31455
31455
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -31564,9 +31564,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31564
31564
|
}, z.core.$strip>]>>>;
|
|
31565
31565
|
}, z.core.$strip>>;
|
|
31566
31566
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31567
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31568
31567
|
id: z.ZodString;
|
|
31569
31568
|
name: z.ZodString;
|
|
31569
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31570
31570
|
createdAt: z.ZodString;
|
|
31571
31571
|
updatedAt: z.ZodString;
|
|
31572
31572
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
@@ -31591,9 +31591,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31591
31591
|
isWorkApp: z.ZodBoolean;
|
|
31592
31592
|
}, z.core.$strip>>>;
|
|
31593
31593
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31594
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31595
31594
|
id: z.ZodString;
|
|
31596
31595
|
name: z.ZodString;
|
|
31596
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31597
31597
|
createdAt: z.ZodString;
|
|
31598
31598
|
updatedAt: z.ZodString;
|
|
31599
31599
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -31605,9 +31605,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31605
31605
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31606
31606
|
}, z.core.$strip>>>;
|
|
31607
31607
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31608
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31609
31608
|
id: z.ZodString;
|
|
31610
31609
|
name: z.ZodString;
|
|
31610
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31611
31611
|
createdAt: z.ZodString;
|
|
31612
31612
|
updatedAt: z.ZodString;
|
|
31613
31613
|
agentId: z.ZodString;
|
|
@@ -31670,9 +31670,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31670
31670
|
prompt: z.ZodNullable<z.ZodString>;
|
|
31671
31671
|
}, z.core.$strip>>;
|
|
31672
31672
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31673
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31674
31673
|
id: z.ZodString;
|
|
31675
31674
|
name: z.ZodString;
|
|
31675
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31676
31676
|
createdAt: z.ZodString;
|
|
31677
31677
|
updatedAt: z.ZodString;
|
|
31678
31678
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
@@ -31697,9 +31697,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31697
31697
|
isWorkApp: z.ZodBoolean;
|
|
31698
31698
|
}, z.core.$strip>>;
|
|
31699
31699
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31700
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31701
31700
|
id: z.ZodString;
|
|
31702
31701
|
name: z.ZodString;
|
|
31702
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31703
31703
|
createdAt: z.ZodString;
|
|
31704
31704
|
updatedAt: z.ZodString;
|
|
31705
31705
|
agentId: z.ZodString;
|
|
@@ -31715,9 +31715,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31715
31715
|
executeCode: z.ZodString;
|
|
31716
31716
|
}, z.core.$strip>>>;
|
|
31717
31717
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31718
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31719
31718
|
id: z.ZodString;
|
|
31720
31719
|
name: z.ZodString;
|
|
31720
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31721
31721
|
createdAt: z.ZodString;
|
|
31722
31722
|
updatedAt: z.ZodString;
|
|
31723
31723
|
props: z.ZodType<{
|
|
@@ -31764,9 +31764,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31764
31764
|
}>>>;
|
|
31765
31765
|
}, z.core.$strip>>>;
|
|
31766
31766
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31767
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31768
31767
|
id: z.ZodString;
|
|
31769
31768
|
name: z.ZodString;
|
|
31769
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31770
31770
|
createdAt: z.ZodString;
|
|
31771
31771
|
updatedAt: z.ZodString;
|
|
31772
31772
|
props: z.ZodNullable<z.ZodType<{
|
|
@@ -31813,9 +31813,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31813
31813
|
}>>>;
|
|
31814
31814
|
}, z.core.$strip>>>;
|
|
31815
31815
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31816
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31817
31816
|
id: z.ZodString;
|
|
31818
31817
|
name: z.ZodString;
|
|
31818
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31819
31819
|
createdAt: z.ZodString;
|
|
31820
31820
|
updatedAt: z.ZodString;
|
|
31821
31821
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -31842,10 +31842,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31842
31842
|
createdAt: z.ZodString;
|
|
31843
31843
|
updatedAt: z.ZodString;
|
|
31844
31844
|
userId: z.ZodNullable<z.ZodString>;
|
|
31845
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
31846
31845
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
31847
31846
|
credentialStoreId: z.ZodString;
|
|
31848
31847
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
31848
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
31849
31849
|
type: z.ZodEnum<{
|
|
31850
31850
|
readonly memory: "memory";
|
|
31851
31851
|
readonly keychain: "keychain";
|
|
@@ -32435,9 +32435,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32435
32435
|
}, z.core.$strip>;
|
|
32436
32436
|
declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
32437
32437
|
data: z.ZodObject<{
|
|
32438
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32439
32438
|
id: z.ZodString;
|
|
32440
32439
|
name: z.ZodString;
|
|
32440
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32441
32441
|
createdAt: z.ZodString;
|
|
32442
32442
|
updatedAt: z.ZodString;
|
|
32443
32443
|
models: z.ZodNullable<z.ZodObject<{
|
|
@@ -32465,9 +32465,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32465
32465
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
32466
32466
|
}, z.core.$strip>>;
|
|
32467
32467
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32468
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32469
32468
|
id: z.ZodString;
|
|
32470
32469
|
name: z.ZodString;
|
|
32470
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32471
32471
|
createdAt: z.ZodString;
|
|
32472
32472
|
updatedAt: z.ZodString;
|
|
32473
32473
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
@@ -32492,9 +32492,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32492
32492
|
isWorkApp: z.ZodBoolean;
|
|
32493
32493
|
}, z.core.$strip>>;
|
|
32494
32494
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32495
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32496
32495
|
id: z.ZodString;
|
|
32497
32496
|
name: z.ZodString;
|
|
32497
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32498
32498
|
createdAt: z.ZodString;
|
|
32499
32499
|
updatedAt: z.ZodString;
|
|
32500
32500
|
agentId: z.ZodString;
|
|
@@ -32510,9 +32510,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32510
32510
|
executeCode: z.ZodString;
|
|
32511
32511
|
}, z.core.$strip>>>;
|
|
32512
32512
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32513
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32514
32513
|
id: z.ZodString;
|
|
32515
32514
|
name: z.ZodString;
|
|
32515
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32516
32516
|
createdAt: z.ZodString;
|
|
32517
32517
|
updatedAt: z.ZodString;
|
|
32518
32518
|
props: z.ZodType<{
|
|
@@ -32559,9 +32559,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32559
32559
|
}>>>;
|
|
32560
32560
|
}, z.core.$strip>>>;
|
|
32561
32561
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32562
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32563
32562
|
id: z.ZodString;
|
|
32564
32563
|
name: z.ZodString;
|
|
32564
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32565
32565
|
createdAt: z.ZodString;
|
|
32566
32566
|
updatedAt: z.ZodString;
|
|
32567
32567
|
props: z.ZodNullable<z.ZodType<{
|
|
@@ -32608,9 +32608,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32608
32608
|
}>>>;
|
|
32609
32609
|
}, z.core.$strip>>>;
|
|
32610
32610
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32611
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32612
32611
|
id: z.ZodString;
|
|
32613
32612
|
name: z.ZodString;
|
|
32613
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32614
32614
|
createdAt: z.ZodString;
|
|
32615
32615
|
updatedAt: z.ZodString;
|
|
32616
32616
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -32637,10 +32637,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32637
32637
|
createdAt: z.ZodString;
|
|
32638
32638
|
updatedAt: z.ZodString;
|
|
32639
32639
|
userId: z.ZodNullable<z.ZodString>;
|
|
32640
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
32641
32640
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
32642
32641
|
credentialStoreId: z.ZodString;
|
|
32643
32642
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
32643
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
32644
32644
|
type: z.ZodEnum<{
|
|
32645
32645
|
readonly memory: "memory";
|
|
32646
32646
|
readonly keychain: "keychain";
|
|
@@ -33224,18 +33224,18 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33224
33224
|
}>>>;
|
|
33225
33225
|
}, z.core.$strip>>>;
|
|
33226
33226
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33227
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33228
33227
|
id: z.ZodString;
|
|
33229
33228
|
name: z.ZodString;
|
|
33229
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33230
33230
|
createdAt: z.ZodString;
|
|
33231
33231
|
updatedAt: z.ZodString;
|
|
33232
33232
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33233
33233
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
33234
33234
|
executionMode: z.ZodString;
|
|
33235
33235
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33236
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33237
33236
|
id: z.ZodString;
|
|
33238
33237
|
name: z.ZodString;
|
|
33238
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33239
33239
|
createdAt: z.ZodString;
|
|
33240
33240
|
updatedAt: z.ZodString;
|
|
33241
33241
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
@@ -33260,9 +33260,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33260
33260
|
isWorkApp: z.ZodBoolean;
|
|
33261
33261
|
}, z.core.$strip>>>;
|
|
33262
33262
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33263
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33264
33263
|
id: z.ZodString;
|
|
33265
33264
|
name: z.ZodString;
|
|
33265
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33266
33266
|
createdAt: z.ZodString;
|
|
33267
33267
|
updatedAt: z.ZodString;
|
|
33268
33268
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -33274,9 +33274,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33274
33274
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33275
33275
|
}, z.core.$strip>>>;
|
|
33276
33276
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33277
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33278
33277
|
id: z.ZodString;
|
|
33279
33278
|
name: z.ZodString;
|
|
33279
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33280
33280
|
createdAt: z.ZodString;
|
|
33281
33281
|
updatedAt: z.ZodString;
|
|
33282
33282
|
agentId: z.ZodString;
|
|
@@ -33338,9 +33338,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33338
33338
|
}, z.core.$strip>>;
|
|
33339
33339
|
prompt: z.ZodNullable<z.ZodString>;
|
|
33340
33340
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33341
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33342
33341
|
id: z.ZodString;
|
|
33343
33342
|
name: z.ZodString;
|
|
33343
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33344
33344
|
createdAt: z.ZodString;
|
|
33345
33345
|
updatedAt: z.ZodString;
|
|
33346
33346
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -33468,16 +33468,16 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33468
33468
|
}, z.core.$strip>;
|
|
33469
33469
|
declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
33470
33470
|
data: z.ZodObject<{
|
|
33471
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33472
33471
|
id: z.ZodString;
|
|
33473
33472
|
name: z.ZodString;
|
|
33473
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33474
33474
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33475
33475
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33476
33476
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
33477
33477
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33478
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33479
33478
|
id: z.ZodString;
|
|
33480
33479
|
name: z.ZodString;
|
|
33480
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33481
33481
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
33482
33482
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33483
33483
|
models: z.ZodOptional<z.ZodObject<{
|
|
@@ -33534,9 +33534,9 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33534
33534
|
}, z.core.$strip>>;
|
|
33535
33535
|
}, z.core.$strip>>;
|
|
33536
33536
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33537
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33538
33537
|
id: z.ZodString;
|
|
33539
33538
|
name: z.ZodString;
|
|
33539
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33540
33540
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33541
33541
|
config: z.ZodObject<{
|
|
33542
33542
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -33572,9 +33572,9 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33572
33572
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
33573
33573
|
}, z.core.$strip>>>;
|
|
33574
33574
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33575
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33576
33575
|
id: z.ZodString;
|
|
33577
33576
|
name: z.ZodString;
|
|
33577
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33578
33578
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33579
33579
|
baseUrl: z.ZodURL;
|
|
33580
33580
|
}, z.core.$strip>>>;
|
|
@@ -33584,9 +33584,9 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33584
33584
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33585
33585
|
}, z.core.$strip>>>;
|
|
33586
33586
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33587
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33588
33587
|
id: z.ZodString;
|
|
33589
33588
|
name: z.ZodString;
|
|
33589
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33590
33590
|
functionId: z.ZodString;
|
|
33591
33591
|
}, z.core.$strip>>>;
|
|
33592
33592
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -33596,9 +33596,9 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33596
33596
|
executeCode: z.ZodString;
|
|
33597
33597
|
}, z.core.$strip>>>;
|
|
33598
33598
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33599
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33600
33599
|
id: z.ZodOptional<z.ZodString>;
|
|
33601
33600
|
name: z.ZodString;
|
|
33601
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33602
33602
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
33603
33603
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
33604
33604
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
@@ -33659,18 +33659,18 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33659
33659
|
}, z.core.$strip>;
|
|
33660
33660
|
declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
33661
33661
|
data: z.ZodObject<{
|
|
33662
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33663
33662
|
id: z.ZodString;
|
|
33664
33663
|
name: z.ZodString;
|
|
33664
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33665
33665
|
createdAt: z.ZodString;
|
|
33666
33666
|
updatedAt: z.ZodString;
|
|
33667
33667
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33668
33668
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
33669
33669
|
executionMode: z.ZodString;
|
|
33670
33670
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33671
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33672
33671
|
id: z.ZodString;
|
|
33673
33672
|
name: z.ZodString;
|
|
33673
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33674
33674
|
createdAt: z.ZodString;
|
|
33675
33675
|
updatedAt: z.ZodString;
|
|
33676
33676
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -33785,9 +33785,9 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33785
33785
|
}, z.core.$strip>]>>>;
|
|
33786
33786
|
}, z.core.$strip>>;
|
|
33787
33787
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33788
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33789
33788
|
id: z.ZodString;
|
|
33790
33789
|
name: z.ZodString;
|
|
33790
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33791
33791
|
createdAt: z.ZodString;
|
|
33792
33792
|
updatedAt: z.ZodString;
|
|
33793
33793
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
@@ -33812,9 +33812,9 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33812
33812
|
isWorkApp: z.ZodBoolean;
|
|
33813
33813
|
}, z.core.$strip>>>;
|
|
33814
33814
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33815
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33816
33815
|
id: z.ZodString;
|
|
33817
33816
|
name: z.ZodString;
|
|
33817
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33818
33818
|
createdAt: z.ZodString;
|
|
33819
33819
|
updatedAt: z.ZodString;
|
|
33820
33820
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -33826,9 +33826,9 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33826
33826
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33827
33827
|
}, z.core.$strip>>>;
|
|
33828
33828
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33829
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33830
33829
|
id: z.ZodString;
|
|
33831
33830
|
name: z.ZodString;
|
|
33831
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33832
33832
|
createdAt: z.ZodString;
|
|
33833
33833
|
updatedAt: z.ZodString;
|
|
33834
33834
|
agentId: z.ZodString;
|
|
@@ -33912,9 +33912,9 @@ declare const ComponentAssociationListResponse: z.ZodObject<{
|
|
|
33912
33912
|
}, z.core.$strip>;
|
|
33913
33913
|
declare const McpToolResponse: z.ZodObject<{
|
|
33914
33914
|
data: z.ZodObject<{
|
|
33915
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33916
33915
|
id: z.ZodString;
|
|
33917
33916
|
name: z.ZodString;
|
|
33917
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33918
33918
|
projectId: z.ZodString;
|
|
33919
33919
|
tenantId: z.ZodString;
|
|
33920
33920
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -33973,9 +33973,9 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
33973
33973
|
}, z.core.$strip>;
|
|
33974
33974
|
declare const McpToolListResponse: z.ZodObject<{
|
|
33975
33975
|
data: z.ZodArray<z.ZodObject<{
|
|
33976
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33977
33976
|
id: z.ZodString;
|
|
33978
33977
|
name: z.ZodString;
|
|
33978
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33979
33979
|
projectId: z.ZodString;
|
|
33980
33980
|
tenantId: z.ZodString;
|
|
33981
33981
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -34092,9 +34092,9 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
|
34092
34092
|
}, z.core.$strip>;
|
|
34093
34093
|
declare const DataComponentArrayResponse: z.ZodObject<{
|
|
34094
34094
|
data: z.ZodArray<z.ZodObject<{
|
|
34095
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34096
34095
|
id: z.ZodString;
|
|
34097
34096
|
name: z.ZodString;
|
|
34097
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34098
34098
|
createdAt: z.ZodString;
|
|
34099
34099
|
updatedAt: z.ZodString;
|
|
34100
34100
|
props: z.ZodType<{
|
|
@@ -34143,9 +34143,9 @@ declare const DataComponentArrayResponse: z.ZodObject<{
|
|
|
34143
34143
|
}, z.core.$strip>;
|
|
34144
34144
|
declare const ArtifactComponentArrayResponse: z.ZodObject<{
|
|
34145
34145
|
data: z.ZodArray<z.ZodObject<{
|
|
34146
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34147
34146
|
id: z.ZodString;
|
|
34148
34147
|
name: z.ZodString;
|
|
34148
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34149
34149
|
createdAt: z.ZodString;
|
|
34150
34150
|
updatedAt: z.ZodString;
|
|
34151
34151
|
props: z.ZodNullable<z.ZodType<{
|
|
@@ -34871,23 +34871,23 @@ declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
|
|
|
34871
34871
|
in: {};
|
|
34872
34872
|
}>;
|
|
34873
34873
|
declare const WorkAppGithubInstallationApiSelectSchema: z.ZodObject<{
|
|
34874
|
-
status: z.ZodString;
|
|
34875
34874
|
id: z.ZodString;
|
|
34876
34875
|
createdAt: z.ZodString;
|
|
34877
34876
|
updatedAt: z.ZodString;
|
|
34877
|
+
status: z.ZodString;
|
|
34878
34878
|
installationId: z.ZodString;
|
|
34879
34879
|
accountLogin: z.ZodString;
|
|
34880
34880
|
accountId: z.ZodString;
|
|
34881
34881
|
accountType: z.ZodString;
|
|
34882
34882
|
}, z.core.$strip>;
|
|
34883
34883
|
declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<{
|
|
34884
|
+
tenantId: z.ZodString;
|
|
34884
34885
|
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
34885
34886
|
pending: "pending";
|
|
34886
34887
|
active: "active";
|
|
34887
34888
|
suspended: "suspended";
|
|
34888
34889
|
disconnected: "disconnected";
|
|
34889
34890
|
}>>>;
|
|
34890
|
-
tenantId: z.ZodString;
|
|
34891
34891
|
installationId: z.ZodString;
|
|
34892
34892
|
accountLogin: z.ZodString;
|
|
34893
34893
|
accountId: z.ZodString;
|
|
@@ -37385,13 +37385,13 @@ declare const WorkflowExecutionSelectSchema: z.ZodObject<{
|
|
|
37385
37385
|
in: {};
|
|
37386
37386
|
}>;
|
|
37387
37387
|
declare const WorkflowExecutionInsertSchema: z.ZodObject<{
|
|
37388
|
-
requestId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
37389
37388
|
id: z.ZodString;
|
|
37390
37389
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
37391
37390
|
projectId: z.ZodString;
|
|
37392
37391
|
tenantId: z.ZodString;
|
|
37393
37392
|
agentId: z.ZodString;
|
|
37394
37393
|
conversationId: z.ZodString;
|
|
37394
|
+
requestId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
37395
37395
|
status: z.ZodDefault<z.ZodEnum<{
|
|
37396
37396
|
failed: "failed";
|
|
37397
37397
|
running: "running";
|
|
@@ -37403,13 +37403,13 @@ declare const WorkflowExecutionInsertSchema: z.ZodObject<{
|
|
|
37403
37403
|
in: {};
|
|
37404
37404
|
}>;
|
|
37405
37405
|
declare const WorkflowExecutionUpdateSchema: z.ZodObject<{
|
|
37406
|
-
requestId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
37407
37406
|
id: z.ZodOptional<z.ZodString>;
|
|
37408
37407
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>;
|
|
37409
37408
|
projectId: z.ZodOptional<z.ZodString>;
|
|
37410
37409
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
37411
37410
|
agentId: z.ZodOptional<z.ZodString>;
|
|
37412
37411
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
37412
|
+
requestId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
37413
37413
|
status: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
37414
37414
|
failed: "failed";
|
|
37415
37415
|
running: "running";
|