@inkeep/agents-core 0.0.0-dev-20260122191720 → 0.0.0-dev-20260122200302
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-validation-schemas.d.ts +17 -17
- package/dist/data-access/manage/agents.d.ts +16 -16
- package/dist/data-access/manage/artifactComponents.d.ts +6 -6
- package/dist/data-access/manage/contextConfigs.d.ts +4 -4
- package/dist/data-access/manage/dataComponents.d.ts +2 -2
- package/dist/data-access/manage/functionTools.d.ts +10 -10
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgentRelations.d.ts +14 -14
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgents.d.ts +12 -12
- package/dist/data-access/manage/tools.d.ts +21 -21
- package/dist/data-access/runtime/apiKeys.d.ts +12 -12
- package/dist/data-access/runtime/conversations.d.ts +19 -19
- package/dist/data-access/runtime/tasks.d.ts +3 -3
- package/dist/db/runtime/runtime-schema.d.ts +6 -6
- package/dist/db/utils.d.ts +6 -0
- package/dist/db/utils.js +42 -0
- package/dist/dolt/index.d.ts +2 -2
- package/dist/dolt/index.js +2 -2
- package/dist/dolt/migrate-all-branches.js +5 -0
- package/dist/dolt/migrate-dolt.js +4 -1
- package/dist/dolt/schema-sync.d.ts +2 -1
- package/dist/dolt/schema-sync.js +10 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/validation/dolt-schemas.d.ts +1 -1
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas.d.ts +283 -283
- package/package.json +1 -1
|
@@ -767,11 +767,10 @@ declare const SubAgentApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
|
767
767
|
}>, z.core.$strip>;
|
|
768
768
|
declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
769
769
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
770
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
771
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
772
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
773
770
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
771
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
774
772
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
773
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
775
774
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
776
775
|
base: z.ZodOptional<z.ZodObject<{
|
|
777
776
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -795,6 +794,7 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
795
794
|
}, {
|
|
796
795
|
stepCountIs?: number | undefined;
|
|
797
796
|
}>>>>>>;
|
|
797
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
798
798
|
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
799
799
|
}, z.core.$strip>;
|
|
800
800
|
declare const SubAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -2429,7 +2429,7 @@ declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
2429
2429
|
}, {}, {
|
|
2430
2430
|
length: 256;
|
|
2431
2431
|
}>;
|
|
2432
|
-
}, "tenantId" | "projectId" | "id" | "
|
|
2432
|
+
}, "tenantId" | "projectId" | "id" | "createdAt" | "name" | "updatedAt" | "description" | "models" | "stopWhen" | "defaultSubAgentId" | "contextConfigId" | "prompt" | "statusUpdates">, undefined>, undefined>;
|
|
2433
2433
|
declare const AgentUpdateSchema: z.ZodObject<{
|
|
2434
2434
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2435
2435
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2696,11 +2696,10 @@ declare const AgentApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
2696
2696
|
id: z.ZodString;
|
|
2697
2697
|
}>, z.core.$strip>;
|
|
2698
2698
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
2699
|
-
name: z.ZodString;
|
|
2700
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2701
|
-
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2702
2699
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
2700
|
+
name: z.ZodString;
|
|
2703
2701
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2702
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2704
2703
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2705
2704
|
base?: {
|
|
2706
2705
|
model?: string | undefined;
|
|
@@ -2765,6 +2764,7 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2765
2764
|
}>>>>;
|
|
2766
2765
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2767
2766
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2767
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2768
2768
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2769
2769
|
enabled?: boolean | undefined;
|
|
2770
2770
|
numEvents?: number | undefined;
|
|
@@ -2826,11 +2826,10 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2826
2826
|
}, z.core.$strip>;
|
|
2827
2827
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
2828
2828
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2829
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2830
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2831
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2832
2829
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2830
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2833
2831
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2832
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2834
2833
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2835
2834
|
base?: {
|
|
2836
2835
|
model?: string | undefined;
|
|
@@ -2895,6 +2894,7 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
2895
2894
|
}>>>>>>;
|
|
2896
2895
|
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2897
2896
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2897
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2898
2898
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2899
2899
|
enabled?: boolean | undefined;
|
|
2900
2900
|
numEvents?: number | undefined;
|
|
@@ -4047,7 +4047,7 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
4047
4047
|
}, {}, {
|
|
4048
4048
|
length: 256;
|
|
4049
4049
|
}>;
|
|
4050
|
-
}, "tenantId" | "projectId" | "id" | "
|
|
4050
|
+
}, "tenantId" | "projectId" | "id" | "inputSchema" | "createdAt" | "name" | "updatedAt" | "description" | "enabled" | "agentId" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecret">, undefined>, undefined>;
|
|
4051
4051
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
4052
4052
|
name: z.ZodOptional<z.ZodString>;
|
|
4053
4053
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -4097,12 +4097,12 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4097
4097
|
id: z.ZodString;
|
|
4098
4098
|
}>, z.core.$strip>;
|
|
4099
4099
|
declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
4100
|
-
|
|
4101
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4100
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4102
4101
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4102
|
+
name: z.ZodString;
|
|
4103
4103
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4104
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4104
4105
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4105
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4106
4106
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
4107
4107
|
jmespath?: string;
|
|
4108
4108
|
objectTransformation?: Record<string, string>;
|
|
@@ -4950,7 +4950,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
4950
4950
|
}, {}, {
|
|
4951
4951
|
length: 256;
|
|
4952
4952
|
}>;
|
|
4953
|
-
}, "tenantId" | "projectId" | "id" | "
|
|
4953
|
+
}, "tenantId" | "projectId" | "id" | "createdAt" | "status" | "agentId" | "triggerId" | "conversationId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
4954
4954
|
declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
4955
4955
|
triggerId: z.ZodOptional<z.ZodString>;
|
|
4956
4956
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -5060,7 +5060,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
5060
5060
|
dataType: "json";
|
|
5061
5061
|
columnType: "PgJsonb";
|
|
5062
5062
|
data: {
|
|
5063
|
-
type: "
|
|
5063
|
+
type: "tag" | "commit" | "branch";
|
|
5064
5064
|
name: string;
|
|
5065
5065
|
hash: string;
|
|
5066
5066
|
};
|
|
@@ -5076,7 +5076,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
5076
5076
|
generated: undefined;
|
|
5077
5077
|
}, {}, {
|
|
5078
5078
|
$type: {
|
|
5079
|
-
type: "
|
|
5079
|
+
type: "tag" | "commit" | "branch";
|
|
5080
5080
|
name: string;
|
|
5081
5081
|
hash: string;
|
|
5082
5082
|
};
|
|
@@ -5274,7 +5274,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
5274
5274
|
dataType: "json";
|
|
5275
5275
|
columnType: "PgJsonb";
|
|
5276
5276
|
data: {
|
|
5277
|
-
type: "
|
|
5277
|
+
type: "tag" | "commit" | "branch";
|
|
5278
5278
|
name: string;
|
|
5279
5279
|
hash: string;
|
|
5280
5280
|
};
|
|
@@ -5290,7 +5290,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
5290
5290
|
generated: undefined;
|
|
5291
5291
|
}, {}, {
|
|
5292
5292
|
$type: {
|
|
5293
|
-
type: "
|
|
5293
|
+
type: "tag" | "commit" | "branch";
|
|
5294
5294
|
name: string;
|
|
5295
5295
|
hash: string;
|
|
5296
5296
|
};
|
|
@@ -5443,8 +5443,8 @@ declare const TaskInsertSchema: z.ZodObject<{
|
|
|
5443
5443
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
5444
5444
|
ref: z.ZodObject<{
|
|
5445
5445
|
type: z.ZodEnum<{
|
|
5446
|
-
commit: "commit";
|
|
5447
5446
|
tag: "tag";
|
|
5447
|
+
commit: "commit";
|
|
5448
5448
|
branch: "branch";
|
|
5449
5449
|
}>;
|
|
5450
5450
|
name: z.ZodString;
|
|
@@ -5468,8 +5468,8 @@ declare const TaskUpdateSchema: z.ZodObject<{
|
|
|
5468
5468
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5469
5469
|
ref: z.ZodOptional<z.ZodObject<{
|
|
5470
5470
|
type: z.ZodEnum<{
|
|
5471
|
-
commit: "commit";
|
|
5472
5471
|
tag: "tag";
|
|
5472
|
+
commit: "commit";
|
|
5473
5473
|
branch: "branch";
|
|
5474
5474
|
}>;
|
|
5475
5475
|
name: z.ZodString;
|
|
@@ -5484,19 +5484,19 @@ declare const TaskApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
5484
5484
|
updatedAt: z.ZodString;
|
|
5485
5485
|
contextId: z.ZodString;
|
|
5486
5486
|
ref: z.ZodNullable<z.ZodType<{
|
|
5487
|
-
type: "
|
|
5487
|
+
type: "tag" | "commit" | "branch";
|
|
5488
5488
|
name: string;
|
|
5489
5489
|
hash: string;
|
|
5490
5490
|
}, {
|
|
5491
|
-
type: "
|
|
5491
|
+
type: "tag" | "commit" | "branch";
|
|
5492
5492
|
name: string;
|
|
5493
5493
|
hash: string;
|
|
5494
5494
|
}, z.core.$ZodTypeInternals<{
|
|
5495
|
-
type: "
|
|
5495
|
+
type: "tag" | "commit" | "branch";
|
|
5496
5496
|
name: string;
|
|
5497
5497
|
hash: string;
|
|
5498
5498
|
}, {
|
|
5499
|
-
type: "
|
|
5499
|
+
type: "tag" | "commit" | "branch";
|
|
5500
5500
|
name: string;
|
|
5501
5501
|
hash: string;
|
|
5502
5502
|
}>>>;
|
|
@@ -5522,8 +5522,8 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
5522
5522
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
5523
5523
|
ref: z.ZodObject<{
|
|
5524
5524
|
type: z.ZodEnum<{
|
|
5525
|
-
commit: "commit";
|
|
5526
5525
|
tag: "tag";
|
|
5526
|
+
commit: "commit";
|
|
5527
5527
|
branch: "branch";
|
|
5528
5528
|
}>;
|
|
5529
5529
|
name: z.ZodString;
|
|
@@ -5532,20 +5532,20 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
5532
5532
|
}>, z.core.$strip>;
|
|
5533
5533
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
5534
5534
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5535
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5536
5535
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5537
5536
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5538
5537
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
5539
5538
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
5540
5539
|
type: z.ZodEnum<{
|
|
5541
|
-
commit: "commit";
|
|
5542
5540
|
tag: "tag";
|
|
5541
|
+
commit: "commit";
|
|
5543
5542
|
branch: "branch";
|
|
5544
5543
|
}>;
|
|
5545
5544
|
name: z.ZodString;
|
|
5546
5545
|
hash: z.ZodString;
|
|
5547
5546
|
}, z.core.$strip>>>;
|
|
5548
5547
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5548
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5549
5549
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5550
5550
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5551
5551
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -6593,7 +6593,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
6593
6593
|
dataType: "json";
|
|
6594
6594
|
columnType: "PgJsonb";
|
|
6595
6595
|
data: {
|
|
6596
|
-
type: "
|
|
6596
|
+
type: "tag" | "commit" | "branch";
|
|
6597
6597
|
name: string;
|
|
6598
6598
|
hash: string;
|
|
6599
6599
|
};
|
|
@@ -6609,7 +6609,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
6609
6609
|
generated: undefined;
|
|
6610
6610
|
}, {}, {
|
|
6611
6611
|
$type: {
|
|
6612
|
-
type: "
|
|
6612
|
+
type: "tag" | "commit" | "branch";
|
|
6613
6613
|
name: string;
|
|
6614
6614
|
hash: string;
|
|
6615
6615
|
};
|
|
@@ -6822,7 +6822,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
6822
6822
|
dataType: "json";
|
|
6823
6823
|
columnType: "PgJsonb";
|
|
6824
6824
|
data: {
|
|
6825
|
-
type: "
|
|
6825
|
+
type: "tag" | "commit" | "branch";
|
|
6826
6826
|
name: string;
|
|
6827
6827
|
hash: string;
|
|
6828
6828
|
};
|
|
@@ -6838,7 +6838,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
6838
6838
|
generated: undefined;
|
|
6839
6839
|
}, {}, {
|
|
6840
6840
|
$type: {
|
|
6841
|
-
type: "
|
|
6841
|
+
type: "tag" | "commit" | "branch";
|
|
6842
6842
|
name: string;
|
|
6843
6843
|
hash: string;
|
|
6844
6844
|
};
|
|
@@ -6969,8 +6969,8 @@ declare const ConversationInsertSchema: z.ZodObject<{
|
|
|
6969
6969
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
6970
6970
|
ref: z.ZodObject<{
|
|
6971
6971
|
type: z.ZodEnum<{
|
|
6972
|
-
commit: "commit";
|
|
6973
6972
|
tag: "tag";
|
|
6973
|
+
commit: "commit";
|
|
6974
6974
|
branch: "branch";
|
|
6975
6975
|
}>;
|
|
6976
6976
|
name: z.ZodString;
|
|
@@ -6995,8 +6995,8 @@ declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
6995
6995
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6996
6996
|
ref: z.ZodOptional<z.ZodObject<{
|
|
6997
6997
|
type: z.ZodEnum<{
|
|
6998
|
-
commit: "commit";
|
|
6999
6998
|
tag: "tag";
|
|
6999
|
+
commit: "commit";
|
|
7000
7000
|
branch: "branch";
|
|
7001
7001
|
}>;
|
|
7002
7002
|
name: z.ZodString;
|
|
@@ -7013,19 +7013,19 @@ declare const ConversationApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
7013
7013
|
agentId: z.ZodNullable<z.ZodString>;
|
|
7014
7014
|
activeSubAgentId: z.ZodString;
|
|
7015
7015
|
ref: z.ZodNullable<z.ZodType<{
|
|
7016
|
-
type: "
|
|
7016
|
+
type: "tag" | "commit" | "branch";
|
|
7017
7017
|
name: string;
|
|
7018
7018
|
hash: string;
|
|
7019
7019
|
}, {
|
|
7020
|
-
type: "
|
|
7020
|
+
type: "tag" | "commit" | "branch";
|
|
7021
7021
|
name: string;
|
|
7022
7022
|
hash: string;
|
|
7023
7023
|
}, z.core.$ZodTypeInternals<{
|
|
7024
|
-
type: "
|
|
7024
|
+
type: "tag" | "commit" | "branch";
|
|
7025
7025
|
name: string;
|
|
7026
7026
|
hash: string;
|
|
7027
7027
|
}, {
|
|
7028
|
-
type: "
|
|
7028
|
+
type: "tag" | "commit" | "branch";
|
|
7029
7029
|
name: string;
|
|
7030
7030
|
hash: string;
|
|
7031
7031
|
}>>>;
|
|
@@ -7051,8 +7051,8 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
7051
7051
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
7052
7052
|
ref: z.ZodObject<{
|
|
7053
7053
|
type: z.ZodEnum<{
|
|
7054
|
-
commit: "commit";
|
|
7055
7054
|
tag: "tag";
|
|
7055
|
+
commit: "commit";
|
|
7056
7056
|
branch: "branch";
|
|
7057
7057
|
}>;
|
|
7058
7058
|
name: z.ZodString;
|
|
@@ -7061,22 +7061,22 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
7061
7061
|
}>, z.core.$strip>;
|
|
7062
7062
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
7063
7063
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7064
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7065
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7066
7064
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7067
7065
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7068
|
-
|
|
7066
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7069
7067
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
7070
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7071
7068
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7072
7069
|
type: z.ZodEnum<{
|
|
7073
|
-
commit: "commit";
|
|
7074
7070
|
tag: "tag";
|
|
7071
|
+
commit: "commit";
|
|
7075
7072
|
branch: "branch";
|
|
7076
7073
|
}>;
|
|
7077
7074
|
name: z.ZodString;
|
|
7078
7075
|
hash: z.ZodString;
|
|
7079
7076
|
}, z.core.$strip>>>;
|
|
7077
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7078
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7079
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7080
7080
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7081
7081
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7082
7082
|
}, z.core.$strip>;
|
|
@@ -8090,7 +8090,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8090
8090
|
dataType: "json";
|
|
8091
8091
|
columnType: "PgJsonb";
|
|
8092
8092
|
data: {
|
|
8093
|
-
type: "
|
|
8093
|
+
type: "tag" | "commit" | "branch";
|
|
8094
8094
|
name: string;
|
|
8095
8095
|
hash: string;
|
|
8096
8096
|
};
|
|
@@ -8106,7 +8106,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8106
8106
|
generated: undefined;
|
|
8107
8107
|
}, {}, {
|
|
8108
8108
|
$type: {
|
|
8109
|
-
type: "
|
|
8109
|
+
type: "tag" | "commit" | "branch";
|
|
8110
8110
|
name: string;
|
|
8111
8111
|
hash: string;
|
|
8112
8112
|
};
|
|
@@ -8340,7 +8340,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8340
8340
|
dataType: "json";
|
|
8341
8341
|
columnType: "PgJsonb";
|
|
8342
8342
|
data: {
|
|
8343
|
-
type: "
|
|
8343
|
+
type: "tag" | "commit" | "branch";
|
|
8344
8344
|
name: string;
|
|
8345
8345
|
hash: string;
|
|
8346
8346
|
};
|
|
@@ -8356,7 +8356,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8356
8356
|
generated: undefined;
|
|
8357
8357
|
}, {}, {
|
|
8358
8358
|
$type: {
|
|
8359
|
-
type: "
|
|
8359
|
+
type: "tag" | "commit" | "branch";
|
|
8360
8360
|
name: string;
|
|
8361
8361
|
hash: string;
|
|
8362
8362
|
};
|
|
@@ -8508,8 +8508,8 @@ declare const ContextCacheInsertSchema: z.ZodObject<{
|
|
|
8508
8508
|
id: z.ZodString;
|
|
8509
8509
|
ref: z.ZodObject<{
|
|
8510
8510
|
type: z.ZodEnum<{
|
|
8511
|
-
commit: "commit";
|
|
8512
8511
|
tag: "tag";
|
|
8512
|
+
commit: "commit";
|
|
8513
8513
|
branch: "branch";
|
|
8514
8514
|
}>;
|
|
8515
8515
|
name: z.ZodString;
|
|
@@ -8534,8 +8534,8 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
8534
8534
|
id: z.ZodOptional<z.ZodString>;
|
|
8535
8535
|
ref: z.ZodOptional<z.ZodObject<{
|
|
8536
8536
|
type: z.ZodEnum<{
|
|
8537
|
-
commit: "commit";
|
|
8538
8537
|
tag: "tag";
|
|
8538
|
+
commit: "commit";
|
|
8539
8539
|
branch: "branch";
|
|
8540
8540
|
}>;
|
|
8541
8541
|
name: z.ZodString;
|
|
@@ -8552,19 +8552,19 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8552
8552
|
contextConfigId: z.ZodString;
|
|
8553
8553
|
contextVariableKey: z.ZodString;
|
|
8554
8554
|
ref: z.ZodNullable<z.ZodType<{
|
|
8555
|
-
type: "
|
|
8555
|
+
type: "tag" | "commit" | "branch";
|
|
8556
8556
|
name: string;
|
|
8557
8557
|
hash: string;
|
|
8558
8558
|
}, {
|
|
8559
|
-
type: "
|
|
8559
|
+
type: "tag" | "commit" | "branch";
|
|
8560
8560
|
name: string;
|
|
8561
8561
|
hash: string;
|
|
8562
8562
|
}, z.core.$ZodTypeInternals<{
|
|
8563
|
-
type: "
|
|
8563
|
+
type: "tag" | "commit" | "branch";
|
|
8564
8564
|
name: string;
|
|
8565
8565
|
hash: string;
|
|
8566
8566
|
}, {
|
|
8567
|
-
type: "
|
|
8567
|
+
type: "tag" | "commit" | "branch";
|
|
8568
8568
|
name: string;
|
|
8569
8569
|
hash: string;
|
|
8570
8570
|
}>>>;
|
|
@@ -8591,8 +8591,8 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8591
8591
|
id: z.ZodString;
|
|
8592
8592
|
ref: z.ZodObject<{
|
|
8593
8593
|
type: z.ZodEnum<{
|
|
8594
|
-
commit: "commit";
|
|
8595
8594
|
tag: "tag";
|
|
8595
|
+
commit: "commit";
|
|
8596
8596
|
branch: "branch";
|
|
8597
8597
|
}>;
|
|
8598
8598
|
name: z.ZodString;
|
|
@@ -8601,19 +8601,19 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8601
8601
|
}>, z.core.$strip>;
|
|
8602
8602
|
declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
8603
8603
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8604
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
8605
8604
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8606
8605
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8607
|
-
|
|
8606
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
8608
8607
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
8609
8608
|
type: z.ZodEnum<{
|
|
8610
|
-
commit: "commit";
|
|
8611
8609
|
tag: "tag";
|
|
8610
|
+
commit: "commit";
|
|
8612
8611
|
branch: "branch";
|
|
8613
8612
|
}>;
|
|
8614
8613
|
name: z.ZodString;
|
|
8615
8614
|
hash: z.ZodString;
|
|
8616
8615
|
}, z.core.$strip>>>;
|
|
8616
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8617
8617
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8618
8618
|
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8619
8619
|
requestHash: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -10300,27 +10300,27 @@ declare const EvaluationRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
10300
10300
|
id: z.ZodString;
|
|
10301
10301
|
}>, z.core.$strip>;
|
|
10302
10302
|
declare const EvaluationRunConfigApiInsertSchema: z.ZodObject<{
|
|
10303
|
-
name: z.ZodString;
|
|
10304
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10305
10303
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10304
|
+
name: z.ZodString;
|
|
10306
10305
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10306
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10307
10307
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
10308
10308
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
10309
10309
|
}, z.core.$strip>;
|
|
10310
10310
|
declare const EvaluationRunConfigApiUpdateSchema: z.ZodObject<{
|
|
10311
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10312
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10313
10311
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10312
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10314
10313
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10314
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10315
10315
|
isActive: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
10316
10316
|
suiteConfigIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10317
10317
|
}, z.core.$strip>;
|
|
10318
10318
|
declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
10319
10319
|
id: z.ZodString;
|
|
10320
|
-
name: z.ZodString;
|
|
10321
|
-
description: z.ZodNullable<z.ZodString>;
|
|
10322
10320
|
createdAt: z.ZodString;
|
|
10321
|
+
name: z.ZodString;
|
|
10323
10322
|
updatedAt: z.ZodString;
|
|
10323
|
+
description: z.ZodNullable<z.ZodString>;
|
|
10324
10324
|
isActive: z.ZodBoolean;
|
|
10325
10325
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
10326
10326
|
}, z.core.$strip>;
|
|
@@ -12453,9 +12453,10 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
12453
12453
|
id: z.ZodString;
|
|
12454
12454
|
}>, z.core.$strip>;
|
|
12455
12455
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
12456
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
12456
12457
|
name: z.ZodString;
|
|
12458
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12457
12459
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12458
|
-
prompt: z.ZodString;
|
|
12459
12460
|
model: z.ZodType<{
|
|
12460
12461
|
model?: string | undefined;
|
|
12461
12462
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -12469,15 +12470,15 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
12469
12470
|
model?: string | undefined;
|
|
12470
12471
|
providerOptions?: Record<string, any> | undefined;
|
|
12471
12472
|
}>>;
|
|
12472
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
12473
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12474
12473
|
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
12474
|
+
prompt: z.ZodString;
|
|
12475
12475
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
|
|
12476
12476
|
}, z.core.$strip>;
|
|
12477
12477
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
12478
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12478
12479
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12480
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12479
12481
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12480
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12481
12482
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
12482
12483
|
model?: string | undefined;
|
|
12483
12484
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -12491,9 +12492,8 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
12491
12492
|
model?: string | undefined;
|
|
12492
12493
|
providerOptions?: Record<string, any> | undefined;
|
|
12493
12494
|
}>>>>;
|
|
12494
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12495
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12496
12495
|
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
12496
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12497
12497
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
|
|
12498
12498
|
}, z.core.$strip>;
|
|
12499
12499
|
declare const DatasetSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -12750,13 +12750,13 @@ declare const DatasetApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
12750
12750
|
id: z.ZodString;
|
|
12751
12751
|
}>, z.core.$strip>;
|
|
12752
12752
|
declare const DatasetApiInsertSchema: z.ZodObject<{
|
|
12753
|
-
name: z.ZodString;
|
|
12754
12753
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12754
|
+
name: z.ZodString;
|
|
12755
12755
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12756
12756
|
}, z.core.$strip>;
|
|
12757
12757
|
declare const DatasetApiUpdateSchema: z.ZodObject<{
|
|
12758
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12759
12758
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12759
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12760
12760
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12761
12761
|
}, z.core.$strip>;
|
|
12762
12762
|
declare const DatasetItemSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -13386,8 +13386,8 @@ declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
|
13386
13386
|
}>>>>>>;
|
|
13387
13387
|
}, z.core.$strip>;
|
|
13388
13388
|
declare const DatasetRunItemSchema: z.ZodObject<{
|
|
13389
|
-
id: z.ZodOptional<z.ZodString>;
|
|
13390
13389
|
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13390
|
+
id: z.ZodOptional<z.ZodString>;
|
|
13391
13391
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13392
13392
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
13393
13393
|
prompt: string;
|
|
@@ -13435,8 +13435,8 @@ declare const DatasetRunItemSchema: z.ZodObject<{
|
|
|
13435
13435
|
declare const TriggerDatasetRunSchema: z.ZodObject<{
|
|
13436
13436
|
datasetRunId: z.ZodString;
|
|
13437
13437
|
items: z.ZodArray<z.ZodObject<{
|
|
13438
|
-
id: z.ZodOptional<z.ZodString>;
|
|
13439
13438
|
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13439
|
+
id: z.ZodOptional<z.ZodString>;
|
|
13440
13440
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13441
13441
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
13442
13442
|
prompt: string;
|
|
@@ -13842,17 +13842,17 @@ declare const DatasetRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
13842
13842
|
id: z.ZodString;
|
|
13843
13843
|
}>, z.core.$strip>;
|
|
13844
13844
|
declare const DatasetRunConfigApiInsertSchema: z.ZodObject<{
|
|
13845
|
-
name: z.ZodString;
|
|
13846
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13847
13845
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13846
|
+
name: z.ZodString;
|
|
13848
13847
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13848
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13849
13849
|
datasetId: z.ZodString;
|
|
13850
13850
|
}, z.core.$strip>;
|
|
13851
13851
|
declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
13852
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13853
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13854
13852
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13853
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13855
13854
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13855
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13856
13856
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13857
13857
|
}, z.core.$strip>;
|
|
13858
13858
|
declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -14142,15 +14142,15 @@ declare const DatasetRunConfigAgentRelationApiSelectSchema: z.ZodObject<OmitProj
|
|
|
14142
14142
|
id: z.ZodString;
|
|
14143
14143
|
}>, z.core.$strip>;
|
|
14144
14144
|
declare const DatasetRunConfigAgentRelationApiInsertSchema: z.ZodObject<{
|
|
14145
|
-
agentId: z.ZodString;
|
|
14146
14145
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14147
14146
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14147
|
+
agentId: z.ZodString;
|
|
14148
14148
|
datasetRunConfigId: z.ZodString;
|
|
14149
14149
|
}, z.core.$strip>;
|
|
14150
14150
|
declare const DatasetRunConfigAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
14151
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14152
14151
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14153
14152
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14153
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14154
14154
|
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14155
14155
|
}, z.core.$strip>;
|
|
14156
14156
|
declare const DataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -14622,10 +14622,10 @@ declare const DataComponentApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
14622
14622
|
}>, z.core.$strip>;
|
|
14623
14623
|
declare const DataComponentApiUpdateSchema: z.ZodObject<{
|
|
14624
14624
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14625
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14626
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14627
14625
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14626
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14628
14627
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14628
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14629
14629
|
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>>;
|
|
14630
14630
|
render: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
14631
14631
|
component: string;
|
|
@@ -15170,7 +15170,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"inse
|
|
|
15170
15170
|
}, {}, {
|
|
15171
15171
|
length: 256;
|
|
15172
15172
|
}>;
|
|
15173
|
-
}, "tenantId" | "projectId" | "id" | "
|
|
15173
|
+
}, "tenantId" | "projectId" | "id" | "createdAt" | "agentId" | "subAgentId" | "dataComponentId">, undefined>, undefined>;
|
|
15174
15174
|
declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
15175
15175
|
dataComponentId: z.ZodOptional<z.ZodString>;
|
|
15176
15176
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -15650,10 +15650,10 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
15650
15650
|
}>;
|
|
15651
15651
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
15652
15652
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15653
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15654
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
15655
15653
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15654
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15656
15655
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15656
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
15657
15657
|
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>>;
|
|
15658
15658
|
render: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
15659
15659
|
component: string;
|
|
@@ -16047,20 +16047,19 @@ declare const ExternalAgentApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
16047
16047
|
}>, z.core.$strip>;
|
|
16048
16048
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
16049
16049
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16050
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16050
16051
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16052
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16051
16053
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16052
16054
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16053
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16054
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16055
16055
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16056
16056
|
}, z.core.$strip>;
|
|
16057
16057
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
16058
16058
|
id: z.ZodString;
|
|
16059
|
-
name: z.ZodString;
|
|
16060
|
-
description: z.ZodNullable<z.ZodString>;
|
|
16061
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
16062
16059
|
createdAt: z.ZodString;
|
|
16060
|
+
name: z.ZodString;
|
|
16063
16061
|
updatedAt: z.ZodString;
|
|
16062
|
+
description: z.ZodNullable<z.ZodString>;
|
|
16064
16063
|
models: z.ZodNullable<z.ZodType<{
|
|
16065
16064
|
base?: {
|
|
16066
16065
|
model?: string | undefined;
|
|
@@ -16123,15 +16122,16 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16123
16122
|
}, {
|
|
16124
16123
|
stepCountIs?: number | undefined;
|
|
16125
16124
|
}>>>;
|
|
16125
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
16126
16126
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
16127
16127
|
type: z.ZodLiteral<"internal">;
|
|
16128
16128
|
}, z.core.$strip>, z.ZodObject<{
|
|
16129
16129
|
id: z.ZodString;
|
|
16130
|
+
createdAt: z.ZodString;
|
|
16130
16131
|
name: z.ZodString;
|
|
16132
|
+
updatedAt: z.ZodString;
|
|
16131
16133
|
description: z.ZodNullable<z.ZodString>;
|
|
16132
16134
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16133
|
-
createdAt: z.ZodString;
|
|
16134
|
-
updatedAt: z.ZodString;
|
|
16135
16135
|
baseUrl: z.ZodString;
|
|
16136
16136
|
type: z.ZodLiteral<"external">;
|
|
16137
16137
|
}, z.core.$strip>], "type">;
|
|
@@ -16597,24 +16597,24 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
16597
16597
|
}>;
|
|
16598
16598
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
16599
16599
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16600
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16601
|
+
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16600
16602
|
agentId: z.ZodOptional<z.ZodString>;
|
|
16601
16603
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16602
|
-
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16603
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16604
16604
|
}, {
|
|
16605
16605
|
out: {};
|
|
16606
16606
|
in: {};
|
|
16607
16607
|
}>;
|
|
16608
16608
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
16609
16609
|
id: z.ZodString;
|
|
16610
|
+
createdAt: z.ZodString;
|
|
16610
16611
|
name: z.ZodNullable<z.ZodString>;
|
|
16612
|
+
updatedAt: z.ZodString;
|
|
16613
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
16611
16614
|
agentId: z.ZodString;
|
|
16612
16615
|
publicId: z.ZodString;
|
|
16613
16616
|
keyPrefix: z.ZodString;
|
|
16614
16617
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
16615
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
16616
|
-
createdAt: z.ZodString;
|
|
16617
|
-
updatedAt: z.ZodString;
|
|
16618
16618
|
}, {
|
|
16619
16619
|
out: {};
|
|
16620
16620
|
in: {};
|
|
@@ -16623,14 +16623,14 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
16623
16623
|
data: z.ZodObject<{
|
|
16624
16624
|
apiKey: z.ZodObject<{
|
|
16625
16625
|
id: z.ZodString;
|
|
16626
|
+
createdAt: z.ZodString;
|
|
16626
16627
|
name: z.ZodNullable<z.ZodString>;
|
|
16628
|
+
updatedAt: z.ZodString;
|
|
16629
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
16627
16630
|
agentId: z.ZodString;
|
|
16628
16631
|
publicId: z.ZodString;
|
|
16629
16632
|
keyPrefix: z.ZodString;
|
|
16630
16633
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
16631
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
16632
|
-
createdAt: z.ZodString;
|
|
16633
|
-
updatedAt: z.ZodString;
|
|
16634
16634
|
}, {
|
|
16635
16635
|
out: {};
|
|
16636
16636
|
in: {};
|
|
@@ -16639,21 +16639,21 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
16639
16639
|
}, z.core.$strip>;
|
|
16640
16640
|
}, z.core.$strip>;
|
|
16641
16641
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
16642
|
-
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16643
|
-
agentId: z.ZodString;
|
|
16644
|
-
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16645
16642
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16643
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16646
16644
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16645
|
+
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16646
|
+
agentId: z.ZodString;
|
|
16647
16647
|
}, {
|
|
16648
16648
|
out: {};
|
|
16649
16649
|
in: {};
|
|
16650
16650
|
}>;
|
|
16651
16651
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
16652
16652
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16653
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16654
|
+
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16653
16655
|
agentId: z.ZodOptional<z.ZodString>;
|
|
16654
16656
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16655
|
-
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16656
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16657
16657
|
}, {
|
|
16658
16658
|
out: {};
|
|
16659
16659
|
in: {};
|
|
@@ -17145,12 +17145,12 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
|
17145
17145
|
}>;
|
|
17146
17146
|
declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
17147
17147
|
id: z.ZodString;
|
|
17148
|
-
name: z.ZodString;
|
|
17149
17148
|
createdAt: z.ZodString;
|
|
17149
|
+
name: z.ZodString;
|
|
17150
17150
|
updatedAt: z.ZodString;
|
|
17151
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
17151
17152
|
credentialStoreId: z.ZodString;
|
|
17152
17153
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
17153
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
17154
17154
|
toolId: z.ZodNullable<z.ZodString>;
|
|
17155
17155
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
17156
17156
|
type: z.ZodEnum<{
|
|
@@ -17702,12 +17702,12 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
17702
17702
|
}, z.core.$strip>;
|
|
17703
17703
|
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
17704
17704
|
id: z.ZodString;
|
|
17705
|
-
name: z.ZodString;
|
|
17706
17705
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17706
|
+
name: z.ZodString;
|
|
17707
17707
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17708
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17708
17709
|
credentialStoreId: z.ZodString;
|
|
17709
17710
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
17710
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17711
17711
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17712
17712
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17713
17713
|
type: z.ZodEnum<{
|
|
@@ -17718,12 +17718,12 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
17718
17718
|
}, z.core.$strip>;
|
|
17719
17719
|
declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
17720
17720
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17721
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17722
17721
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
17722
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17723
17723
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
17724
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17724
17725
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17725
17726
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
17726
|
-
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17727
17727
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17728
17728
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17729
17729
|
type: z.ZodOptional<z.ZodEnum<{
|
|
@@ -17849,18 +17849,18 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
17849
17849
|
id: z.ZodString;
|
|
17850
17850
|
name: z.ZodString;
|
|
17851
17851
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
17852
|
-
createdBy: z.ZodOptional<z.ZodString>;
|
|
17853
17852
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
17853
|
+
relationshipId: z.ZodOptional<z.ZodString>;
|
|
17854
17854
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
17855
17855
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
17856
17856
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
17857
17857
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17858
|
+
createdBy: z.ZodOptional<z.ZodString>;
|
|
17858
17859
|
availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17859
17860
|
name: z.ZodString;
|
|
17860
17861
|
description: z.ZodOptional<z.ZodString>;
|
|
17861
17862
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
17862
17863
|
}, z.core.$strip>>>;
|
|
17863
|
-
relationshipId: z.ZodOptional<z.ZodString>;
|
|
17864
17864
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
17865
17865
|
projectId: z.ZodOptional<z.ZodString>;
|
|
17866
17866
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -17882,12 +17882,12 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
17882
17882
|
}, z.core.$strip>>;
|
|
17883
17883
|
credential: z.ZodOptional<z.ZodObject<{
|
|
17884
17884
|
id: z.ZodString;
|
|
17885
|
-
name: z.ZodString;
|
|
17886
17885
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17886
|
+
name: z.ZodString;
|
|
17887
17887
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17888
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17888
17889
|
credentialStoreId: z.ZodString;
|
|
17889
17890
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
17890
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17891
17891
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17892
17892
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17893
17893
|
type: z.ZodEnum<{
|
|
@@ -18022,8 +18022,11 @@ declare const ToolApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
18022
18022
|
}>, z.core.$strip>;
|
|
18023
18023
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
18024
18024
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18025
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18025
18026
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18027
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18026
18028
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18029
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
|
|
18027
18030
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
18028
18031
|
type: z.ZodLiteral<"mcp">;
|
|
18029
18032
|
mcp: z.ZodObject<{
|
|
@@ -18051,9 +18054,6 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
18051
18054
|
}, z.core.$strip>;
|
|
18052
18055
|
}, z.core.$strip>>>;
|
|
18053
18056
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18054
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18055
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18056
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
|
|
18057
18057
|
credentialScope: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18058
18058
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18059
18059
|
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
@@ -18422,12 +18422,12 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
18422
18422
|
}>;
|
|
18423
18423
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
18424
18424
|
id: z.ZodString;
|
|
18425
|
-
name: z.ZodString;
|
|
18426
|
-
description: z.ZodNullable<z.ZodString>;
|
|
18427
|
-
agentId: z.ZodString;
|
|
18428
18425
|
createdAt: z.ZodString;
|
|
18426
|
+
name: z.ZodString;
|
|
18429
18427
|
updatedAt: z.ZodString;
|
|
18428
|
+
description: z.ZodNullable<z.ZodString>;
|
|
18430
18429
|
functionId: z.ZodString;
|
|
18430
|
+
agentId: z.ZodString;
|
|
18431
18431
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
18432
18432
|
}, z.core.$strip>;
|
|
18433
18433
|
declare const FunctionToolApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
@@ -18443,12 +18443,12 @@ declare const FunctionToolApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
|
18443
18443
|
}>, z.core.$strip>;
|
|
18444
18444
|
declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
18445
18445
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18446
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18447
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18448
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18449
18446
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18447
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18450
18448
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18449
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18451
18450
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18451
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18452
18452
|
}, z.core.$strip>;
|
|
18453
18453
|
declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
18454
18454
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
@@ -18773,8 +18773,8 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<OmitAgent
|
|
|
18773
18773
|
id: z.ZodString;
|
|
18774
18774
|
}>, z.core.$strip>;
|
|
18775
18775
|
declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
|
|
18776
|
-
subAgentId: z.ZodString;
|
|
18777
18776
|
functionToolId: z.ZodString;
|
|
18777
|
+
subAgentId: z.ZodString;
|
|
18778
18778
|
}, {
|
|
18779
18779
|
out: {};
|
|
18780
18780
|
in: {};
|
|
@@ -19122,11 +19122,11 @@ declare const FunctionApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
19122
19122
|
}>, z.core.$strip>;
|
|
19123
19123
|
declare const FunctionApiUpdateSchema: z.ZodObject<{
|
|
19124
19124
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19125
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19126
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19127
19125
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>>;
|
|
19128
|
-
dependencies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
|
|
19129
19126
|
executeCode: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19127
|
+
dependencies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
|
|
19128
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19129
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19130
19130
|
}, z.core.$strip>;
|
|
19131
19131
|
declare const FetchConfigSchema: z.ZodObject<{
|
|
19132
19132
|
url: z.ZodString;
|
|
@@ -19169,12 +19169,12 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
19169
19169
|
defaultValue: z.ZodOptional<z.ZodAny>;
|
|
19170
19170
|
credential: z.ZodOptional<z.ZodObject<{
|
|
19171
19171
|
id: z.ZodString;
|
|
19172
|
-
name: z.ZodString;
|
|
19173
19172
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
19173
|
+
name: z.ZodString;
|
|
19174
19174
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19175
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19175
19176
|
credentialStoreId: z.ZodString;
|
|
19176
19177
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19177
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19178
19178
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19179
19179
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19180
19180
|
type: z.ZodEnum<{
|
|
@@ -19725,13 +19725,13 @@ declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
|
19725
19725
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19726
19726
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19727
19727
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19728
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19729
19728
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
19729
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19730
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19731
|
+
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
19730
19732
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
19731
19733
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
19732
19734
|
}, z.core.$strip>>>>>>;
|
|
19733
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19734
|
-
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
19735
19735
|
}, z.core.$strip>;
|
|
19736
19736
|
declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
19737
19737
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
@@ -20120,8 +20120,8 @@ declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
20120
20120
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20121
20121
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20122
20122
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
20123
|
-
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20124
20123
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20124
|
+
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20125
20125
|
}, z.core.$strip>;
|
|
20126
20126
|
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
20127
20127
|
createdAt: drizzle_orm_pg_core208.PgColumn<{
|
|
@@ -21854,7 +21854,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
21854
21854
|
}, {}, {
|
|
21855
21855
|
length: 256;
|
|
21856
21856
|
}>;
|
|
21857
|
-
}, "
|
|
21857
|
+
}, "type" | "tenantId" | "projectId" | "id" | "createdAt" | "name" | "updatedAt" | "description" | "metadata" | "taskId" | "contextId" | "visibility" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
21858
21858
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
21859
21859
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21860
21860
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -21919,12 +21919,12 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
21919
21919
|
id: z.ZodString;
|
|
21920
21920
|
}>, z.core.$strip>;
|
|
21921
21921
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
21922
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21923
21922
|
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21924
|
-
|
|
21925
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21923
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21926
21924
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21925
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21927
21926
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21927
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21928
21928
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
21929
21929
|
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21930
21930
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -22000,10 +22000,10 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
22000
22000
|
}, z.core.$strip>;
|
|
22001
22001
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
22002
22002
|
id: z.ZodString;
|
|
22003
|
-
name: z.ZodString;
|
|
22004
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22005
22003
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22004
|
+
name: z.ZodString;
|
|
22006
22005
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22006
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22007
22007
|
models: z.ZodOptional<z.ZodObject<{
|
|
22008
22008
|
base: z.ZodOptional<z.ZodObject<{
|
|
22009
22009
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -22053,19 +22053,19 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
22053
22053
|
}, z.core.$strip>]>>>;
|
|
22054
22054
|
}, z.core.$strip>;
|
|
22055
22055
|
declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
22056
|
-
name: z.ZodString;
|
|
22057
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22058
22056
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22057
|
+
name: z.ZodString;
|
|
22059
22058
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22059
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22060
22060
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22061
22061
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22062
22062
|
id: z.ZodString;
|
|
22063
22063
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22064
22064
|
id: z.ZodString;
|
|
22065
|
-
name: z.ZodString;
|
|
22066
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22067
22065
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22066
|
+
name: z.ZodString;
|
|
22068
22067
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22068
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22069
22069
|
models: z.ZodOptional<z.ZodObject<{
|
|
22070
22070
|
base: z.ZodOptional<z.ZodObject<{
|
|
22071
22071
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -22193,12 +22193,12 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
22193
22193
|
id: z.ZodString;
|
|
22194
22194
|
}>, z.core.$strip>>>;
|
|
22195
22195
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22196
|
-
|
|
22197
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22196
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
22198
22197
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22198
|
+
name: z.ZodString;
|
|
22199
22199
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22200
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22200
22201
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
22201
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
22202
22202
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
22203
22203
|
jmespath?: string;
|
|
22204
22204
|
objectTransformation?: Record<string, string>;
|
|
@@ -22369,10 +22369,10 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
22369
22369
|
}>;
|
|
22370
22370
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
22371
22371
|
id: z.ZodString;
|
|
22372
|
-
name: z.ZodString;
|
|
22373
|
-
description: z.ZodNullable<z.ZodString>;
|
|
22374
22372
|
createdAt: z.ZodString;
|
|
22373
|
+
name: z.ZodString;
|
|
22375
22374
|
updatedAt: z.ZodString;
|
|
22375
|
+
description: z.ZodNullable<z.ZodString>;
|
|
22376
22376
|
models: z.ZodNullable<z.ZodObject<{
|
|
22377
22377
|
base: z.ZodObject<{
|
|
22378
22378
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -22469,19 +22469,19 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22469
22469
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
22470
22470
|
}, z.core.$strip>>;
|
|
22471
22471
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22472
|
-
name: z.ZodString;
|
|
22473
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22474
22472
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22473
|
+
name: z.ZodString;
|
|
22475
22474
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22475
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22476
22476
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22477
22477
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22478
22478
|
id: z.ZodString;
|
|
22479
22479
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22480
22480
|
id: z.ZodString;
|
|
22481
|
-
name: z.ZodString;
|
|
22482
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22483
22481
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22482
|
+
name: z.ZodString;
|
|
22484
22483
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22484
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22485
22485
|
models: z.ZodOptional<z.ZodObject<{
|
|
22486
22486
|
base: z.ZodOptional<z.ZodObject<{
|
|
22487
22487
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -22609,12 +22609,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22609
22609
|
id: z.ZodString;
|
|
22610
22610
|
}>, z.core.$strip>>>;
|
|
22611
22611
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22612
|
-
|
|
22613
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22612
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
22614
22613
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22614
|
+
name: z.ZodString;
|
|
22615
22615
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22616
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22616
22617
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
22617
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
22618
22618
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
22619
22619
|
jmespath?: string;
|
|
22620
22620
|
objectTransformation?: Record<string, string>;
|
|
@@ -22807,12 +22807,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22807
22807
|
}, z.core.$strip>>;
|
|
22808
22808
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22809
22809
|
id: z.ZodString;
|
|
22810
|
-
name: z.ZodString;
|
|
22811
22810
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22811
|
+
name: z.ZodString;
|
|
22812
22812
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22813
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22813
22814
|
credentialStoreId: z.ZodString;
|
|
22814
22815
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22815
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22816
22816
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22817
22817
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22818
22818
|
type: z.ZodEnum<{
|
|
@@ -22829,10 +22829,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22829
22829
|
}>;
|
|
22830
22830
|
declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
22831
22831
|
id: z.ZodString;
|
|
22832
|
-
name: z.ZodString;
|
|
22833
|
-
description: z.ZodNullable<z.ZodString>;
|
|
22834
22832
|
createdAt: z.ZodString;
|
|
22833
|
+
name: z.ZodString;
|
|
22835
22834
|
updatedAt: z.ZodString;
|
|
22835
|
+
description: z.ZodNullable<z.ZodString>;
|
|
22836
22836
|
models: z.ZodNullable<z.ZodType<{
|
|
22837
22837
|
base?: {
|
|
22838
22838
|
model?: string | undefined;
|
|
@@ -22922,10 +22922,10 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
22922
22922
|
}, z.core.$strip>;
|
|
22923
22923
|
declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
22924
22924
|
id: z.ZodString;
|
|
22925
|
-
name: z.ZodString;
|
|
22926
|
-
description: z.ZodNullable<z.ZodString>;
|
|
22927
22925
|
createdAt: z.ZodString;
|
|
22926
|
+
name: z.ZodString;
|
|
22928
22927
|
updatedAt: z.ZodString;
|
|
22928
|
+
description: z.ZodNullable<z.ZodString>;
|
|
22929
22929
|
models: z.ZodNullable<z.ZodType<{
|
|
22930
22930
|
base?: {
|
|
22931
22931
|
model?: string | undefined;
|
|
@@ -23021,18 +23021,18 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
23021
23021
|
}, z.core.$strip>;
|
|
23022
23022
|
declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
23023
23023
|
id: z.ZodString;
|
|
23024
|
-
name: z.ZodString;
|
|
23025
|
-
description: z.ZodNullable<z.ZodString>;
|
|
23026
23024
|
createdAt: z.ZodString;
|
|
23025
|
+
name: z.ZodString;
|
|
23027
23026
|
updatedAt: z.ZodString;
|
|
23027
|
+
description: z.ZodNullable<z.ZodString>;
|
|
23028
23028
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
23029
23029
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
23030
23030
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23031
23031
|
id: z.ZodString;
|
|
23032
|
-
name: z.ZodString;
|
|
23033
|
-
description: z.ZodNullable<z.ZodString>;
|
|
23034
23032
|
createdAt: z.ZodString;
|
|
23033
|
+
name: z.ZodString;
|
|
23035
23034
|
updatedAt: z.ZodString;
|
|
23035
|
+
description: z.ZodNullable<z.ZodString>;
|
|
23036
23036
|
models: z.ZodNullable<z.ZodType<{
|
|
23037
23037
|
base?: {
|
|
23038
23038
|
model?: string | undefined;
|
|
@@ -23166,12 +23166,12 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
23166
23166
|
}, z.core.$strip>>>;
|
|
23167
23167
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23168
23168
|
id: z.ZodString;
|
|
23169
|
-
name: z.ZodString;
|
|
23170
|
-
description: z.ZodNullable<z.ZodString>;
|
|
23171
|
-
agentId: z.ZodString;
|
|
23172
23169
|
createdAt: z.ZodString;
|
|
23170
|
+
name: z.ZodString;
|
|
23173
23171
|
updatedAt: z.ZodString;
|
|
23172
|
+
description: z.ZodNullable<z.ZodString>;
|
|
23174
23173
|
functionId: z.ZodString;
|
|
23174
|
+
agentId: z.ZodString;
|
|
23175
23175
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
23176
23176
|
}, z.core.$strip>>>;
|
|
23177
23177
|
functions: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
@@ -23227,10 +23227,10 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
23227
23227
|
}, z.core.$strip>;
|
|
23228
23228
|
declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
23229
23229
|
id: z.ZodString;
|
|
23230
|
-
name: z.ZodString;
|
|
23231
|
-
description: z.ZodNullable<z.ZodString>;
|
|
23232
23230
|
createdAt: z.ZodString;
|
|
23231
|
+
name: z.ZodString;
|
|
23233
23232
|
updatedAt: z.ZodString;
|
|
23233
|
+
description: z.ZodNullable<z.ZodString>;
|
|
23234
23234
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
23235
23235
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
23236
23236
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
@@ -23279,12 +23279,12 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
23279
23279
|
}, z.core.$strip>>>;
|
|
23280
23280
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23281
23281
|
id: z.ZodString;
|
|
23282
|
-
name: z.ZodString;
|
|
23283
|
-
description: z.ZodNullable<z.ZodString>;
|
|
23284
|
-
agentId: z.ZodString;
|
|
23285
23282
|
createdAt: z.ZodString;
|
|
23283
|
+
name: z.ZodString;
|
|
23286
23284
|
updatedAt: z.ZodString;
|
|
23285
|
+
description: z.ZodNullable<z.ZodString>;
|
|
23287
23286
|
functionId: z.ZodString;
|
|
23287
|
+
agentId: z.ZodString;
|
|
23288
23288
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
23289
23289
|
}, z.core.$strip>>>;
|
|
23290
23290
|
functions: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
@@ -23339,10 +23339,10 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
23339
23339
|
prompt: z.ZodNullable<z.ZodString>;
|
|
23340
23340
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23341
23341
|
id: z.ZodString;
|
|
23342
|
-
name: z.ZodString;
|
|
23343
|
-
description: z.ZodNullable<z.ZodString>;
|
|
23344
23342
|
createdAt: z.ZodString;
|
|
23343
|
+
name: z.ZodString;
|
|
23345
23344
|
updatedAt: z.ZodString;
|
|
23345
|
+
description: z.ZodNullable<z.ZodString>;
|
|
23346
23346
|
models: z.ZodNullable<z.ZodType<{
|
|
23347
23347
|
base?: {
|
|
23348
23348
|
model?: string | undefined;
|
|
@@ -23439,10 +23439,10 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
23439
23439
|
}, z.core.$strip>;
|
|
23440
23440
|
declare const FullProjectSelectSchema: z.ZodObject<{
|
|
23441
23441
|
id: z.ZodString;
|
|
23442
|
-
name: z.ZodString;
|
|
23443
|
-
description: z.ZodNullable<z.ZodString>;
|
|
23444
23442
|
createdAt: z.ZodString;
|
|
23443
|
+
name: z.ZodString;
|
|
23445
23444
|
updatedAt: z.ZodString;
|
|
23445
|
+
description: z.ZodNullable<z.ZodString>;
|
|
23446
23446
|
models: z.ZodNullable<z.ZodObject<{
|
|
23447
23447
|
base: z.ZodObject<{
|
|
23448
23448
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -23463,18 +23463,18 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23463
23463
|
}, z.core.$strip>>;
|
|
23464
23464
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23465
23465
|
id: z.ZodString;
|
|
23466
|
-
name: z.ZodString;
|
|
23467
|
-
description: z.ZodNullable<z.ZodString>;
|
|
23468
23466
|
createdAt: z.ZodString;
|
|
23467
|
+
name: z.ZodString;
|
|
23469
23468
|
updatedAt: z.ZodString;
|
|
23469
|
+
description: z.ZodNullable<z.ZodString>;
|
|
23470
23470
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
23471
23471
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
23472
23472
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23473
23473
|
id: z.ZodString;
|
|
23474
|
-
name: z.ZodString;
|
|
23475
|
-
description: z.ZodNullable<z.ZodString>;
|
|
23476
23474
|
createdAt: z.ZodString;
|
|
23475
|
+
name: z.ZodString;
|
|
23477
23476
|
updatedAt: z.ZodString;
|
|
23477
|
+
description: z.ZodNullable<z.ZodString>;
|
|
23478
23478
|
models: z.ZodNullable<z.ZodType<{
|
|
23479
23479
|
base?: {
|
|
23480
23480
|
model?: string | undefined;
|
|
@@ -23608,12 +23608,12 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23608
23608
|
}, z.core.$strip>>>;
|
|
23609
23609
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23610
23610
|
id: z.ZodString;
|
|
23611
|
-
name: z.ZodString;
|
|
23612
|
-
description: z.ZodNullable<z.ZodString>;
|
|
23613
|
-
agentId: z.ZodString;
|
|
23614
23611
|
createdAt: z.ZodString;
|
|
23612
|
+
name: z.ZodString;
|
|
23615
23613
|
updatedAt: z.ZodString;
|
|
23614
|
+
description: z.ZodNullable<z.ZodString>;
|
|
23616
23615
|
functionId: z.ZodString;
|
|
23616
|
+
agentId: z.ZodString;
|
|
23617
23617
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
23618
23618
|
}, z.core.$strip>>>;
|
|
23619
23619
|
functions: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
@@ -23697,12 +23697,12 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23697
23697
|
}>, z.core.$strip>>;
|
|
23698
23698
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23699
23699
|
id: z.ZodString;
|
|
23700
|
-
name: z.ZodString;
|
|
23701
|
-
description: z.ZodNullable<z.ZodString>;
|
|
23702
|
-
agentId: z.ZodString;
|
|
23703
23700
|
createdAt: z.ZodString;
|
|
23701
|
+
name: z.ZodString;
|
|
23704
23702
|
updatedAt: z.ZodString;
|
|
23703
|
+
description: z.ZodNullable<z.ZodString>;
|
|
23705
23704
|
functionId: z.ZodString;
|
|
23705
|
+
agentId: z.ZodString;
|
|
23706
23706
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
23707
23707
|
}, z.core.$strip>>>;
|
|
23708
23708
|
functions: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
@@ -23789,12 +23789,12 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23789
23789
|
}, z.core.$strip>>;
|
|
23790
23790
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23791
23791
|
id: z.ZodString;
|
|
23792
|
-
name: z.ZodString;
|
|
23793
23792
|
createdAt: z.ZodString;
|
|
23793
|
+
name: z.ZodString;
|
|
23794
23794
|
updatedAt: z.ZodString;
|
|
23795
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
23795
23796
|
credentialStoreId: z.ZodString;
|
|
23796
23797
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
23797
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
23798
23798
|
toolId: z.ZodNullable<z.ZodString>;
|
|
23799
23799
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
23800
23800
|
type: z.ZodEnum<{
|
|
@@ -24350,10 +24350,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
24350
24350
|
}>;
|
|
24351
24351
|
declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
24352
24352
|
id: z.ZodString;
|
|
24353
|
-
name: z.ZodString;
|
|
24354
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24355
24353
|
createdAt: z.ZodString;
|
|
24354
|
+
name: z.ZodString;
|
|
24356
24355
|
updatedAt: z.ZodString;
|
|
24356
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24357
24357
|
models: z.ZodNullable<z.ZodObject<{
|
|
24358
24358
|
base: z.ZodObject<{
|
|
24359
24359
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24402,12 +24402,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
24402
24402
|
}>, z.core.$strip>>;
|
|
24403
24403
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24404
24404
|
id: z.ZodString;
|
|
24405
|
-
name: z.ZodString;
|
|
24406
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24407
|
-
agentId: z.ZodString;
|
|
24408
24405
|
createdAt: z.ZodString;
|
|
24406
|
+
name: z.ZodString;
|
|
24409
24407
|
updatedAt: z.ZodString;
|
|
24408
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24410
24409
|
functionId: z.ZodString;
|
|
24410
|
+
agentId: z.ZodString;
|
|
24411
24411
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
24412
24412
|
}, z.core.$strip>>>;
|
|
24413
24413
|
functions: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
@@ -24494,12 +24494,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
24494
24494
|
}, z.core.$strip>>;
|
|
24495
24495
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24496
24496
|
id: z.ZodString;
|
|
24497
|
-
name: z.ZodString;
|
|
24498
24497
|
createdAt: z.ZodString;
|
|
24498
|
+
name: z.ZodString;
|
|
24499
24499
|
updatedAt: z.ZodString;
|
|
24500
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
24500
24501
|
credentialStoreId: z.ZodString;
|
|
24501
24502
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
24502
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
24503
24503
|
toolId: z.ZodNullable<z.ZodString>;
|
|
24504
24504
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
24505
24505
|
type: z.ZodEnum<{
|
|
@@ -25051,10 +25051,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25051
25051
|
}, z.core.$strip>>>;
|
|
25052
25052
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25053
25053
|
id: z.ZodString;
|
|
25054
|
-
name: z.ZodString;
|
|
25055
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25056
25054
|
createdAt: z.ZodString;
|
|
25055
|
+
name: z.ZodString;
|
|
25057
25056
|
updatedAt: z.ZodString;
|
|
25057
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25058
25058
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25059
25059
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25060
25060
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
@@ -25103,12 +25103,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25103
25103
|
}, z.core.$strip>>>;
|
|
25104
25104
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25105
25105
|
id: z.ZodString;
|
|
25106
|
-
name: z.ZodString;
|
|
25107
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25108
|
-
agentId: z.ZodString;
|
|
25109
25106
|
createdAt: z.ZodString;
|
|
25107
|
+
name: z.ZodString;
|
|
25110
25108
|
updatedAt: z.ZodString;
|
|
25109
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25111
25110
|
functionId: z.ZodString;
|
|
25111
|
+
agentId: z.ZodString;
|
|
25112
25112
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
25113
25113
|
}, z.core.$strip>>>;
|
|
25114
25114
|
functions: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
@@ -25163,10 +25163,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25163
25163
|
prompt: z.ZodNullable<z.ZodString>;
|
|
25164
25164
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25165
25165
|
id: z.ZodString;
|
|
25166
|
-
name: z.ZodString;
|
|
25167
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25168
25166
|
createdAt: z.ZodString;
|
|
25167
|
+
name: z.ZodString;
|
|
25169
25168
|
updatedAt: z.ZodString;
|
|
25169
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25170
25170
|
models: z.ZodNullable<z.ZodType<{
|
|
25171
25171
|
base?: {
|
|
25172
25172
|
model?: string | undefined;
|
|
@@ -25268,10 +25268,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25268
25268
|
declare const ProjectResponse: z.ZodObject<{
|
|
25269
25269
|
data: z.ZodObject<{
|
|
25270
25270
|
id: z.ZodString;
|
|
25271
|
-
name: z.ZodString;
|
|
25272
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25273
25271
|
createdAt: z.ZodString;
|
|
25272
|
+
name: z.ZodString;
|
|
25274
25273
|
updatedAt: z.ZodString;
|
|
25274
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25275
25275
|
models: z.ZodNullable<z.ZodObject<{
|
|
25276
25276
|
base: z.ZodObject<{
|
|
25277
25277
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25559,14 +25559,14 @@ declare const ContextConfigResponse: z.ZodObject<{
|
|
|
25559
25559
|
declare const ApiKeyResponse: z.ZodObject<{
|
|
25560
25560
|
data: z.ZodObject<{
|
|
25561
25561
|
id: z.ZodString;
|
|
25562
|
+
createdAt: z.ZodString;
|
|
25562
25563
|
name: z.ZodNullable<z.ZodString>;
|
|
25564
|
+
updatedAt: z.ZodString;
|
|
25565
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
25563
25566
|
agentId: z.ZodString;
|
|
25564
25567
|
publicId: z.ZodString;
|
|
25565
25568
|
keyPrefix: z.ZodString;
|
|
25566
25569
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
25567
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
25568
|
-
createdAt: z.ZodString;
|
|
25569
|
-
updatedAt: z.ZodString;
|
|
25570
25570
|
}, {
|
|
25571
25571
|
out: {};
|
|
25572
25572
|
in: {};
|
|
@@ -25575,12 +25575,12 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
25575
25575
|
declare const CredentialReferenceResponse: z.ZodObject<{
|
|
25576
25576
|
data: z.ZodObject<{
|
|
25577
25577
|
id: z.ZodString;
|
|
25578
|
-
name: z.ZodString;
|
|
25579
25578
|
createdAt: z.ZodString;
|
|
25579
|
+
name: z.ZodString;
|
|
25580
25580
|
updatedAt: z.ZodString;
|
|
25581
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
25581
25582
|
credentialStoreId: z.ZodString;
|
|
25582
25583
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
25583
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
25584
25584
|
toolId: z.ZodNullable<z.ZodString>;
|
|
25585
25585
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
25586
25586
|
type: z.ZodEnum<{
|
|
@@ -26146,12 +26146,12 @@ declare const FunctionResponse: z.ZodObject<{
|
|
|
26146
26146
|
declare const FunctionToolResponse: z.ZodObject<{
|
|
26147
26147
|
data: z.ZodObject<{
|
|
26148
26148
|
id: z.ZodString;
|
|
26149
|
-
name: z.ZodString;
|
|
26150
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26151
|
-
agentId: z.ZodString;
|
|
26152
26149
|
createdAt: z.ZodString;
|
|
26150
|
+
name: z.ZodString;
|
|
26153
26151
|
updatedAt: z.ZodString;
|
|
26152
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26154
26153
|
functionId: z.ZodString;
|
|
26154
|
+
agentId: z.ZodString;
|
|
26155
26155
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26156
26156
|
}, z.core.$strip>;
|
|
26157
26157
|
}, z.core.$strip>;
|
|
@@ -26253,19 +26253,19 @@ declare const ConversationResponse: z.ZodObject<{
|
|
|
26253
26253
|
agentId: z.ZodNullable<z.ZodString>;
|
|
26254
26254
|
activeSubAgentId: z.ZodString;
|
|
26255
26255
|
ref: z.ZodNullable<z.ZodType<{
|
|
26256
|
-
type: "
|
|
26256
|
+
type: "tag" | "commit" | "branch";
|
|
26257
26257
|
name: string;
|
|
26258
26258
|
hash: string;
|
|
26259
26259
|
}, {
|
|
26260
|
-
type: "
|
|
26260
|
+
type: "tag" | "commit" | "branch";
|
|
26261
26261
|
name: string;
|
|
26262
26262
|
hash: string;
|
|
26263
26263
|
}, z.core.$ZodTypeInternals<{
|
|
26264
|
-
type: "
|
|
26264
|
+
type: "tag" | "commit" | "branch";
|
|
26265
26265
|
name: string;
|
|
26266
26266
|
hash: string;
|
|
26267
26267
|
}, {
|
|
26268
|
-
type: "
|
|
26268
|
+
type: "tag" | "commit" | "branch";
|
|
26269
26269
|
name: string;
|
|
26270
26270
|
hash: string;
|
|
26271
26271
|
}>>>;
|
|
@@ -26350,10 +26350,10 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
26350
26350
|
declare const ProjectListResponse: z.ZodObject<{
|
|
26351
26351
|
data: z.ZodArray<z.ZodObject<{
|
|
26352
26352
|
id: z.ZodString;
|
|
26353
|
-
name: z.ZodString;
|
|
26354
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26355
26353
|
createdAt: z.ZodString;
|
|
26354
|
+
name: z.ZodString;
|
|
26356
26355
|
updatedAt: z.ZodString;
|
|
26356
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26357
26357
|
models: z.ZodNullable<z.ZodObject<{
|
|
26358
26358
|
base: z.ZodObject<{
|
|
26359
26359
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -26677,14 +26677,14 @@ declare const ContextConfigListResponse: z.ZodObject<{
|
|
|
26677
26677
|
declare const ApiKeyListResponse: z.ZodObject<{
|
|
26678
26678
|
data: z.ZodArray<z.ZodObject<{
|
|
26679
26679
|
id: z.ZodString;
|
|
26680
|
+
createdAt: z.ZodString;
|
|
26680
26681
|
name: z.ZodNullable<z.ZodString>;
|
|
26682
|
+
updatedAt: z.ZodString;
|
|
26683
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
26681
26684
|
agentId: z.ZodString;
|
|
26682
26685
|
publicId: z.ZodString;
|
|
26683
26686
|
keyPrefix: z.ZodString;
|
|
26684
26687
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
26685
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
26686
|
-
createdAt: z.ZodString;
|
|
26687
|
-
updatedAt: z.ZodString;
|
|
26688
26688
|
}, {
|
|
26689
26689
|
out: {};
|
|
26690
26690
|
in: {};
|
|
@@ -26699,12 +26699,12 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
26699
26699
|
declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
26700
26700
|
data: z.ZodArray<z.ZodObject<{
|
|
26701
26701
|
id: z.ZodString;
|
|
26702
|
-
name: z.ZodString;
|
|
26703
26702
|
createdAt: z.ZodString;
|
|
26703
|
+
name: z.ZodString;
|
|
26704
26704
|
updatedAt: z.ZodString;
|
|
26705
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
26705
26706
|
credentialStoreId: z.ZodString;
|
|
26706
26707
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26707
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
26708
26708
|
toolId: z.ZodNullable<z.ZodString>;
|
|
26709
26709
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
26710
26710
|
type: z.ZodEnum<{
|
|
@@ -27282,12 +27282,12 @@ declare const FunctionListResponse: z.ZodObject<{
|
|
|
27282
27282
|
declare const FunctionToolListResponse: z.ZodObject<{
|
|
27283
27283
|
data: z.ZodArray<z.ZodObject<{
|
|
27284
27284
|
id: z.ZodString;
|
|
27285
|
-
name: z.ZodString;
|
|
27286
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27287
|
-
agentId: z.ZodString;
|
|
27288
27285
|
createdAt: z.ZodString;
|
|
27286
|
+
name: z.ZodString;
|
|
27289
27287
|
updatedAt: z.ZodString;
|
|
27288
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27290
27289
|
functionId: z.ZodString;
|
|
27290
|
+
agentId: z.ZodString;
|
|
27291
27291
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
27292
27292
|
}, z.core.$strip>>;
|
|
27293
27293
|
pagination: z.ZodObject<{
|
|
@@ -27425,19 +27425,19 @@ declare const ConversationListResponse: z.ZodObject<{
|
|
|
27425
27425
|
agentId: z.ZodNullable<z.ZodString>;
|
|
27426
27426
|
activeSubAgentId: z.ZodString;
|
|
27427
27427
|
ref: z.ZodNullable<z.ZodType<{
|
|
27428
|
-
type: "
|
|
27428
|
+
type: "tag" | "commit" | "branch";
|
|
27429
27429
|
name: string;
|
|
27430
27430
|
hash: string;
|
|
27431
27431
|
}, {
|
|
27432
|
-
type: "
|
|
27432
|
+
type: "tag" | "commit" | "branch";
|
|
27433
27433
|
name: string;
|
|
27434
27434
|
hash: string;
|
|
27435
27435
|
}, z.core.$ZodTypeInternals<{
|
|
27436
|
-
type: "
|
|
27436
|
+
type: "tag" | "commit" | "branch";
|
|
27437
27437
|
name: string;
|
|
27438
27438
|
hash: string;
|
|
27439
27439
|
}, {
|
|
27440
|
-
type: "
|
|
27440
|
+
type: "tag" | "commit" | "branch";
|
|
27441
27441
|
name: string;
|
|
27442
27442
|
hash: string;
|
|
27443
27443
|
}>>>;
|
|
@@ -27623,19 +27623,19 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
27623
27623
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
27624
27624
|
}, z.core.$strip>>;
|
|
27625
27625
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27626
|
-
name: z.ZodString;
|
|
27627
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27628
27626
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
27627
|
+
name: z.ZodString;
|
|
27629
27628
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
27629
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27630
27630
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27631
27631
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27632
27632
|
id: z.ZodString;
|
|
27633
27633
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27634
27634
|
id: z.ZodString;
|
|
27635
|
-
name: z.ZodString;
|
|
27636
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27637
27635
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
27636
|
+
name: z.ZodString;
|
|
27638
27637
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
27638
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27639
27639
|
models: z.ZodOptional<z.ZodObject<{
|
|
27640
27640
|
base: z.ZodOptional<z.ZodObject<{
|
|
27641
27641
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -27763,12 +27763,12 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
27763
27763
|
id: z.ZodString;
|
|
27764
27764
|
}>, z.core.$strip>>>;
|
|
27765
27765
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27766
|
-
|
|
27767
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27766
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
27768
27767
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
27768
|
+
name: z.ZodString;
|
|
27769
27769
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
27770
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27770
27771
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
27771
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
27772
27772
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
27773
27773
|
jmespath?: string;
|
|
27774
27774
|
objectTransformation?: Record<string, string>;
|
|
@@ -27961,12 +27961,12 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
27961
27961
|
}, z.core.$strip>>;
|
|
27962
27962
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27963
27963
|
id: z.ZodString;
|
|
27964
|
-
name: z.ZodString;
|
|
27965
27964
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
27965
|
+
name: z.ZodString;
|
|
27966
27966
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
27967
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27967
27968
|
credentialStoreId: z.ZodString;
|
|
27968
27969
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
27969
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27970
27970
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27971
27971
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27972
27972
|
type: z.ZodEnum<{
|
|
@@ -27985,10 +27985,10 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
27985
27985
|
declare const FullProjectSelectResponse: z.ZodObject<{
|
|
27986
27986
|
data: z.ZodObject<{
|
|
27987
27987
|
id: z.ZodString;
|
|
27988
|
-
name: z.ZodString;
|
|
27989
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27990
27988
|
createdAt: z.ZodString;
|
|
27989
|
+
name: z.ZodString;
|
|
27991
27990
|
updatedAt: z.ZodString;
|
|
27991
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27992
27992
|
models: z.ZodNullable<z.ZodObject<{
|
|
27993
27993
|
base: z.ZodObject<{
|
|
27994
27994
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -28009,18 +28009,18 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28009
28009
|
}, z.core.$strip>>;
|
|
28010
28010
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28011
28011
|
id: z.ZodString;
|
|
28012
|
-
name: z.ZodString;
|
|
28013
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28014
28012
|
createdAt: z.ZodString;
|
|
28013
|
+
name: z.ZodString;
|
|
28015
28014
|
updatedAt: z.ZodString;
|
|
28015
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28016
28016
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28017
28017
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
28018
28018
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28019
28019
|
id: z.ZodString;
|
|
28020
|
-
name: z.ZodString;
|
|
28021
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28022
28020
|
createdAt: z.ZodString;
|
|
28021
|
+
name: z.ZodString;
|
|
28023
28022
|
updatedAt: z.ZodString;
|
|
28023
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28024
28024
|
models: z.ZodNullable<z.ZodType<{
|
|
28025
28025
|
base?: {
|
|
28026
28026
|
model?: string | undefined;
|
|
@@ -28154,12 +28154,12 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28154
28154
|
}, z.core.$strip>>>;
|
|
28155
28155
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28156
28156
|
id: z.ZodString;
|
|
28157
|
-
name: z.ZodString;
|
|
28158
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28159
|
-
agentId: z.ZodString;
|
|
28160
28157
|
createdAt: z.ZodString;
|
|
28158
|
+
name: z.ZodString;
|
|
28161
28159
|
updatedAt: z.ZodString;
|
|
28160
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28162
28161
|
functionId: z.ZodString;
|
|
28162
|
+
agentId: z.ZodString;
|
|
28163
28163
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
28164
28164
|
}, z.core.$strip>>>;
|
|
28165
28165
|
functions: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
@@ -28243,12 +28243,12 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28243
28243
|
}>, z.core.$strip>>;
|
|
28244
28244
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28245
28245
|
id: z.ZodString;
|
|
28246
|
-
name: z.ZodString;
|
|
28247
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28248
|
-
agentId: z.ZodString;
|
|
28249
28246
|
createdAt: z.ZodString;
|
|
28247
|
+
name: z.ZodString;
|
|
28250
28248
|
updatedAt: z.ZodString;
|
|
28249
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28251
28250
|
functionId: z.ZodString;
|
|
28251
|
+
agentId: z.ZodString;
|
|
28252
28252
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
28253
28253
|
}, z.core.$strip>>>;
|
|
28254
28254
|
functions: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
@@ -28335,12 +28335,12 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28335
28335
|
}, z.core.$strip>>;
|
|
28336
28336
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28337
28337
|
id: z.ZodString;
|
|
28338
|
-
name: z.ZodString;
|
|
28339
28338
|
createdAt: z.ZodString;
|
|
28339
|
+
name: z.ZodString;
|
|
28340
28340
|
updatedAt: z.ZodString;
|
|
28341
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
28341
28342
|
credentialStoreId: z.ZodString;
|
|
28342
28343
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28343
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
28344
28344
|
toolId: z.ZodNullable<z.ZodString>;
|
|
28345
28345
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
28346
28346
|
type: z.ZodEnum<{
|
|
@@ -28898,10 +28898,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28898
28898
|
declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
28899
28899
|
data: z.ZodObject<{
|
|
28900
28900
|
id: z.ZodString;
|
|
28901
|
-
name: z.ZodString;
|
|
28902
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28903
28901
|
createdAt: z.ZodString;
|
|
28902
|
+
name: z.ZodString;
|
|
28904
28903
|
updatedAt: z.ZodString;
|
|
28904
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28905
28905
|
models: z.ZodNullable<z.ZodObject<{
|
|
28906
28906
|
base: z.ZodObject<{
|
|
28907
28907
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -28950,12 +28950,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
28950
28950
|
}>, z.core.$strip>>;
|
|
28951
28951
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28952
28952
|
id: z.ZodString;
|
|
28953
|
-
name: z.ZodString;
|
|
28954
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28955
|
-
agentId: z.ZodString;
|
|
28956
28953
|
createdAt: z.ZodString;
|
|
28954
|
+
name: z.ZodString;
|
|
28957
28955
|
updatedAt: z.ZodString;
|
|
28956
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28958
28957
|
functionId: z.ZodString;
|
|
28958
|
+
agentId: z.ZodString;
|
|
28959
28959
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
28960
28960
|
}, z.core.$strip>>>;
|
|
28961
28961
|
functions: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
@@ -29042,12 +29042,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29042
29042
|
}, z.core.$strip>>;
|
|
29043
29043
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29044
29044
|
id: z.ZodString;
|
|
29045
|
-
name: z.ZodString;
|
|
29046
29045
|
createdAt: z.ZodString;
|
|
29046
|
+
name: z.ZodString;
|
|
29047
29047
|
updatedAt: z.ZodString;
|
|
29048
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
29048
29049
|
credentialStoreId: z.ZodString;
|
|
29049
29050
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29050
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
29051
29051
|
toolId: z.ZodNullable<z.ZodString>;
|
|
29052
29052
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
29053
29053
|
type: z.ZodEnum<{
|
|
@@ -29599,10 +29599,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29599
29599
|
}, z.core.$strip>>>;
|
|
29600
29600
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29601
29601
|
id: z.ZodString;
|
|
29602
|
-
name: z.ZodString;
|
|
29603
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29604
29602
|
createdAt: z.ZodString;
|
|
29603
|
+
name: z.ZodString;
|
|
29605
29604
|
updatedAt: z.ZodString;
|
|
29605
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29606
29606
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
29607
29607
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
29608
29608
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
@@ -29651,12 +29651,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29651
29651
|
}, z.core.$strip>>>;
|
|
29652
29652
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29653
29653
|
id: z.ZodString;
|
|
29654
|
-
name: z.ZodString;
|
|
29655
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29656
|
-
agentId: z.ZodString;
|
|
29657
29654
|
createdAt: z.ZodString;
|
|
29655
|
+
name: z.ZodString;
|
|
29658
29656
|
updatedAt: z.ZodString;
|
|
29657
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29659
29658
|
functionId: z.ZodString;
|
|
29659
|
+
agentId: z.ZodString;
|
|
29660
29660
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
29661
29661
|
}, z.core.$strip>>>;
|
|
29662
29662
|
functions: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
@@ -29711,10 +29711,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29711
29711
|
prompt: z.ZodNullable<z.ZodString>;
|
|
29712
29712
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29713
29713
|
id: z.ZodString;
|
|
29714
|
-
name: z.ZodString;
|
|
29715
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29716
29714
|
createdAt: z.ZodString;
|
|
29715
|
+
name: z.ZodString;
|
|
29717
29716
|
updatedAt: z.ZodString;
|
|
29717
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29718
29718
|
models: z.ZodNullable<z.ZodType<{
|
|
29719
29719
|
base?: {
|
|
29720
29720
|
model?: string | undefined;
|
|
@@ -29816,19 +29816,19 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29816
29816
|
}, z.core.$strip>;
|
|
29817
29817
|
declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
29818
29818
|
data: z.ZodObject<{
|
|
29819
|
-
name: z.ZodString;
|
|
29820
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29821
29819
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
29820
|
+
name: z.ZodString;
|
|
29822
29821
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
29822
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29823
29823
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29824
29824
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29825
29825
|
id: z.ZodString;
|
|
29826
29826
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29827
29827
|
id: z.ZodString;
|
|
29828
|
-
name: z.ZodString;
|
|
29829
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29830
29828
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
29829
|
+
name: z.ZodString;
|
|
29831
29830
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
29831
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29832
29832
|
models: z.ZodOptional<z.ZodObject<{
|
|
29833
29833
|
base: z.ZodOptional<z.ZodObject<{
|
|
29834
29834
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -29956,12 +29956,12 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
29956
29956
|
id: z.ZodString;
|
|
29957
29957
|
}>, z.core.$strip>>>;
|
|
29958
29958
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29959
|
-
|
|
29960
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29959
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
29961
29960
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
29961
|
+
name: z.ZodString;
|
|
29962
29962
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
29963
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29963
29964
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
29964
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
29965
29965
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
29966
29966
|
jmespath?: string;
|
|
29967
29967
|
objectTransformation?: Record<string, string>;
|
|
@@ -30023,18 +30023,18 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
30023
30023
|
declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
30024
30024
|
data: z.ZodObject<{
|
|
30025
30025
|
id: z.ZodString;
|
|
30026
|
-
name: z.ZodString;
|
|
30027
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30028
30026
|
createdAt: z.ZodString;
|
|
30027
|
+
name: z.ZodString;
|
|
30029
30028
|
updatedAt: z.ZodString;
|
|
30029
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30030
30030
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
30031
30031
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
30032
30032
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30033
30033
|
id: z.ZodString;
|
|
30034
|
-
name: z.ZodString;
|
|
30035
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30036
30034
|
createdAt: z.ZodString;
|
|
30035
|
+
name: z.ZodString;
|
|
30037
30036
|
updatedAt: z.ZodString;
|
|
30037
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30038
30038
|
models: z.ZodNullable<z.ZodType<{
|
|
30039
30039
|
base?: {
|
|
30040
30040
|
model?: string | undefined;
|
|
@@ -30168,12 +30168,12 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
30168
30168
|
}, z.core.$strip>>>;
|
|
30169
30169
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30170
30170
|
id: z.ZodString;
|
|
30171
|
-
name: z.ZodString;
|
|
30172
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30173
|
-
agentId: z.ZodString;
|
|
30174
30171
|
createdAt: z.ZodString;
|
|
30172
|
+
name: z.ZodString;
|
|
30175
30173
|
updatedAt: z.ZodString;
|
|
30174
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30176
30175
|
functionId: z.ZodString;
|
|
30176
|
+
agentId: z.ZodString;
|
|
30177
30177
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
30178
30178
|
}, z.core.$strip>>>;
|
|
30179
30179
|
functions: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|