@inkeep/agents-core 0.48.4 → 0.48.6

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.
@@ -820,8 +820,12 @@ declare const SubAgentApiInsertSchema: z.ZodObject<OmitAgentScope<{
820
820
  }>, z.core.$strip>;
821
821
  declare const SubAgentApiUpdateSchema: z.ZodObject<{
822
822
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
823
+ createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
824
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
823
825
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
824
826
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
827
+ prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
828
+ conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
825
829
  models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
826
830
  base: z.ZodOptional<z.ZodObject<{
827
831
  model: z.ZodOptional<z.ZodString>;
@@ -845,10 +849,6 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
845
849
  }, {
846
850
  stepCountIs?: number | undefined;
847
851
  }>>>>>>;
848
- createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
849
- updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
850
- prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
851
- conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
852
852
  }, z.core.$strip>;
853
853
  declare const SubAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
854
854
  createdAt: drizzle_orm_pg_core211.PgColumn<{
@@ -2482,7 +2482,7 @@ declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
2482
2482
  }, {}, {
2483
2483
  length: 256;
2484
2484
  }>;
2485
- }, "id" | "name" | "description" | "models" | "stopWhen" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "defaultSubAgentId" | "contextConfigId" | "prompt" | "statusUpdates">, undefined>, undefined>;
2485
+ }, "id" | "createdAt" | "updatedAt" | "name" | "description" | "defaultSubAgentId" | "tenantId" | "projectId" | "prompt" | "models" | "stopWhen" | "contextConfigId" | "statusUpdates">, undefined>, undefined>;
2486
2486
  declare const AgentUpdateSchema: z.ZodObject<{
2487
2487
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2488
2488
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -2749,8 +2749,12 @@ declare const AgentApiSelectSchema: z.ZodObject<OmitProjectScope<{
2749
2749
  id: z.ZodString;
2750
2750
  }>, z.core.$strip>;
2751
2751
  declare const AgentApiInsertSchema: z.ZodObject<{
2752
+ createdAt: z.ZodOptional<z.ZodString>;
2753
+ updatedAt: z.ZodOptional<z.ZodString>;
2752
2754
  name: z.ZodString;
2753
2755
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2756
+ defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2757
+ prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2754
2758
  models: z.ZodOptional<z.ZodNullable<z.ZodType<{
2755
2759
  base?: {
2756
2760
  model?: string | undefined;
@@ -2813,11 +2817,7 @@ declare const AgentApiInsertSchema: z.ZodObject<{
2813
2817
  }, {
2814
2818
  transferCountIs?: number | undefined;
2815
2819
  }>>>>;
2816
- createdAt: z.ZodOptional<z.ZodString>;
2817
- updatedAt: z.ZodOptional<z.ZodString>;
2818
- defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2819
2820
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2820
- prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2821
2821
  statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
2822
2822
  enabled?: boolean | undefined;
2823
2823
  numEvents?: number | undefined;
@@ -2879,8 +2879,12 @@ declare const AgentApiInsertSchema: z.ZodObject<{
2879
2879
  }, z.core.$strip>;
2880
2880
  declare const AgentApiUpdateSchema: z.ZodObject<{
2881
2881
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2882
+ createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
2883
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
2882
2884
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2883
2885
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2886
+ defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2887
+ prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2884
2888
  models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
2885
2889
  base?: {
2886
2890
  model?: string | undefined;
@@ -2943,11 +2947,7 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
2943
2947
  }, {
2944
2948
  transferCountIs?: number | undefined;
2945
2949
  }>>>>>>;
2946
- createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
2947
- updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
2948
- defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2949
2950
  contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2950
- prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2951
2951
  statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
2952
2952
  enabled?: boolean | undefined;
2953
2953
  numEvents?: number | undefined;
@@ -3070,9 +3070,9 @@ declare const TriggerOutputTransformSchema: z.ZodObject<{
3070
3070
  */
3071
3071
  declare const SignatureSourceSchema: z.ZodObject<{
3072
3072
  source: z.ZodEnum<{
3073
+ body: "body";
3073
3074
  query: "query";
3074
3075
  header: "header";
3075
- body: "body";
3076
3076
  }>;
3077
3077
  key: z.ZodString;
3078
3078
  prefix: z.ZodOptional<z.ZodString>;
@@ -3100,9 +3100,9 @@ declare const SignatureSourceSchema: z.ZodObject<{
3100
3100
  */
3101
3101
  declare const SignedComponentSchema: z.ZodObject<{
3102
3102
  source: z.ZodEnum<{
3103
- literal: "literal";
3104
- header: "header";
3105
3103
  body: "body";
3104
+ header: "header";
3105
+ literal: "literal";
3106
3106
  }>;
3107
3107
  key: z.ZodOptional<z.ZodString>;
3108
3108
  value: z.ZodOptional<z.ZodString>;
@@ -3210,9 +3210,9 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
3210
3210
  }>;
3211
3211
  signature: z.ZodObject<{
3212
3212
  source: z.ZodEnum<{
3213
+ body: "body";
3213
3214
  query: "query";
3214
3215
  header: "header";
3215
- body: "body";
3216
3216
  }>;
3217
3217
  key: z.ZodString;
3218
3218
  prefix: z.ZodOptional<z.ZodString>;
@@ -3220,9 +3220,9 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
3220
3220
  }, z.core.$strip>;
3221
3221
  signedComponents: z.ZodArray<z.ZodObject<{
3222
3222
  source: z.ZodEnum<{
3223
- literal: "literal";
3224
- header: "header";
3225
3223
  body: "body";
3224
+ header: "header";
3225
+ literal: "literal";
3226
3226
  }>;
3227
3227
  key: z.ZodOptional<z.ZodString>;
3228
3228
  value: z.ZodOptional<z.ZodString>;
@@ -3273,8 +3273,8 @@ type ComponentJoin = z.infer<typeof ComponentJoinSchema>;
3273
3273
  */
3274
3274
  type SignatureValidationOptions = z.infer<typeof SignatureValidationOptionsSchema>;
3275
3275
  declare const TriggerInvocationStatusEnum: z.ZodEnum<{
3276
- success: "success";
3277
3276
  pending: "pending";
3277
+ success: "success";
3278
3278
  failed: "failed";
3279
3279
  }>;
3280
3280
  declare const TriggerSelectSchema: z.ZodObject<{
@@ -3306,9 +3306,9 @@ declare const TriggerSelectSchema: z.ZodObject<{
3306
3306
  }>;
3307
3307
  signature: z.ZodObject<{
3308
3308
  source: z.ZodEnum<{
3309
+ body: "body";
3309
3310
  query: "query";
3310
3311
  header: "header";
3311
- body: "body";
3312
3312
  }>;
3313
3313
  key: z.ZodString;
3314
3314
  prefix: z.ZodOptional<z.ZodString>;
@@ -3316,9 +3316,9 @@ declare const TriggerSelectSchema: z.ZodObject<{
3316
3316
  }, z.core.$strip>;
3317
3317
  signedComponents: z.ZodArray<z.ZodObject<{
3318
3318
  source: z.ZodEnum<{
3319
- literal: "literal";
3320
- header: "header";
3321
3319
  body: "body";
3320
+ header: "header";
3321
+ literal: "literal";
3322
3322
  }>;
3323
3323
  key: z.ZodOptional<z.ZodString>;
3324
3324
  value: z.ZodOptional<z.ZodString>;
@@ -3501,13 +3501,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
3501
3501
  algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
3502
3502
  encoding: "hex" | "base64";
3503
3503
  signature: {
3504
- source: "query" | "header" | "body";
3504
+ source: "body" | "query" | "header";
3505
3505
  key: string;
3506
3506
  prefix?: string | undefined;
3507
3507
  regex?: string | undefined;
3508
3508
  };
3509
3509
  signedComponents: {
3510
- source: "literal" | "header" | "body";
3510
+ source: "body" | "header" | "literal";
3511
3511
  required: boolean;
3512
3512
  key?: string | undefined;
3513
3513
  value?: string | undefined;
@@ -3538,13 +3538,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
3538
3538
  algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
3539
3539
  encoding: "hex" | "base64";
3540
3540
  signature: {
3541
- source: "query" | "header" | "body";
3541
+ source: "body" | "query" | "header";
3542
3542
  key: string;
3543
3543
  prefix?: string | undefined;
3544
3544
  regex?: string | undefined;
3545
3545
  };
3546
3546
  signedComponents: {
3547
- source: "literal" | "header" | "body";
3547
+ source: "body" | "header" | "literal";
3548
3548
  required: boolean;
3549
3549
  key?: string | undefined;
3550
3550
  value?: string | undefined;
@@ -3833,13 +3833,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
3833
3833
  algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
3834
3834
  encoding: "hex" | "base64";
3835
3835
  signature: {
3836
- source: "query" | "header" | "body";
3836
+ source: "body" | "query" | "header";
3837
3837
  key: string;
3838
3838
  prefix?: string | undefined;
3839
3839
  regex?: string | undefined;
3840
3840
  };
3841
3841
  signedComponents: {
3842
- source: "literal" | "header" | "body";
3842
+ source: "body" | "header" | "literal";
3843
3843
  required: boolean;
3844
3844
  key?: string | undefined;
3845
3845
  value?: string | undefined;
@@ -3870,13 +3870,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
3870
3870
  algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
3871
3871
  encoding: "hex" | "base64";
3872
3872
  signature: {
3873
- source: "query" | "header" | "body";
3873
+ source: "body" | "query" | "header";
3874
3874
  key: string;
3875
3875
  prefix?: string | undefined;
3876
3876
  regex?: string | undefined;
3877
3877
  };
3878
3878
  signedComponents: {
3879
- source: "literal" | "header" | "body";
3879
+ source: "body" | "header" | "literal";
3880
3880
  required: boolean;
3881
3881
  key?: string | undefined;
3882
3882
  value?: string | undefined;
@@ -4005,7 +4005,7 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
4005
4005
  }, {}, {
4006
4006
  length: 256;
4007
4007
  }>;
4008
- }, "id" | "name" | "description" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "enabled" | "agentId" | "inputSchema" | "messageTemplate" | "outputTransform" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification">, undefined>, undefined>;
4008
+ }, "enabled" | "id" | "createdAt" | "updatedAt" | "name" | "description" | "tenantId" | "projectId" | "agentId" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification">, undefined>, undefined>;
4009
4009
  declare const TriggerUpdateSchema: z.ZodObject<{
4010
4010
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4011
4011
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -4055,9 +4055,9 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
4055
4055
  }>;
4056
4056
  signature: z.ZodObject<{
4057
4057
  source: z.ZodEnum<{
4058
+ body: "body";
4058
4059
  query: "query";
4059
4060
  header: "header";
4060
- body: "body";
4061
4061
  }>;
4062
4062
  key: z.ZodString;
4063
4063
  prefix: z.ZodOptional<z.ZodString>;
@@ -4065,9 +4065,9 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
4065
4065
  }, z.core.$strip>;
4066
4066
  signedComponents: z.ZodArray<z.ZodObject<{
4067
4067
  source: z.ZodEnum<{
4068
- literal: "literal";
4069
- header: "header";
4070
4068
  body: "body";
4069
+ header: "header";
4070
+ literal: "literal";
4071
4071
  }>;
4072
4072
  key: z.ZodOptional<z.ZodString>;
4073
4073
  value: z.ZodOptional<z.ZodString>;
@@ -4088,14 +4088,14 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
4088
4088
  }, z.core.$strip>>>;
4089
4089
  }>, z.core.$strip>;
4090
4090
  declare const TriggerApiInsertSchema: z.ZodObject<{
4091
- name: z.ZodString;
4092
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4091
+ enabled: z.ZodOptional<z.ZodBoolean>;
4093
4092
  createdAt: z.ZodOptional<z.ZodString>;
4094
4093
  updatedAt: z.ZodOptional<z.ZodString>;
4095
- enabled: z.ZodOptional<z.ZodBoolean>;
4094
+ name: z.ZodString;
4095
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4096
4096
  inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
4097
- messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4098
4097
  outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
4098
+ messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4099
4099
  authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
4100
4100
  signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4101
4101
  signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
@@ -4122,15 +4122,15 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
4122
4122
  in: {};
4123
4123
  }>;
4124
4124
  declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
4125
+ enabled: z.ZodBoolean;
4125
4126
  id: z.ZodString;
4126
- name: z.ZodString;
4127
- description: z.ZodNullable<z.ZodString>;
4128
4127
  createdAt: z.ZodString;
4129
4128
  updatedAt: z.ZodString;
4130
- enabled: z.ZodBoolean;
4129
+ name: z.ZodString;
4130
+ description: z.ZodNullable<z.ZodString>;
4131
4131
  inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
4132
- messageTemplate: z.ZodNullable<z.ZodString>;
4133
4132
  outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
4133
+ messageTemplate: z.ZodNullable<z.ZodString>;
4134
4134
  authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
4135
4135
  signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4136
4136
  signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -4147,9 +4147,9 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
4147
4147
  }>;
4148
4148
  signature: z.ZodObject<{
4149
4149
  source: z.ZodEnum<{
4150
+ body: "body";
4150
4151
  query: "query";
4151
4152
  header: "header";
4152
- body: "body";
4153
4153
  }>;
4154
4154
  key: z.ZodString;
4155
4155
  prefix: z.ZodOptional<z.ZodString>;
@@ -4157,9 +4157,9 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
4157
4157
  }, z.core.$strip>;
4158
4158
  signedComponents: z.ZodArray<z.ZodObject<{
4159
4159
  source: z.ZodEnum<{
4160
- literal: "literal";
4161
- header: "header";
4162
4160
  body: "body";
4161
+ header: "header";
4162
+ literal: "literal";
4163
4163
  }>;
4164
4164
  key: z.ZodOptional<z.ZodString>;
4165
4165
  value: z.ZodOptional<z.ZodString>;
@@ -4989,7 +4989,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert",
4989
4989
  }, {}, {
4990
4990
  length: 256;
4991
4991
  }>;
4992
- }, "id" | "createdAt" | "tenantId" | "projectId" | "agentId" | "status" | "triggerId" | "conversationId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
4992
+ }, "id" | "createdAt" | "status" | "tenantId" | "projectId" | "agentId" | "triggerId" | "conversationId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
4993
4993
  declare const TriggerInvocationUpdateSchema: z.ZodObject<{
4994
4994
  triggerId: z.ZodOptional<z.ZodString>;
4995
4995
  conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -5674,7 +5674,7 @@ declare const ScheduledTriggerInsertSchema: drizzle_zod19.BuildSchema<"insert",
5674
5674
  }, {}, {
5675
5675
  length: 256;
5676
5676
  }>;
5677
- }, "id" | "name" | "description" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "enabled" | "agentId" | "cronExpression" | "cronTimezone" | "runAt" | "payload" | "messageTemplate" | "maxRetries" | "retryDelaySeconds" | "timeoutSeconds">, undefined>, undefined>;
5677
+ }, "enabled" | "id" | "createdAt" | "updatedAt" | "name" | "description" | "tenantId" | "projectId" | "agentId" | "messageTemplate" | "cronExpression" | "cronTimezone" | "runAt" | "payload" | "maxRetries" | "retryDelaySeconds" | "timeoutSeconds">, undefined>, undefined>;
5678
5678
  declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
5679
5679
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5680
5680
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -5717,32 +5717,32 @@ declare const ScheduledTriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
5717
5717
  payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
5718
5718
  }>, z.core.$strip>;
5719
5719
  declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
5720
- name: z.ZodString;
5721
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5720
+ enabled: z.ZodOptional<z.ZodBoolean>;
5722
5721
  createdAt: z.ZodOptional<z.ZodString>;
5723
5722
  updatedAt: z.ZodOptional<z.ZodString>;
5724
- enabled: z.ZodOptional<z.ZodBoolean>;
5723
+ name: z.ZodString;
5724
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5725
+ messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5725
5726
  cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5726
5727
  cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5727
5728
  runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5728
5729
  payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
5729
- messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5730
5730
  maxRetries: z.ZodOptional<z.ZodNumber>;
5731
5731
  retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
5732
5732
  timeoutSeconds: z.ZodOptional<z.ZodNumber>;
5733
5733
  id: z.ZodOptional<z.ZodString>;
5734
5734
  }, z.core.$strip>;
5735
5735
  declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
5736
- name: z.ZodString;
5737
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5736
+ enabled: z.ZodOptional<z.ZodBoolean>;
5738
5737
  createdAt: z.ZodOptional<z.ZodString>;
5739
5738
  updatedAt: z.ZodOptional<z.ZodString>;
5740
- enabled: z.ZodOptional<z.ZodBoolean>;
5739
+ name: z.ZodString;
5740
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5741
+ messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5741
5742
  cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5742
5743
  cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5743
5744
  runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5744
5745
  payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
5745
- messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5746
5746
  maxRetries: z.ZodOptional<z.ZodNumber>;
5747
5747
  retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
5748
5748
  timeoutSeconds: z.ZodOptional<z.ZodNumber>;
@@ -6593,7 +6593,7 @@ declare const ScheduledWorkflowInsertSchema: drizzle_zod19.BuildSchema<"insert",
6593
6593
  }, {}, {
6594
6594
  length: 256;
6595
6595
  }>;
6596
- }, "id" | "name" | "description" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "agentId" | "status" | "workflowRunId" | "scheduledTriggerId">, undefined>, undefined>;
6596
+ }, "id" | "createdAt" | "updatedAt" | "name" | "status" | "description" | "tenantId" | "projectId" | "agentId" | "workflowRunId" | "scheduledTriggerId">, undefined>, undefined>;
6597
6597
  declare const ScheduledWorkflowUpdateSchema: z.ZodObject<{
6598
6598
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6599
6599
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -6624,11 +6624,11 @@ declare const ScheduledWorkflowApiSelectSchema: z.ZodObject<OmitAgentScope<{
6624
6624
  id: z.ZodString;
6625
6625
  }>, z.core.$strip>;
6626
6626
  declare const ScheduledWorkflowApiInsertSchema: z.ZodObject<{
6627
- name: z.ZodString;
6628
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6629
6627
  createdAt: z.ZodOptional<z.ZodString>;
6630
6628
  updatedAt: z.ZodOptional<z.ZodString>;
6629
+ name: z.ZodString;
6631
6630
  status: z.ZodOptional<z.ZodString>;
6631
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6632
6632
  workflowRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6633
6633
  scheduledTriggerId: z.ZodString;
6634
6634
  id: z.ZodOptional<z.ZodString>;
@@ -7200,7 +7200,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
7200
7200
  }, {}, {
7201
7201
  length: 256;
7202
7202
  }>;
7203
- }, "id" | "createdAt" | "tenantId" | "projectId" | "agentId" | "status" | "scheduledTriggerId" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "conversationIds" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
7203
+ }, "id" | "createdAt" | "status" | "tenantId" | "projectId" | "agentId" | "scheduledTriggerId" | "conversationIds" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
7204
7204
  declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
7205
7205
  scheduledTriggerId: z.ZodOptional<z.ZodString>;
7206
7206
  status: z.ZodOptional<z.ZodString>;
@@ -7246,11 +7246,11 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
7246
7246
  createdAt: z.ZodOptional<z.ZodString>;
7247
7247
  status: z.ZodString;
7248
7248
  scheduledTriggerId: z.ZodString;
7249
+ conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
7249
7250
  scheduledFor: z.ZodString;
7250
7251
  startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7251
7252
  completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7252
7253
  resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
7253
- conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
7254
7254
  attemptNumber: z.ZodOptional<z.ZodInt>;
7255
7255
  idempotencyKey: z.ZodString;
7256
7256
  id: z.ZodString;
@@ -7260,11 +7260,11 @@ declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
7260
7260
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
7261
7261
  status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7262
7262
  scheduledTriggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7263
+ conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
7263
7264
  scheduledFor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7264
7265
  startedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
7265
7266
  completedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
7266
7267
  resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
7267
- conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
7268
7268
  attemptNumber: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodInt>>>;
7269
7269
  idempotencyKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7270
7270
  }, z.core.$strip>;
@@ -7332,7 +7332,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
7332
7332
  dataType: "json";
7333
7333
  columnType: "PgJsonb";
7334
7334
  data: {
7335
- type: "commit" | "tag" | "branch";
7335
+ type: "tag" | "commit" | "branch";
7336
7336
  name: string;
7337
7337
  hash: string;
7338
7338
  };
@@ -7348,7 +7348,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
7348
7348
  generated: undefined;
7349
7349
  }, {}, {
7350
7350
  $type: {
7351
- type: "commit" | "tag" | "branch";
7351
+ type: "tag" | "commit" | "branch";
7352
7352
  name: string;
7353
7353
  hash: string;
7354
7354
  };
@@ -7546,7 +7546,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
7546
7546
  dataType: "json";
7547
7547
  columnType: "PgJsonb";
7548
7548
  data: {
7549
- type: "commit" | "tag" | "branch";
7549
+ type: "tag" | "commit" | "branch";
7550
7550
  name: string;
7551
7551
  hash: string;
7552
7552
  };
@@ -7562,7 +7562,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
7562
7562
  generated: undefined;
7563
7563
  }, {}, {
7564
7564
  $type: {
7565
- type: "commit" | "tag" | "branch";
7565
+ type: "tag" | "commit" | "branch";
7566
7566
  name: string;
7567
7567
  hash: string;
7568
7568
  };
@@ -7715,8 +7715,8 @@ declare const TaskInsertSchema: z.ZodObject<{
7715
7715
  conversationId: z.ZodOptional<z.ZodString>;
7716
7716
  ref: z.ZodObject<{
7717
7717
  type: z.ZodEnum<{
7718
- commit: "commit";
7719
7718
  tag: "tag";
7719
+ commit: "commit";
7720
7720
  branch: "branch";
7721
7721
  }>;
7722
7722
  name: z.ZodString;
@@ -7740,8 +7740,8 @@ declare const TaskUpdateSchema: z.ZodObject<{
7740
7740
  conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7741
7741
  ref: z.ZodOptional<z.ZodObject<{
7742
7742
  type: z.ZodEnum<{
7743
- commit: "commit";
7744
7743
  tag: "tag";
7744
+ commit: "commit";
7745
7745
  branch: "branch";
7746
7746
  }>;
7747
7747
  name: z.ZodString;
@@ -7756,19 +7756,19 @@ declare const TaskApiSelectSchema: z.ZodObject<OmitProjectScope<{
7756
7756
  updatedAt: z.ZodString;
7757
7757
  contextId: z.ZodString;
7758
7758
  ref: z.ZodNullable<z.ZodType<{
7759
- type: "commit" | "tag" | "branch";
7759
+ type: "tag" | "commit" | "branch";
7760
7760
  name: string;
7761
7761
  hash: string;
7762
7762
  }, {
7763
- type: "commit" | "tag" | "branch";
7763
+ type: "tag" | "commit" | "branch";
7764
7764
  name: string;
7765
7765
  hash: string;
7766
7766
  }, z.core.$ZodTypeInternals<{
7767
- type: "commit" | "tag" | "branch";
7767
+ type: "tag" | "commit" | "branch";
7768
7768
  name: string;
7769
7769
  hash: string;
7770
7770
  }, {
7771
- type: "commit" | "tag" | "branch";
7771
+ type: "tag" | "commit" | "branch";
7772
7772
  name: string;
7773
7773
  hash: string;
7774
7774
  }>>>;
@@ -7794,8 +7794,8 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
7794
7794
  conversationId: z.ZodOptional<z.ZodString>;
7795
7795
  ref: z.ZodObject<{
7796
7796
  type: z.ZodEnum<{
7797
- commit: "commit";
7798
7797
  tag: "tag";
7798
+ commit: "commit";
7799
7799
  branch: "branch";
7800
7800
  }>;
7801
7801
  name: z.ZodString;
@@ -7803,22 +7803,22 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
7803
7803
  }, z.core.$strip>;
7804
7804
  }>, z.core.$strip>;
7805
7805
  declare const TaskApiUpdateSchema: z.ZodObject<{
7806
+ metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
7806
7807
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7807
7808
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
7808
7809
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
7809
- metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
7810
- agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7811
- subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7812
7810
  status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7811
+ agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7813
7812
  ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
7814
7813
  type: z.ZodEnum<{
7815
- commit: "commit";
7816
7814
  tag: "tag";
7815
+ commit: "commit";
7817
7816
  branch: "branch";
7818
7817
  }>;
7819
7818
  name: z.ZodString;
7820
7819
  hash: z.ZodString;
7821
7820
  }, z.core.$strip>>>;
7821
+ subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7822
7822
  conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
7823
7823
  contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7824
7824
  }, z.core.$strip>;
@@ -8901,7 +8901,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
8901
8901
  dataType: "json";
8902
8902
  columnType: "PgJsonb";
8903
8903
  data: {
8904
- type: "commit" | "tag" | "branch";
8904
+ type: "tag" | "commit" | "branch";
8905
8905
  name: string;
8906
8906
  hash: string;
8907
8907
  };
@@ -8917,7 +8917,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
8917
8917
  generated: undefined;
8918
8918
  }, {}, {
8919
8919
  $type: {
8920
- type: "commit" | "tag" | "branch";
8920
+ type: "tag" | "commit" | "branch";
8921
8921
  name: string;
8922
8922
  hash: string;
8923
8923
  };
@@ -9130,7 +9130,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
9130
9130
  dataType: "json";
9131
9131
  columnType: "PgJsonb";
9132
9132
  data: {
9133
- type: "commit" | "tag" | "branch";
9133
+ type: "tag" | "commit" | "branch";
9134
9134
  name: string;
9135
9135
  hash: string;
9136
9136
  };
@@ -9146,7 +9146,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
9146
9146
  generated: undefined;
9147
9147
  }, {}, {
9148
9148
  $type: {
9149
- type: "commit" | "tag" | "branch";
9149
+ type: "tag" | "commit" | "branch";
9150
9150
  name: string;
9151
9151
  hash: string;
9152
9152
  };
@@ -9277,8 +9277,8 @@ declare const ConversationInsertSchema: z.ZodObject<{
9277
9277
  contextConfigId: z.ZodOptional<z.ZodString>;
9278
9278
  ref: z.ZodObject<{
9279
9279
  type: z.ZodEnum<{
9280
- commit: "commit";
9281
9280
  tag: "tag";
9281
+ commit: "commit";
9282
9282
  branch: "branch";
9283
9283
  }>;
9284
9284
  name: z.ZodString;
@@ -9303,8 +9303,8 @@ declare const ConversationUpdateSchema: z.ZodObject<{
9303
9303
  contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9304
9304
  ref: z.ZodOptional<z.ZodObject<{
9305
9305
  type: z.ZodEnum<{
9306
- commit: "commit";
9307
9306
  tag: "tag";
9307
+ commit: "commit";
9308
9308
  branch: "branch";
9309
9309
  }>;
9310
9310
  name: z.ZodString;
@@ -9321,19 +9321,19 @@ declare const ConversationApiSelectSchema: z.ZodObject<OmitProjectScope<{
9321
9321
  agentId: z.ZodNullable<z.ZodString>;
9322
9322
  activeSubAgentId: z.ZodString;
9323
9323
  ref: z.ZodNullable<z.ZodType<{
9324
- type: "commit" | "tag" | "branch";
9324
+ type: "tag" | "commit" | "branch";
9325
9325
  name: string;
9326
9326
  hash: string;
9327
9327
  }, {
9328
- type: "commit" | "tag" | "branch";
9328
+ type: "tag" | "commit" | "branch";
9329
9329
  name: string;
9330
9330
  hash: string;
9331
9331
  }, z.core.$ZodTypeInternals<{
9332
- type: "commit" | "tag" | "branch";
9332
+ type: "tag" | "commit" | "branch";
9333
9333
  name: string;
9334
9334
  hash: string;
9335
9335
  }, {
9336
- type: "commit" | "tag" | "branch";
9336
+ type: "tag" | "commit" | "branch";
9337
9337
  name: string;
9338
9338
  hash: string;
9339
9339
  }>>>;
@@ -9359,8 +9359,8 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
9359
9359
  contextConfigId: z.ZodOptional<z.ZodString>;
9360
9360
  ref: z.ZodObject<{
9361
9361
  type: z.ZodEnum<{
9362
- commit: "commit";
9363
9362
  tag: "tag";
9363
+ commit: "commit";
9364
9364
  branch: "branch";
9365
9365
  }>;
9366
9366
  name: z.ZodString;
@@ -9368,18 +9368,18 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
9368
9368
  }, z.core.$strip>;
9369
9369
  }>, z.core.$strip>;
9370
9370
  declare const ConversationApiUpdateSchema: z.ZodObject<{
9371
+ metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
9371
9372
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9372
- title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
9373
+ userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
9373
9374
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
9374
9375
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
9375
- contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
9376
- metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
9377
9376
  agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
9378
- userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
9377
+ title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
9378
+ contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
9379
9379
  ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
9380
9380
  type: z.ZodEnum<{
9381
- commit: "commit";
9382
9381
  tag: "tag";
9382
+ commit: "commit";
9383
9383
  branch: "branch";
9384
9384
  }>;
9385
9385
  name: z.ZodString;
@@ -10280,12 +10280,12 @@ declare const MessageApiInsertSchema: z.ZodObject<OmitProjectScope<{
10280
10280
  taskId: z.ZodOptional<z.ZodString>;
10281
10281
  }>, z.core.$strip>;
10282
10282
  declare const MessageApiUpdateSchema: z.ZodObject<{
10283
+ metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
10283
10284
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
10285
+ role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
10284
10286
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
10285
10287
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
10286
- metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
10287
10288
  content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
10288
- role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
10289
10289
  fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
10290
10290
  toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
10291
10291
  fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
@@ -10398,7 +10398,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
10398
10398
  dataType: "json";
10399
10399
  columnType: "PgJsonb";
10400
10400
  data: {
10401
- type: "commit" | "tag" | "branch";
10401
+ type: "tag" | "commit" | "branch";
10402
10402
  name: string;
10403
10403
  hash: string;
10404
10404
  };
@@ -10414,7 +10414,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
10414
10414
  generated: undefined;
10415
10415
  }, {}, {
10416
10416
  $type: {
10417
- type: "commit" | "tag" | "branch";
10417
+ type: "tag" | "commit" | "branch";
10418
10418
  name: string;
10419
10419
  hash: string;
10420
10420
  };
@@ -10648,7 +10648,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
10648
10648
  dataType: "json";
10649
10649
  columnType: "PgJsonb";
10650
10650
  data: {
10651
- type: "commit" | "tag" | "branch";
10651
+ type: "tag" | "commit" | "branch";
10652
10652
  name: string;
10653
10653
  hash: string;
10654
10654
  };
@@ -10664,7 +10664,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
10664
10664
  generated: undefined;
10665
10665
  }, {}, {
10666
10666
  $type: {
10667
- type: "commit" | "tag" | "branch";
10667
+ type: "tag" | "commit" | "branch";
10668
10668
  name: string;
10669
10669
  hash: string;
10670
10670
  };
@@ -10816,8 +10816,8 @@ declare const ContextCacheInsertSchema: z.ZodObject<{
10816
10816
  id: z.ZodString;
10817
10817
  ref: z.ZodObject<{
10818
10818
  type: z.ZodEnum<{
10819
- commit: "commit";
10820
10819
  tag: "tag";
10820
+ commit: "commit";
10821
10821
  branch: "branch";
10822
10822
  }>;
10823
10823
  name: z.ZodString;
@@ -10842,8 +10842,8 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
10842
10842
  id: z.ZodOptional<z.ZodString>;
10843
10843
  ref: z.ZodOptional<z.ZodObject<{
10844
10844
  type: z.ZodEnum<{
10845
- commit: "commit";
10846
10845
  tag: "tag";
10846
+ commit: "commit";
10847
10847
  branch: "branch";
10848
10848
  }>;
10849
10849
  name: z.ZodString;
@@ -10860,19 +10860,19 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<OmitProjectScope<{
10860
10860
  contextConfigId: z.ZodString;
10861
10861
  contextVariableKey: z.ZodString;
10862
10862
  ref: z.ZodNullable<z.ZodType<{
10863
- type: "commit" | "tag" | "branch";
10863
+ type: "tag" | "commit" | "branch";
10864
10864
  name: string;
10865
10865
  hash: string;
10866
10866
  }, {
10867
- type: "commit" | "tag" | "branch";
10867
+ type: "tag" | "commit" | "branch";
10868
10868
  name: string;
10869
10869
  hash: string;
10870
10870
  }, z.core.$ZodTypeInternals<{
10871
- type: "commit" | "tag" | "branch";
10871
+ type: "tag" | "commit" | "branch";
10872
10872
  name: string;
10873
10873
  hash: string;
10874
10874
  }, {
10875
- type: "commit" | "tag" | "branch";
10875
+ type: "tag" | "commit" | "branch";
10876
10876
  name: string;
10877
10877
  hash: string;
10878
10878
  }>>>;
@@ -10899,8 +10899,8 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
10899
10899
  id: z.ZodString;
10900
10900
  ref: z.ZodObject<{
10901
10901
  type: z.ZodEnum<{
10902
- commit: "commit";
10903
10902
  tag: "tag";
10903
+ commit: "commit";
10904
10904
  branch: "branch";
10905
10905
  }>;
10906
10906
  name: z.ZodString;
@@ -10909,14 +10909,14 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
10909
10909
  }>, z.core.$strip>;
10910
10910
  declare const ContextCacheApiUpdateSchema: z.ZodObject<{
10911
10911
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
10912
- value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
10913
10912
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
10914
10913
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
10914
+ value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
10915
10915
  contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
10916
10916
  ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
10917
10917
  type: z.ZodEnum<{
10918
- commit: "commit";
10919
10918
  tag: "tag";
10919
+ commit: "commit";
10920
10920
  branch: "branch";
10921
10921
  }>;
10922
10922
  name: z.ZodString;
@@ -11255,15 +11255,15 @@ declare const DatasetRunApiInsertSchema: z.ZodObject<{
11255
11255
  createdAt: z.ZodOptional<z.ZodString>;
11256
11256
  updatedAt: z.ZodOptional<z.ZodString>;
11257
11257
  datasetId: z.ZodString;
11258
- datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11259
11258
  evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11259
+ datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11260
11260
  }, z.core.$strip>;
11261
11261
  declare const DatasetRunApiUpdateSchema: z.ZodObject<{
11262
11262
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
11263
11263
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
11264
11264
  datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11265
- datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
11266
11265
  evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
11266
+ datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
11267
11267
  }, z.core.$strip>;
11268
11268
  declare const DatasetRunConversationRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
11269
11269
  createdAt: drizzle_orm_pg_core211.PgColumn<{
@@ -11970,16 +11970,16 @@ declare const EvaluationResultApiInsertSchema: z.ZodObject<{
11970
11970
  output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
11971
11971
  createdAt: z.ZodOptional<z.ZodString>;
11972
11972
  updatedAt: z.ZodOptional<z.ZodString>;
11973
- conversationId: z.ZodString;
11974
11973
  evaluatorId: z.ZodString;
11974
+ conversationId: z.ZodString;
11975
11975
  evaluationRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11976
11976
  }, z.core.$strip>;
11977
11977
  declare const EvaluationResultApiUpdateSchema: z.ZodObject<{
11978
11978
  output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
11979
11979
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
11980
11980
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
11981
- conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11982
11981
  evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11982
+ conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11983
11983
  evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
11984
11984
  }, z.core.$strip>;
11985
11985
  declare const EvaluationRunSelectSchema: drizzle_zod19.BuildSchema<"select", {
@@ -12271,14 +12271,14 @@ declare const EvaluationRunApiSelectSchema: z.ZodObject<OmitProjectScope<{
12271
12271
  declare const EvaluationRunApiInsertSchema: z.ZodObject<{
12272
12272
  createdAt: z.ZodOptional<z.ZodString>;
12273
12273
  updatedAt: z.ZodOptional<z.ZodString>;
12274
- evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12275
12274
  evaluationRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12275
+ evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12276
12276
  }, z.core.$strip>;
12277
12277
  declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
12278
12278
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
12279
12279
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
12280
- evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
12281
12280
  evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
12281
+ evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
12282
12282
  }, z.core.$strip>;
12283
12283
  declare const EvaluationRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
12284
12284
  createdAt: drizzle_orm_pg_core211.PgColumn<{
@@ -12608,27 +12608,27 @@ declare const EvaluationRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
12608
12608
  id: z.ZodString;
12609
12609
  }>, z.core.$strip>;
12610
12610
  declare const EvaluationRunConfigApiInsertSchema: z.ZodObject<{
12611
- name: z.ZodString;
12612
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12613
12611
  createdAt: z.ZodOptional<z.ZodString>;
12614
12612
  updatedAt: z.ZodOptional<z.ZodString>;
12613
+ name: z.ZodString;
12614
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12615
12615
  isActive: z.ZodOptional<z.ZodBoolean>;
12616
12616
  suiteConfigIds: z.ZodArray<z.ZodString>;
12617
12617
  }, z.core.$strip>;
12618
12618
  declare const EvaluationRunConfigApiUpdateSchema: z.ZodObject<{
12619
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12620
- description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
12621
12619
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
12622
12620
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
12621
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12622
+ description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
12623
12623
  isActive: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
12624
12624
  suiteConfigIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
12625
12625
  }, z.core.$strip>;
12626
12626
  declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
12627
12627
  id: z.ZodString;
12628
- name: z.ZodString;
12629
- description: z.ZodNullable<z.ZodString>;
12630
12628
  createdAt: z.ZodString;
12631
12629
  updatedAt: z.ZodString;
12630
+ name: z.ZodString;
12631
+ description: z.ZodNullable<z.ZodString>;
12632
12632
  isActive: z.ZodBoolean;
12633
12633
  suiteConfigIds: z.ZodArray<z.ZodString>;
12634
12634
  }, z.core.$strip>;
@@ -13665,14 +13665,14 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiSelectSchema: z
13665
13665
  declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiInsertSchema: z.ZodObject<{
13666
13666
  createdAt: z.ZodOptional<z.ZodString>;
13667
13667
  updatedAt: z.ZodOptional<z.ZodString>;
13668
- evaluationRunConfigId: z.ZodString;
13669
13668
  evaluationSuiteConfigId: z.ZodString;
13669
+ evaluationRunConfigId: z.ZodString;
13670
13670
  }, z.core.$strip>;
13671
13671
  declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiUpdateSchema: z.ZodObject<{
13672
13672
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
13673
13673
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
13674
- evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13675
13674
  evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13675
+ evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13676
13676
  }, z.core.$strip>;
13677
13677
  declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
13678
13678
  createdAt: drizzle_orm_pg_core211.PgColumn<{
@@ -13971,14 +13971,14 @@ declare const EvaluationJobConfigEvaluatorRelationApiSelectSchema: z.ZodObject<O
13971
13971
  declare const EvaluationJobConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
13972
13972
  createdAt: z.ZodOptional<z.ZodString>;
13973
13973
  updatedAt: z.ZodOptional<z.ZodString>;
13974
- evaluationJobConfigId: z.ZodString;
13975
13974
  evaluatorId: z.ZodString;
13975
+ evaluationJobConfigId: z.ZodString;
13976
13976
  }, z.core.$strip>;
13977
13977
  declare const EvaluationJobConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
13978
13978
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
13979
13979
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
13980
- evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13981
13980
  evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13981
+ evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13982
13982
  }, z.core.$strip>;
13983
13983
  declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
13984
13984
  createdAt: drizzle_orm_pg_core211.PgColumn<{
@@ -14277,14 +14277,14 @@ declare const EvaluationSuiteConfigEvaluatorRelationApiSelectSchema: z.ZodObject
14277
14277
  declare const EvaluationSuiteConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
14278
14278
  createdAt: z.ZodOptional<z.ZodString>;
14279
14279
  updatedAt: z.ZodOptional<z.ZodString>;
14280
- evaluatorId: z.ZodString;
14281
14280
  evaluationSuiteConfigId: z.ZodString;
14281
+ evaluatorId: z.ZodString;
14282
14282
  }, z.core.$strip>;
14283
14283
  declare const EvaluationSuiteConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
14284
14284
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
14285
14285
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
14286
- evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
14287
14286
  evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
14287
+ evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
14288
14288
  }, z.core.$strip>;
14289
14289
  declare const EvaluatorSelectSchema: drizzle_zod19.BuildSchema<"select", {
14290
14290
  createdAt: drizzle_orm_pg_core211.PgColumn<{
@@ -14785,8 +14785,12 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<OmitProjectScope<{
14785
14785
  id: z.ZodString;
14786
14786
  }>, z.core.$strip>;
14787
14787
  declare const EvaluatorApiInsertSchema: z.ZodObject<{
14788
+ createdAt: z.ZodOptional<z.ZodString>;
14789
+ updatedAt: z.ZodOptional<z.ZodString>;
14788
14790
  name: z.ZodString;
14791
+ schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
14789
14792
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14793
+ prompt: z.ZodString;
14790
14794
  model: z.ZodType<{
14791
14795
  model?: string | undefined;
14792
14796
  providerOptions?: Record<string, any> | undefined;
@@ -14800,15 +14804,15 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
14800
14804
  model?: string | undefined;
14801
14805
  providerOptions?: Record<string, any> | undefined;
14802
14806
  }>>;
14803
- createdAt: z.ZodOptional<z.ZodString>;
14804
- updatedAt: z.ZodOptional<z.ZodString>;
14805
- schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
14806
- prompt: z.ZodString;
14807
14807
  passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
14808
14808
  }, z.core.$strip>;
14809
14809
  declare const EvaluatorApiUpdateSchema: z.ZodObject<{
14810
+ createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
14811
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
14810
14812
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
14813
+ schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
14811
14814
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
14815
+ prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
14812
14816
  model: z.ZodOptional<z.ZodOptional<z.ZodType<{
14813
14817
  model?: string | undefined;
14814
14818
  providerOptions?: Record<string, any> | undefined;
@@ -14822,10 +14826,6 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
14822
14826
  model?: string | undefined;
14823
14827
  providerOptions?: Record<string, any> | undefined;
14824
14828
  }>>>>;
14825
- createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
14826
- updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
14827
- schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
14828
- prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
14829
14829
  passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
14830
14830
  }, z.core.$strip>;
14831
14831
  declare const DatasetSelectSchema: drizzle_zod19.BuildSchema<"select", {
@@ -15082,14 +15082,14 @@ declare const DatasetApiSelectSchema: z.ZodObject<OmitProjectScope<{
15082
15082
  id: z.ZodString;
15083
15083
  }>, z.core.$strip>;
15084
15084
  declare const DatasetApiInsertSchema: z.ZodObject<{
15085
- name: z.ZodString;
15086
15085
  createdAt: z.ZodOptional<z.ZodString>;
15087
15086
  updatedAt: z.ZodOptional<z.ZodString>;
15087
+ name: z.ZodString;
15088
15088
  }, z.core.$strip>;
15089
15089
  declare const DatasetApiUpdateSchema: z.ZodObject<{
15090
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
15091
15090
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
15092
15091
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
15092
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
15093
15093
  }, z.core.$strip>;
15094
15094
  declare const DatasetItemSelectSchema: drizzle_zod19.BuildSchema<"select", {
15095
15095
  createdAt: drizzle_orm_pg_core211.PgColumn<{
@@ -15722,8 +15722,8 @@ declare const DatasetItemApiUpdateSchema: z.ZodObject<{
15722
15722
  }>>>>>>;
15723
15723
  }, z.core.$strip>;
15724
15724
  declare const DatasetRunItemSchema: z.ZodObject<{
15725
- id: z.ZodOptional<z.ZodString>;
15726
15725
  input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
15726
+ id: z.ZodOptional<z.ZodString>;
15727
15727
  expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
15728
15728
  simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
15729
15729
  prompt: string;
@@ -15771,8 +15771,8 @@ declare const DatasetRunItemSchema: z.ZodObject<{
15771
15771
  declare const TriggerDatasetRunSchema: z.ZodObject<{
15772
15772
  datasetRunId: z.ZodString;
15773
15773
  items: z.ZodArray<z.ZodObject<{
15774
- id: z.ZodOptional<z.ZodString>;
15775
15774
  input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
15775
+ id: z.ZodOptional<z.ZodString>;
15776
15776
  expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
15777
15777
  simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
15778
15778
  prompt: string;
@@ -16182,17 +16182,17 @@ declare const DatasetRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
16182
16182
  id: z.ZodString;
16183
16183
  }>, z.core.$strip>;
16184
16184
  declare const DatasetRunConfigApiInsertSchema: z.ZodObject<{
16185
- name: z.ZodString;
16186
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16187
16185
  createdAt: z.ZodOptional<z.ZodString>;
16188
16186
  updatedAt: z.ZodOptional<z.ZodString>;
16187
+ name: z.ZodString;
16188
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16189
16189
  datasetId: z.ZodString;
16190
16190
  }, z.core.$strip>;
16191
16191
  declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
16192
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
16193
- description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
16194
16192
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
16195
16193
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
16194
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
16195
+ description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
16196
16196
  datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
16197
16197
  }, z.core.$strip>;
16198
16198
  declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
@@ -16500,21 +16500,21 @@ declare const SkillSelectSchema: z.ZodObject<{
16500
16500
  in: {};
16501
16501
  }>;
16502
16502
  declare const SkillInsertSchema: z.ZodObject<{
16503
+ metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
16503
16504
  name: z.ZodString;
16504
16505
  description: z.ZodString;
16505
16506
  tenantId: z.ZodString;
16506
16507
  projectId: z.ZodString;
16507
- metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
16508
16508
  content: z.ZodString;
16509
16509
  }, {
16510
16510
  out: {};
16511
16511
  in: {};
16512
16512
  }>;
16513
16513
  declare const SkillUpdateSchema: z.ZodObject<{
16514
+ metadata: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
16514
16515
  description: z.ZodOptional<z.ZodString>;
16515
16516
  tenantId: z.ZodOptional<z.ZodString>;
16516
16517
  projectId: z.ZodOptional<z.ZodString>;
16517
- metadata: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
16518
16518
  content: z.ZodOptional<z.ZodString>;
16519
16519
  }, {
16520
16520
  out: {};
@@ -16532,16 +16532,16 @@ declare const SkillApiSelectSchema: z.ZodObject<OmitProjectScope<{
16532
16532
  metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
16533
16533
  }>, z.core.$strip>;
16534
16534
  declare const SkillApiInsertSchema: z.ZodObject<OmitProjectScope<{
16535
+ metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
16535
16536
  name: z.ZodString;
16536
16537
  description: z.ZodString;
16537
16538
  tenantId: z.ZodString;
16538
16539
  projectId: z.ZodString;
16539
- metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
16540
16540
  content: z.ZodString;
16541
16541
  }>, z.core.$strip>;
16542
16542
  declare const SkillApiUpdateSchema: z.ZodObject<{
16543
- description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
16544
16543
  metadata: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>>;
16544
+ description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
16545
16545
  content: z.ZodOptional<z.ZodOptional<z.ZodString>>;
16546
16546
  }, z.core.$strip>;
16547
16547
  declare const DataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
@@ -18257,10 +18257,10 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
18257
18257
  }>;
18258
18258
  declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
18259
18259
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
18260
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
18261
- description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
18262
18260
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
18263
18261
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
18262
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
18263
+ description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
18264
18264
  props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
18265
18265
  [x: string]: unknown;
18266
18266
  type: "object";
@@ -18693,12 +18693,12 @@ declare const SubAgentSkillApiUpdateSchema: z.ZodObject<{
18693
18693
  skillId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
18694
18694
  }, z.core.$strip>;
18695
18695
  declare const SubAgentSkillWithIndexSchema: z.ZodObject<{
18696
+ metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
18696
18697
  id: z.ZodString;
18697
- name: z.ZodString;
18698
- description: z.ZodString;
18699
18698
  createdAt: z.ZodString;
18700
18699
  updatedAt: z.ZodString;
18701
- metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
18700
+ name: z.ZodString;
18701
+ description: z.ZodString;
18702
18702
  content: z.ZodString;
18703
18703
  subAgentSkillId: z.ZodString;
18704
18704
  subAgentId: z.ZodString;
@@ -18771,17 +18771,21 @@ declare const ExternalAgentApiInsertSchema: z.ZodObject<OmitProjectScope<{
18771
18771
  }>, z.core.$strip>;
18772
18772
  declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
18773
18773
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
18774
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
18775
- description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
18776
18774
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
18777
18775
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
18778
- credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
18776
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
18777
+ description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
18779
18778
  baseUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
18779
+ credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
18780
18780
  }, z.core.$strip>;
18781
18781
  declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
18782
18782
  id: z.ZodString;
18783
+ createdAt: z.ZodString;
18784
+ updatedAt: z.ZodString;
18783
18785
  name: z.ZodString;
18784
18786
  description: z.ZodNullable<z.ZodString>;
18787
+ prompt: z.ZodNullable<z.ZodString>;
18788
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
18785
18789
  models: z.ZodNullable<z.ZodType<{
18786
18790
  base?: {
18787
18791
  model?: string | undefined;
@@ -18844,19 +18848,15 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
18844
18848
  }, {
18845
18849
  stepCountIs?: number | undefined;
18846
18850
  }>>>;
18847
- createdAt: z.ZodString;
18848
- updatedAt: z.ZodString;
18849
- prompt: z.ZodNullable<z.ZodString>;
18850
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
18851
18851
  type: z.ZodLiteral<"internal">;
18852
18852
  }, z.core.$strip>, z.ZodObject<{
18853
18853
  id: z.ZodString;
18854
- name: z.ZodString;
18855
- description: z.ZodNullable<z.ZodString>;
18856
18854
  createdAt: z.ZodString;
18857
18855
  updatedAt: z.ZodString;
18858
- credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18856
+ name: z.ZodString;
18857
+ description: z.ZodNullable<z.ZodString>;
18859
18858
  baseUrl: z.ZodString;
18859
+ credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18860
18860
  type: z.ZodLiteral<"external">;
18861
18861
  }, z.core.$strip>], "type">;
18862
18862
  declare const ApiKeySelectSchema: drizzle_zod19.BuildSchema<"select", {
@@ -19320,10 +19320,10 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
19320
19320
  in: {};
19321
19321
  }>;
19322
19322
  declare const ApiKeyUpdateSchema: z.ZodObject<{
19323
- name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
19324
19323
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
19325
- agentId: z.ZodOptional<z.ZodString>;
19324
+ name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
19326
19325
  expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
19326
+ agentId: z.ZodOptional<z.ZodString>;
19327
19327
  lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
19328
19328
  }, {
19329
19329
  out: {};
@@ -19331,11 +19331,11 @@ declare const ApiKeyUpdateSchema: z.ZodObject<{
19331
19331
  }>;
19332
19332
  declare const ApiKeyApiSelectSchema: z.ZodObject<{
19333
19333
  id: z.ZodString;
19334
- name: z.ZodNullable<z.ZodString>;
19335
19334
  createdAt: z.ZodString;
19336
19335
  updatedAt: z.ZodString;
19337
- agentId: z.ZodString;
19336
+ name: z.ZodNullable<z.ZodString>;
19338
19337
  expiresAt: z.ZodNullable<z.ZodString>;
19338
+ agentId: z.ZodString;
19339
19339
  publicId: z.ZodString;
19340
19340
  keyPrefix: z.ZodString;
19341
19341
  lastUsedAt: z.ZodNullable<z.ZodString>;
@@ -19347,11 +19347,11 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
19347
19347
  data: z.ZodObject<{
19348
19348
  apiKey: z.ZodObject<{
19349
19349
  id: z.ZodString;
19350
- name: z.ZodNullable<z.ZodString>;
19351
19350
  createdAt: z.ZodString;
19352
19351
  updatedAt: z.ZodString;
19353
- agentId: z.ZodString;
19352
+ name: z.ZodNullable<z.ZodString>;
19354
19353
  expiresAt: z.ZodNullable<z.ZodString>;
19354
+ agentId: z.ZodString;
19355
19355
  publicId: z.ZodString;
19356
19356
  keyPrefix: z.ZodString;
19357
19357
  lastUsedAt: z.ZodNullable<z.ZodString>;
@@ -19363,20 +19363,20 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
19363
19363
  }, z.core.$strip>;
19364
19364
  }, z.core.$strip>;
19365
19365
  declare const ApiKeyApiInsertSchema: z.ZodObject<{
19366
- name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19367
19366
  createdAt: z.ZodOptional<z.ZodString>;
19368
19367
  updatedAt: z.ZodOptional<z.ZodString>;
19369
- agentId: z.ZodString;
19368
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19370
19369
  expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19370
+ agentId: z.ZodString;
19371
19371
  }, {
19372
19372
  out: {};
19373
19373
  in: {};
19374
19374
  }>;
19375
19375
  declare const ApiKeyApiUpdateSchema: z.ZodObject<{
19376
- name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
19377
19376
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
19378
- agentId: z.ZodOptional<z.ZodString>;
19377
+ name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
19379
19378
  expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
19379
+ agentId: z.ZodOptional<z.ZodString>;
19380
19380
  lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
19381
19381
  }, {
19382
19382
  out: {};
@@ -19869,13 +19869,13 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
19869
19869
  }>;
19870
19870
  declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
19871
19871
  id: z.ZodString;
19872
- name: z.ZodString;
19872
+ userId: z.ZodNullable<z.ZodString>;
19873
19873
  createdAt: z.ZodString;
19874
19874
  updatedAt: z.ZodString;
19875
+ name: z.ZodString;
19875
19876
  toolId: z.ZodNullable<z.ZodString>;
19876
19877
  credentialStoreId: z.ZodString;
19877
19878
  retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
19878
- userId: z.ZodNullable<z.ZodString>;
19879
19879
  createdBy: z.ZodNullable<z.ZodString>;
19880
19880
  type: z.ZodEnum<{
19881
19881
  readonly memory: "memory";
@@ -20460,13 +20460,13 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
20460
20460
  }, z.core.$strip>;
20461
20461
  declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
20462
20462
  id: z.ZodString;
20463
- name: z.ZodString;
20463
+ userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20464
20464
  createdAt: z.ZodOptional<z.ZodString>;
20465
20465
  updatedAt: z.ZodOptional<z.ZodString>;
20466
+ name: z.ZodString;
20466
20467
  toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20467
20468
  credentialStoreId: z.ZodString;
20468
20469
  retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
20469
- userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20470
20470
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20471
20471
  type: z.ZodEnum<{
20472
20472
  readonly memory: "memory";
@@ -20476,13 +20476,13 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
20476
20476
  }, z.core.$strip>;
20477
20477
  declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
20478
20478
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
20479
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
20479
+ userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
20480
20480
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
20481
20481
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
20482
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
20482
20483
  toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
20483
20484
  credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
20484
20485
  retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
20485
- userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
20486
20486
  createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
20487
20487
  type: z.ZodOptional<z.ZodEnum<{
20488
20488
  readonly memory: "memory";
@@ -20606,17 +20606,17 @@ declare const McpToolSchema: z.ZodObject<{
20606
20606
  in: {};
20607
20607
  }>;
20608
20608
  declare const MCPToolConfigSchema: z.ZodObject<{
20609
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
20609
20610
  id: z.ZodString;
20610
20611
  name: z.ZodString;
20611
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
20612
+ expiresAt: z.ZodOptional<z.ZodString>;
20613
+ relationshipId: z.ZodOptional<z.ZodString>;
20614
+ createdBy: z.ZodOptional<z.ZodString>;
20612
20615
  credentialScope: z.ZodOptional<z.ZodString>;
20613
20616
  imageUrl: z.ZodOptional<z.ZodString>;
20614
20617
  capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
20615
20618
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20616
20619
  isWorkApp: z.ZodOptional<z.ZodBoolean>;
20617
- createdBy: z.ZodOptional<z.ZodString>;
20618
- relationshipId: z.ZodOptional<z.ZodString>;
20619
- expiresAt: z.ZodOptional<z.ZodString>;
20620
20620
  availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
20621
20621
  name: z.ZodString;
20622
20622
  description: z.ZodOptional<z.ZodString>;
@@ -20643,13 +20643,13 @@ declare const MCPToolConfigSchema: z.ZodObject<{
20643
20643
  }, z.core.$strip>>;
20644
20644
  credential: z.ZodOptional<z.ZodObject<{
20645
20645
  id: z.ZodString;
20646
- name: z.ZodString;
20646
+ userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20647
20647
  createdAt: z.ZodOptional<z.ZodString>;
20648
20648
  updatedAt: z.ZodOptional<z.ZodString>;
20649
+ name: z.ZodString;
20649
20650
  toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20650
20651
  credentialStoreId: z.ZodString;
20651
20652
  retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
20652
- userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20653
20653
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20654
20654
  type: z.ZodEnum<{
20655
20655
  readonly memory: "memory";
@@ -20785,12 +20785,12 @@ declare const ToolApiInsertSchema: z.ZodObject<OmitProjectScope<{
20785
20785
  }, z.core.$strip>;
20786
20786
  }>, z.core.$strip>;
20787
20787
  declare const ToolApiUpdateSchema: z.ZodObject<{
20788
+ 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>>>>>>>;
20788
20789
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
20789
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
20790
- description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
20791
20790
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
20792
20791
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
20793
- 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>>>>>>>;
20792
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
20793
+ description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
20794
20794
  config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
20795
20795
  type: z.ZodLiteral<"mcp">;
20796
20796
  mcp: z.ZodObject<{
@@ -21187,10 +21187,10 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
21187
21187
  }>;
21188
21188
  declare const FunctionToolApiSelectSchema: z.ZodObject<{
21189
21189
  id: z.ZodString;
21190
- name: z.ZodString;
21191
- description: z.ZodNullable<z.ZodString>;
21192
21190
  createdAt: z.ZodString;
21193
21191
  updatedAt: z.ZodString;
21192
+ name: z.ZodString;
21193
+ description: z.ZodNullable<z.ZodString>;
21194
21194
  agentId: z.ZodString;
21195
21195
  functionId: z.ZodString;
21196
21196
  relationshipId: z.ZodOptional<z.ZodString>;
@@ -21208,10 +21208,10 @@ declare const FunctionToolApiInsertSchema: z.ZodObject<OmitAgentScope<{
21208
21208
  }>, z.core.$strip>;
21209
21209
  declare const FunctionToolApiUpdateSchema: z.ZodObject<{
21210
21210
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21211
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21212
- description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
21213
21211
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
21214
21212
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
21213
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21214
+ description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
21215
21215
  agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21216
21216
  functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21217
21217
  }, z.core.$strip>;
@@ -21587,8 +21587,8 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<OmitAgent
21587
21587
  }>, z.core.$strip>;
21588
21588
  declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
21589
21589
  toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
21590
- subAgentId: z.ZodString;
21591
21590
  functionToolId: z.ZodString;
21591
+ subAgentId: z.ZodString;
21592
21592
  }, {
21593
21593
  out: {};
21594
21594
  in: {};
@@ -21981,13 +21981,13 @@ declare const FetchDefinitionSchema: z.ZodObject<{
21981
21981
  defaultValue: z.ZodOptional<z.ZodAny>;
21982
21982
  credential: z.ZodOptional<z.ZodObject<{
21983
21983
  id: z.ZodString;
21984
- name: z.ZodString;
21984
+ userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21985
21985
  createdAt: z.ZodOptional<z.ZodString>;
21986
21986
  updatedAt: z.ZodOptional<z.ZodString>;
21987
+ name: z.ZodString;
21987
21988
  toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21988
21989
  credentialStoreId: z.ZodString;
21989
21990
  retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
21990
- userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21991
21991
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21992
21992
  type: z.ZodEnum<{
21993
21993
  readonly memory: "memory";
@@ -22534,11 +22534,11 @@ declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<OmitAgentScope<{
22534
22534
  }, z.core.$strip>>>>;
22535
22535
  }>, z.core.$strip>;
22536
22536
  declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
22537
+ headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
22537
22538
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
22538
22539
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
22539
22540
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
22540
22541
  toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
22541
- headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
22542
22542
  toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
22543
22543
  needsApproval: z.ZodOptional<z.ZodBoolean>;
22544
22544
  }, z.core.$strip>>>>>>;
@@ -22922,16 +22922,16 @@ declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<OmitAgen
22922
22922
  id: z.ZodString;
22923
22923
  }>, z.core.$strip>;
22924
22924
  declare const SubAgentExternalAgentRelationApiInsertSchema: z.ZodObject<{
22925
+ headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
22925
22926
  createdAt: z.ZodOptional<z.ZodString>;
22926
22927
  updatedAt: z.ZodOptional<z.ZodString>;
22927
- headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
22928
22928
  externalAgentId: z.ZodString;
22929
22929
  }, z.core.$strip>;
22930
22930
  declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
22931
+ headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
22931
22932
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
22932
22933
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
22933
22934
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
22934
- headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
22935
22935
  externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
22936
22936
  subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
22937
22937
  }, z.core.$strip>;
@@ -23312,16 +23312,16 @@ declare const SubAgentTeamAgentRelationApiSelectSchema: z.ZodObject<OmitAgentSco
23312
23312
  id: z.ZodString;
23313
23313
  }>, z.core.$strip>;
23314
23314
  declare const SubAgentTeamAgentRelationApiInsertSchema: z.ZodObject<{
23315
+ headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
23315
23316
  createdAt: z.ZodOptional<z.ZodString>;
23316
23317
  updatedAt: z.ZodOptional<z.ZodString>;
23317
- headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
23318
23318
  targetAgentId: z.ZodString;
23319
23319
  }, z.core.$strip>;
23320
23320
  declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
23321
+ headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
23321
23322
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
23322
23323
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
23323
23324
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
23324
- headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
23325
23325
  subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
23326
23326
  targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
23327
23327
  }, z.core.$strip>;
@@ -24666,7 +24666,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
24666
24666
  }, {}, {
24667
24667
  length: 256;
24668
24668
  }>;
24669
- }, "id" | "name" | "description" | "type" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "metadata" | "taskId" | "contextId" | "visibility" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
24669
+ }, "type" | "metadata" | "id" | "createdAt" | "updatedAt" | "name" | "description" | "tenantId" | "projectId" | "taskId" | "contextId" | "visibility" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
24670
24670
  declare const LedgerArtifactUpdateSchema: z.ZodObject<{
24671
24671
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
24672
24672
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -24731,13 +24731,13 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<OmitProjectScope<{
24731
24731
  id: z.ZodString;
24732
24732
  }>, z.core.$strip>;
24733
24733
  declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
24734
- id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
24735
- name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
24736
- description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
24737
24734
  type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
24735
+ metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
24736
+ id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
24738
24737
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
24739
24738
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
24740
- metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
24739
+ name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
24740
+ description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
24741
24741
  taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
24742
24742
  contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
24743
24743
  visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
@@ -24812,8 +24812,11 @@ declare const TeamAgentSchema: z.ZodObject<{
24812
24812
  }, z.core.$strip>;
24813
24813
  declare const FullAgentAgentInsertSchema: z.ZodObject<{
24814
24814
  id: z.ZodString;
24815
+ createdAt: z.ZodOptional<z.ZodString>;
24816
+ updatedAt: z.ZodOptional<z.ZodString>;
24815
24817
  name: z.ZodString;
24816
24818
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24819
+ conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
24817
24820
  models: z.ZodOptional<z.ZodObject<{
24818
24821
  base: z.ZodOptional<z.ZodObject<{
24819
24822
  model: z.ZodOptional<z.ZodString>;
@@ -24837,9 +24840,6 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
24837
24840
  }, {
24838
24841
  stepCountIs?: number | undefined;
24839
24842
  }>>>>;
24840
- createdAt: z.ZodOptional<z.ZodString>;
24841
- updatedAt: z.ZodOptional<z.ZodString>;
24842
- conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
24843
24843
  type: z.ZodLiteral<"internal">;
24844
24844
  canUse: z.ZodArray<z.ZodObject<{
24845
24845
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -24870,17 +24870,20 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
24870
24870
  }, z.core.$strip>]>>>;
24871
24871
  }, z.core.$strip>;
24872
24872
  declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
24873
- name: z.ZodString;
24874
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24875
24873
  createdAt: z.ZodOptional<z.ZodString>;
24876
24874
  updatedAt: z.ZodOptional<z.ZodString>;
24875
+ name: z.ZodString;
24876
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24877
24877
  defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24878
24878
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24879
24879
  id: z.ZodString;
24880
24880
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
24881
24881
  id: z.ZodString;
24882
+ createdAt: z.ZodOptional<z.ZodString>;
24883
+ updatedAt: z.ZodOptional<z.ZodString>;
24882
24884
  name: z.ZodString;
24883
24885
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24886
+ conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
24884
24887
  models: z.ZodOptional<z.ZodObject<{
24885
24888
  base: z.ZodOptional<z.ZodObject<{
24886
24889
  model: z.ZodOptional<z.ZodString>;
@@ -24904,9 +24907,6 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
24904
24907
  }, {
24905
24908
  stepCountIs?: number | undefined;
24906
24909
  }>>>>;
24907
- createdAt: z.ZodOptional<z.ZodString>;
24908
- updatedAt: z.ZodOptional<z.ZodString>;
24909
- conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
24910
24910
  type: z.ZodLiteral<"internal">;
24911
24911
  canUse: z.ZodArray<z.ZodObject<{
24912
24912
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -25014,30 +25014,30 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
25014
25014
  executeCode: z.ZodString;
25015
25015
  }, z.core.$strip>>>;
25016
25016
  triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
25017
- name: z.ZodString;
25018
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25017
+ enabled: z.ZodOptional<z.ZodBoolean>;
25019
25018
  createdAt: z.ZodOptional<z.ZodString>;
25020
25019
  updatedAt: z.ZodOptional<z.ZodString>;
25021
- enabled: z.ZodOptional<z.ZodBoolean>;
25020
+ name: z.ZodString;
25021
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25022
25022
  inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
25023
- messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25024
25023
  outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
25024
+ messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25025
25025
  authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
25026
25026
  signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25027
25027
  signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
25028
25028
  id: z.ZodOptional<z.ZodString>;
25029
25029
  }, z.core.$strip>>>;
25030
25030
  scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
25031
- name: z.ZodString;
25032
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25031
+ enabled: z.ZodOptional<z.ZodBoolean>;
25033
25032
  createdAt: z.ZodOptional<z.ZodString>;
25034
25033
  updatedAt: z.ZodOptional<z.ZodString>;
25035
- enabled: z.ZodOptional<z.ZodBoolean>;
25034
+ name: z.ZodString;
25035
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25036
+ messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25036
25037
  cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25037
25038
  cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25038
25039
  runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25039
25040
  payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
25040
- messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25041
25041
  maxRetries: z.ZodOptional<z.ZodNumber>;
25042
25042
  retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
25043
25043
  timeoutSeconds: z.ZodOptional<z.ZodNumber>;
@@ -25145,6 +25145,7 @@ declare const ProjectInsertSchema: z.ZodObject<{
25145
25145
  id: z.ZodString;
25146
25146
  name: z.ZodString;
25147
25147
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25148
+ tenantId: z.ZodString;
25148
25149
  models: z.ZodObject<{
25149
25150
  base: z.ZodObject<{
25150
25151
  model: z.ZodOptional<z.ZodString>;
@@ -25163,7 +25164,6 @@ declare const ProjectInsertSchema: z.ZodObject<{
25163
25164
  transferCountIs: z.ZodOptional<z.ZodNumber>;
25164
25165
  stepCountIs: z.ZodOptional<z.ZodNumber>;
25165
25166
  }, z.core.$strip>>;
25166
- tenantId: z.ZodString;
25167
25167
  }, {
25168
25168
  out: {};
25169
25169
  in: {};
@@ -25195,6 +25195,8 @@ declare const ProjectUpdateSchema: z.ZodObject<{
25195
25195
  }>;
25196
25196
  declare const ProjectApiSelectSchema: z.ZodObject<{
25197
25197
  id: z.ZodString;
25198
+ createdAt: z.ZodString;
25199
+ updatedAt: z.ZodString;
25198
25200
  name: z.ZodString;
25199
25201
  description: z.ZodNullable<z.ZodString>;
25200
25202
  models: z.ZodNullable<z.ZodObject<{
@@ -25215,8 +25217,6 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
25215
25217
  transferCountIs: z.ZodOptional<z.ZodNumber>;
25216
25218
  stepCountIs: z.ZodOptional<z.ZodNumber>;
25217
25219
  }, z.core.$strip>>;
25218
- createdAt: z.ZodString;
25219
- updatedAt: z.ZodString;
25220
25220
  }, {
25221
25221
  out: {};
25222
25222
  in: {};
@@ -25295,17 +25295,20 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
25295
25295
  stepCountIs: z.ZodOptional<z.ZodNumber>;
25296
25296
  }, z.core.$strip>>;
25297
25297
  agents: z.ZodRecord<z.ZodString, z.ZodObject<{
25298
- name: z.ZodString;
25299
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25300
25298
  createdAt: z.ZodOptional<z.ZodString>;
25301
25299
  updatedAt: z.ZodOptional<z.ZodString>;
25300
+ name: z.ZodString;
25301
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25302
25302
  defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25303
25303
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25304
25304
  id: z.ZodString;
25305
25305
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
25306
25306
  id: z.ZodString;
25307
+ createdAt: z.ZodOptional<z.ZodString>;
25308
+ updatedAt: z.ZodOptional<z.ZodString>;
25307
25309
  name: z.ZodString;
25308
25310
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25311
+ conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
25309
25312
  models: z.ZodOptional<z.ZodObject<{
25310
25313
  base: z.ZodOptional<z.ZodObject<{
25311
25314
  model: z.ZodOptional<z.ZodString>;
@@ -25329,9 +25332,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
25329
25332
  }, {
25330
25333
  stepCountIs?: number | undefined;
25331
25334
  }>>>>;
25332
- createdAt: z.ZodOptional<z.ZodString>;
25333
- updatedAt: z.ZodOptional<z.ZodString>;
25334
- conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
25335
25335
  type: z.ZodLiteral<"internal">;
25336
25336
  canUse: z.ZodArray<z.ZodObject<{
25337
25337
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -25439,30 +25439,30 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
25439
25439
  executeCode: z.ZodString;
25440
25440
  }, z.core.$strip>>>;
25441
25441
  triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
25442
- name: z.ZodString;
25443
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25442
+ enabled: z.ZodOptional<z.ZodBoolean>;
25444
25443
  createdAt: z.ZodOptional<z.ZodString>;
25445
25444
  updatedAt: z.ZodOptional<z.ZodString>;
25446
- enabled: z.ZodOptional<z.ZodBoolean>;
25445
+ name: z.ZodString;
25446
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25447
25447
  inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
25448
- messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25449
25448
  outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
25449
+ messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25450
25450
  authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
25451
25451
  signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25452
25452
  signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
25453
25453
  id: z.ZodOptional<z.ZodString>;
25454
25454
  }, z.core.$strip>>>;
25455
25455
  scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
25456
- name: z.ZodString;
25457
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25456
+ enabled: z.ZodOptional<z.ZodBoolean>;
25458
25457
  createdAt: z.ZodOptional<z.ZodString>;
25459
25458
  updatedAt: z.ZodOptional<z.ZodString>;
25460
- enabled: z.ZodOptional<z.ZodBoolean>;
25459
+ name: z.ZodString;
25460
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25461
+ messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25461
25462
  cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25462
25463
  cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25463
25464
  runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25464
25465
  payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
25465
- messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25466
25466
  maxRetries: z.ZodOptional<z.ZodNumber>;
25467
25467
  retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
25468
25468
  timeoutSeconds: z.ZodOptional<z.ZodNumber>;
@@ -25569,11 +25569,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
25569
25569
  executeCode: z.ZodString;
25570
25570
  }, z.core.$strip>>>;
25571
25571
  skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
25572
+ metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
25572
25573
  name: z.ZodString;
25573
25574
  description: z.ZodString;
25574
25575
  tenantId: z.ZodString;
25575
25576
  projectId: z.ZodString;
25576
- metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
25577
25577
  content: z.ZodString;
25578
25578
  }>, z.core.$strip>>>;
25579
25579
  dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -25659,13 +25659,13 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
25659
25659
  }, z.core.$strip>>;
25660
25660
  credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
25661
25661
  id: z.ZodString;
25662
- name: z.ZodString;
25662
+ userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25663
25663
  createdAt: z.ZodOptional<z.ZodString>;
25664
25664
  updatedAt: z.ZodOptional<z.ZodString>;
25665
+ name: z.ZodString;
25665
25666
  toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25666
25667
  credentialStoreId: z.ZodString;
25667
25668
  retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
25668
- userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25669
25669
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25670
25670
  type: z.ZodEnum<{
25671
25671
  readonly memory: "memory";
@@ -25681,8 +25681,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
25681
25681
  }>;
25682
25682
  declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
25683
25683
  id: z.ZodString;
25684
+ createdAt: z.ZodString;
25685
+ updatedAt: z.ZodString;
25684
25686
  name: z.ZodString;
25685
25687
  description: z.ZodNullable<z.ZodString>;
25688
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
25686
25689
  models: z.ZodNullable<z.ZodType<{
25687
25690
  base?: {
25688
25691
  model?: string | undefined;
@@ -25745,9 +25748,6 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
25745
25748
  }, {
25746
25749
  stepCountIs?: number | undefined;
25747
25750
  }>>>;
25748
- createdAt: z.ZodString;
25749
- updatedAt: z.ZodString;
25750
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
25751
25751
  type: z.ZodLiteral<"internal">;
25752
25752
  canUse: z.ZodArray<z.ZodObject<{
25753
25753
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -25774,8 +25774,11 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
25774
25774
  }, z.core.$strip>;
25775
25775
  declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
25776
25776
  id: z.ZodString;
25777
+ createdAt: z.ZodString;
25778
+ updatedAt: z.ZodString;
25777
25779
  name: z.ZodString;
25778
25780
  description: z.ZodNullable<z.ZodString>;
25781
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
25779
25782
  models: z.ZodNullable<z.ZodType<{
25780
25783
  base?: {
25781
25784
  model?: string | undefined;
@@ -25838,9 +25841,6 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
25838
25841
  }, {
25839
25842
  stepCountIs?: number | undefined;
25840
25843
  }>>>;
25841
- createdAt: z.ZodString;
25842
- updatedAt: z.ZodString;
25843
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
25844
25844
  type: z.ZodLiteral<"internal">;
25845
25845
  canUse: z.ZodArray<z.ZodObject<{
25846
25846
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -25873,16 +25873,19 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
25873
25873
  }, z.core.$strip>;
25874
25874
  declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
25875
25875
  id: z.ZodString;
25876
- name: z.ZodString;
25877
- description: z.ZodNullable<z.ZodString>;
25878
25876
  createdAt: z.ZodString;
25879
25877
  updatedAt: z.ZodString;
25878
+ name: z.ZodString;
25879
+ description: z.ZodNullable<z.ZodString>;
25880
25880
  defaultSubAgentId: z.ZodNullable<z.ZodString>;
25881
25881
  contextConfigId: z.ZodNullable<z.ZodString>;
25882
25882
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
25883
25883
  id: z.ZodString;
25884
+ createdAt: z.ZodString;
25885
+ updatedAt: z.ZodString;
25884
25886
  name: z.ZodString;
25885
25887
  description: z.ZodNullable<z.ZodString>;
25888
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
25886
25889
  models: z.ZodNullable<z.ZodType<{
25887
25890
  base?: {
25888
25891
  model?: string | undefined;
@@ -25945,9 +25948,6 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
25945
25948
  }, {
25946
25949
  stepCountIs?: number | undefined;
25947
25950
  }>>>;
25948
- createdAt: z.ZodString;
25949
- updatedAt: z.ZodString;
25950
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
25951
25951
  type: z.ZodLiteral<"internal">;
25952
25952
  canUse: z.ZodArray<z.ZodObject<{
25953
25953
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -26019,10 +26019,10 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
26019
26019
  }, z.core.$strip>>>;
26020
26020
  functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
26021
26021
  id: z.ZodString;
26022
- name: z.ZodString;
26023
- description: z.ZodNullable<z.ZodString>;
26024
26022
  createdAt: z.ZodString;
26025
26023
  updatedAt: z.ZodString;
26024
+ name: z.ZodString;
26025
+ description: z.ZodNullable<z.ZodString>;
26026
26026
  agentId: z.ZodString;
26027
26027
  functionId: z.ZodString;
26028
26028
  relationshipId: z.ZodOptional<z.ZodString>;
@@ -26099,10 +26099,10 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
26099
26099
  }, z.core.$strip>;
26100
26100
  declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
26101
26101
  id: z.ZodString;
26102
- name: z.ZodString;
26103
- description: z.ZodNullable<z.ZodString>;
26104
26102
  createdAt: z.ZodString;
26105
26103
  updatedAt: z.ZodString;
26104
+ name: z.ZodString;
26105
+ description: z.ZodNullable<z.ZodString>;
26106
26106
  defaultSubAgentId: z.ZodNullable<z.ZodString>;
26107
26107
  contextConfigId: z.ZodNullable<z.ZodString>;
26108
26108
  tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
@@ -26152,10 +26152,10 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
26152
26152
  }, z.core.$strip>>>;
26153
26153
  functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
26154
26154
  id: z.ZodString;
26155
- name: z.ZodString;
26156
- description: z.ZodNullable<z.ZodString>;
26157
26155
  createdAt: z.ZodString;
26158
26156
  updatedAt: z.ZodString;
26157
+ name: z.ZodString;
26158
+ description: z.ZodNullable<z.ZodString>;
26159
26159
  agentId: z.ZodString;
26160
26160
  functionId: z.ZodString;
26161
26161
  relationshipId: z.ZodOptional<z.ZodString>;
@@ -26231,8 +26231,11 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
26231
26231
  prompt: z.ZodNullable<z.ZodString>;
26232
26232
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
26233
26233
  id: z.ZodString;
26234
+ createdAt: z.ZodString;
26235
+ updatedAt: z.ZodString;
26234
26236
  name: z.ZodString;
26235
26237
  description: z.ZodNullable<z.ZodString>;
26238
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
26236
26239
  models: z.ZodNullable<z.ZodType<{
26237
26240
  base?: {
26238
26241
  model?: string | undefined;
@@ -26295,9 +26298,6 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
26295
26298
  }, {
26296
26299
  stepCountIs?: number | undefined;
26297
26300
  }>>>;
26298
- createdAt: z.ZodString;
26299
- updatedAt: z.ZodString;
26300
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
26301
26301
  type: z.ZodLiteral<"internal">;
26302
26302
  canUse: z.ZodArray<z.ZodObject<{
26303
26303
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -26331,6 +26331,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
26331
26331
  }, z.core.$strip>;
26332
26332
  declare const FullProjectSelectSchema: z.ZodObject<{
26333
26333
  id: z.ZodString;
26334
+ createdAt: z.ZodString;
26335
+ updatedAt: z.ZodString;
26334
26336
  name: z.ZodString;
26335
26337
  description: z.ZodNullable<z.ZodString>;
26336
26338
  models: z.ZodNullable<z.ZodObject<{
@@ -26351,20 +26353,21 @@ declare const FullProjectSelectSchema: z.ZodObject<{
26351
26353
  transferCountIs: z.ZodOptional<z.ZodNumber>;
26352
26354
  stepCountIs: z.ZodOptional<z.ZodNumber>;
26353
26355
  }, z.core.$strip>>;
26354
- createdAt: z.ZodString;
26355
- updatedAt: z.ZodString;
26356
26356
  agents: z.ZodRecord<z.ZodString, z.ZodObject<{
26357
26357
  id: z.ZodString;
26358
- name: z.ZodString;
26359
- description: z.ZodNullable<z.ZodString>;
26360
26358
  createdAt: z.ZodString;
26361
26359
  updatedAt: z.ZodString;
26360
+ name: z.ZodString;
26361
+ description: z.ZodNullable<z.ZodString>;
26362
26362
  defaultSubAgentId: z.ZodNullable<z.ZodString>;
26363
26363
  contextConfigId: z.ZodNullable<z.ZodString>;
26364
26364
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
26365
26365
  id: z.ZodString;
26366
+ createdAt: z.ZodString;
26367
+ updatedAt: z.ZodString;
26366
26368
  name: z.ZodString;
26367
26369
  description: z.ZodNullable<z.ZodString>;
26370
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
26368
26371
  models: z.ZodNullable<z.ZodType<{
26369
26372
  base?: {
26370
26373
  model?: string | undefined;
@@ -26427,9 +26430,6 @@ declare const FullProjectSelectSchema: z.ZodObject<{
26427
26430
  }, {
26428
26431
  stepCountIs?: number | undefined;
26429
26432
  }>>>;
26430
- createdAt: z.ZodString;
26431
- updatedAt: z.ZodString;
26432
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
26433
26433
  type: z.ZodLiteral<"internal">;
26434
26434
  canUse: z.ZodArray<z.ZodObject<{
26435
26435
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -26501,10 +26501,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
26501
26501
  }, z.core.$strip>>>;
26502
26502
  functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
26503
26503
  id: z.ZodString;
26504
- name: z.ZodString;
26505
- description: z.ZodNullable<z.ZodString>;
26506
26504
  createdAt: z.ZodString;
26507
26505
  updatedAt: z.ZodString;
26506
+ name: z.ZodString;
26507
+ description: z.ZodNullable<z.ZodString>;
26508
26508
  agentId: z.ZodString;
26509
26509
  functionId: z.ZodString;
26510
26510
  relationshipId: z.ZodOptional<z.ZodString>;
@@ -26610,10 +26610,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
26610
26610
  }>, z.core.$strip>>;
26611
26611
  functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
26612
26612
  id: z.ZodString;
26613
- name: z.ZodString;
26614
- description: z.ZodNullable<z.ZodString>;
26615
26613
  createdAt: z.ZodString;
26616
26614
  updatedAt: z.ZodString;
26615
+ name: z.ZodString;
26616
+ description: z.ZodNullable<z.ZodString>;
26617
26617
  agentId: z.ZodString;
26618
26618
  functionId: z.ZodString;
26619
26619
  relationshipId: z.ZodOptional<z.ZodString>;
@@ -26758,13 +26758,13 @@ declare const FullProjectSelectSchema: z.ZodObject<{
26758
26758
  }, z.core.$strip>>;
26759
26759
  credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
26760
26760
  id: z.ZodString;
26761
- name: z.ZodString;
26761
+ userId: z.ZodNullable<z.ZodString>;
26762
26762
  createdAt: z.ZodString;
26763
26763
  updatedAt: z.ZodString;
26764
+ name: z.ZodString;
26764
26765
  toolId: z.ZodNullable<z.ZodString>;
26765
26766
  credentialStoreId: z.ZodString;
26766
26767
  retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
26767
- userId: z.ZodNullable<z.ZodString>;
26768
26768
  createdBy: z.ZodNullable<z.ZodString>;
26769
26769
  type: z.ZodEnum<{
26770
26770
  readonly memory: "memory";
@@ -27353,6 +27353,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
27353
27353
  }>;
27354
27354
  declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
27355
27355
  id: z.ZodString;
27356
+ createdAt: z.ZodString;
27357
+ updatedAt: z.ZodString;
27356
27358
  name: z.ZodString;
27357
27359
  description: z.ZodNullable<z.ZodString>;
27358
27360
  models: z.ZodNullable<z.ZodObject<{
@@ -27373,8 +27375,6 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
27373
27375
  transferCountIs: z.ZodOptional<z.ZodNumber>;
27374
27376
  stepCountIs: z.ZodOptional<z.ZodNumber>;
27375
27377
  }, z.core.$strip>>;
27376
- createdAt: z.ZodString;
27377
- updatedAt: z.ZodString;
27378
27378
  tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
27379
27379
  createdAt: z.ZodString;
27380
27380
  updatedAt: z.ZodString;
@@ -27406,10 +27406,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
27406
27406
  }>, z.core.$strip>>;
27407
27407
  functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
27408
27408
  id: z.ZodString;
27409
- name: z.ZodString;
27410
- description: z.ZodNullable<z.ZodString>;
27411
27409
  createdAt: z.ZodString;
27412
27410
  updatedAt: z.ZodString;
27411
+ name: z.ZodString;
27412
+ description: z.ZodNullable<z.ZodString>;
27413
27413
  agentId: z.ZodString;
27414
27414
  functionId: z.ZodString;
27415
27415
  relationshipId: z.ZodOptional<z.ZodString>;
@@ -27554,13 +27554,13 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
27554
27554
  }, z.core.$strip>>;
27555
27555
  credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
27556
27556
  id: z.ZodString;
27557
- name: z.ZodString;
27557
+ userId: z.ZodNullable<z.ZodString>;
27558
27558
  createdAt: z.ZodString;
27559
27559
  updatedAt: z.ZodString;
27560
+ name: z.ZodString;
27560
27561
  toolId: z.ZodNullable<z.ZodString>;
27561
27562
  credentialStoreId: z.ZodString;
27562
27563
  retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
27563
- userId: z.ZodNullable<z.ZodString>;
27564
27564
  createdBy: z.ZodNullable<z.ZodString>;
27565
27565
  type: z.ZodEnum<{
27566
27566
  readonly memory: "memory";
@@ -28145,10 +28145,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
28145
28145
  }, z.core.$strip>>>;
28146
28146
  agents: z.ZodRecord<z.ZodString, z.ZodObject<{
28147
28147
  id: z.ZodString;
28148
- name: z.ZodString;
28149
- description: z.ZodNullable<z.ZodString>;
28150
28148
  createdAt: z.ZodString;
28151
28149
  updatedAt: z.ZodString;
28150
+ name: z.ZodString;
28151
+ description: z.ZodNullable<z.ZodString>;
28152
28152
  defaultSubAgentId: z.ZodNullable<z.ZodString>;
28153
28153
  contextConfigId: z.ZodNullable<z.ZodString>;
28154
28154
  tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
@@ -28198,10 +28198,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
28198
28198
  }, z.core.$strip>>>;
28199
28199
  functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
28200
28200
  id: z.ZodString;
28201
- name: z.ZodString;
28202
- description: z.ZodNullable<z.ZodString>;
28203
28201
  createdAt: z.ZodString;
28204
28202
  updatedAt: z.ZodString;
28203
+ name: z.ZodString;
28204
+ description: z.ZodNullable<z.ZodString>;
28205
28205
  agentId: z.ZodString;
28206
28206
  functionId: z.ZodString;
28207
28207
  relationshipId: z.ZodOptional<z.ZodString>;
@@ -28277,8 +28277,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
28277
28277
  prompt: z.ZodNullable<z.ZodString>;
28278
28278
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
28279
28279
  id: z.ZodString;
28280
+ createdAt: z.ZodString;
28281
+ updatedAt: z.ZodString;
28280
28282
  name: z.ZodString;
28281
28283
  description: z.ZodNullable<z.ZodString>;
28284
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
28282
28285
  models: z.ZodNullable<z.ZodType<{
28283
28286
  base?: {
28284
28287
  model?: string | undefined;
@@ -28341,9 +28344,6 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
28341
28344
  }, {
28342
28345
  stepCountIs?: number | undefined;
28343
28346
  }>>>;
28344
- createdAt: z.ZodString;
28345
- updatedAt: z.ZodString;
28346
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
28347
28347
  type: z.ZodLiteral<"internal">;
28348
28348
  canUse: z.ZodArray<z.ZodObject<{
28349
28349
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -28382,6 +28382,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
28382
28382
  declare const ProjectResponse: z.ZodObject<{
28383
28383
  data: z.ZodObject<{
28384
28384
  id: z.ZodString;
28385
+ createdAt: z.ZodString;
28386
+ updatedAt: z.ZodString;
28385
28387
  name: z.ZodString;
28386
28388
  description: z.ZodNullable<z.ZodString>;
28387
28389
  models: z.ZodNullable<z.ZodObject<{
@@ -28402,8 +28404,6 @@ declare const ProjectResponse: z.ZodObject<{
28402
28404
  transferCountIs: z.ZodOptional<z.ZodNumber>;
28403
28405
  stepCountIs: z.ZodOptional<z.ZodNumber>;
28404
28406
  }, z.core.$strip>>;
28405
- createdAt: z.ZodString;
28406
- updatedAt: z.ZodString;
28407
28407
  }, {
28408
28408
  out: {};
28409
28409
  in: {};
@@ -28643,11 +28643,11 @@ declare const ContextConfigResponse: z.ZodObject<{
28643
28643
  declare const ApiKeyResponse: z.ZodObject<{
28644
28644
  data: z.ZodObject<{
28645
28645
  id: z.ZodString;
28646
- name: z.ZodNullable<z.ZodString>;
28647
28646
  createdAt: z.ZodString;
28648
28647
  updatedAt: z.ZodString;
28649
- agentId: z.ZodString;
28648
+ name: z.ZodNullable<z.ZodString>;
28650
28649
  expiresAt: z.ZodNullable<z.ZodString>;
28650
+ agentId: z.ZodString;
28651
28651
  publicId: z.ZodString;
28652
28652
  keyPrefix: z.ZodString;
28653
28653
  lastUsedAt: z.ZodNullable<z.ZodString>;
@@ -28659,13 +28659,13 @@ declare const ApiKeyResponse: z.ZodObject<{
28659
28659
  declare const CredentialReferenceResponse: z.ZodObject<{
28660
28660
  data: z.ZodObject<{
28661
28661
  id: z.ZodString;
28662
- name: z.ZodString;
28662
+ userId: z.ZodNullable<z.ZodString>;
28663
28663
  createdAt: z.ZodString;
28664
28664
  updatedAt: z.ZodString;
28665
+ name: z.ZodString;
28665
28666
  toolId: z.ZodNullable<z.ZodString>;
28666
28667
  credentialStoreId: z.ZodString;
28667
28668
  retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
28668
- userId: z.ZodNullable<z.ZodString>;
28669
28669
  createdBy: z.ZodNullable<z.ZodString>;
28670
28670
  type: z.ZodEnum<{
28671
28671
  readonly memory: "memory";
@@ -29264,10 +29264,10 @@ declare const FunctionResponse: z.ZodObject<{
29264
29264
  declare const FunctionToolResponse: z.ZodObject<{
29265
29265
  data: z.ZodObject<{
29266
29266
  id: z.ZodString;
29267
- name: z.ZodString;
29268
- description: z.ZodNullable<z.ZodString>;
29269
29267
  createdAt: z.ZodString;
29270
29268
  updatedAt: z.ZodString;
29269
+ name: z.ZodString;
29270
+ description: z.ZodNullable<z.ZodString>;
29271
29271
  agentId: z.ZodString;
29272
29272
  functionId: z.ZodString;
29273
29273
  relationshipId: z.ZodOptional<z.ZodString>;
@@ -29450,9 +29450,9 @@ declare const TriggerResponse: z.ZodObject<{
29450
29450
  }>;
29451
29451
  signature: z.ZodObject<{
29452
29452
  source: z.ZodEnum<{
29453
+ body: "body";
29453
29454
  query: "query";
29454
29455
  header: "header";
29455
- body: "body";
29456
29456
  }>;
29457
29457
  key: z.ZodString;
29458
29458
  prefix: z.ZodOptional<z.ZodString>;
@@ -29460,9 +29460,9 @@ declare const TriggerResponse: z.ZodObject<{
29460
29460
  }, z.core.$strip>;
29461
29461
  signedComponents: z.ZodArray<z.ZodObject<{
29462
29462
  source: z.ZodEnum<{
29463
- literal: "literal";
29464
- header: "header";
29465
29463
  body: "body";
29464
+ header: "header";
29465
+ literal: "literal";
29466
29466
  }>;
29467
29467
  key: z.ZodOptional<z.ZodString>;
29468
29468
  value: z.ZodOptional<z.ZodString>;
@@ -29501,6 +29501,8 @@ declare const TriggerInvocationResponse: z.ZodObject<{
29501
29501
  declare const ProjectListResponse: z.ZodObject<{
29502
29502
  data: z.ZodArray<z.ZodObject<{
29503
29503
  id: z.ZodString;
29504
+ createdAt: z.ZodString;
29505
+ updatedAt: z.ZodString;
29504
29506
  name: z.ZodString;
29505
29507
  description: z.ZodNullable<z.ZodString>;
29506
29508
  models: z.ZodNullable<z.ZodObject<{
@@ -29521,8 +29523,6 @@ declare const ProjectListResponse: z.ZodObject<{
29521
29523
  transferCountIs: z.ZodOptional<z.ZodNumber>;
29522
29524
  stepCountIs: z.ZodOptional<z.ZodNumber>;
29523
29525
  }, z.core.$strip>>;
29524
- createdAt: z.ZodString;
29525
- updatedAt: z.ZodString;
29526
29526
  }, {
29527
29527
  out: {};
29528
29528
  in: {};
@@ -29792,11 +29792,11 @@ declare const ContextConfigListResponse: z.ZodObject<{
29792
29792
  declare const ApiKeyListResponse: z.ZodObject<{
29793
29793
  data: z.ZodArray<z.ZodObject<{
29794
29794
  id: z.ZodString;
29795
- name: z.ZodNullable<z.ZodString>;
29796
29795
  createdAt: z.ZodString;
29797
29796
  updatedAt: z.ZodString;
29798
- agentId: z.ZodString;
29797
+ name: z.ZodNullable<z.ZodString>;
29799
29798
  expiresAt: z.ZodNullable<z.ZodString>;
29799
+ agentId: z.ZodString;
29800
29800
  publicId: z.ZodString;
29801
29801
  keyPrefix: z.ZodString;
29802
29802
  lastUsedAt: z.ZodNullable<z.ZodString>;
@@ -29814,13 +29814,13 @@ declare const ApiKeyListResponse: z.ZodObject<{
29814
29814
  declare const CredentialReferenceListResponse: z.ZodObject<{
29815
29815
  data: z.ZodArray<z.ZodObject<{
29816
29816
  id: z.ZodString;
29817
- name: z.ZodString;
29817
+ userId: z.ZodNullable<z.ZodString>;
29818
29818
  createdAt: z.ZodString;
29819
29819
  updatedAt: z.ZodString;
29820
+ name: z.ZodString;
29820
29821
  toolId: z.ZodNullable<z.ZodString>;
29821
29822
  credentialStoreId: z.ZodString;
29822
29823
  retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
29823
- userId: z.ZodNullable<z.ZodString>;
29824
29824
  createdBy: z.ZodNullable<z.ZodString>;
29825
29825
  type: z.ZodEnum<{
29826
29826
  readonly memory: "memory";
@@ -30431,10 +30431,10 @@ declare const FunctionListResponse: z.ZodObject<{
30431
30431
  declare const FunctionToolListResponse: z.ZodObject<{
30432
30432
  data: z.ZodArray<z.ZodObject<{
30433
30433
  id: z.ZodString;
30434
- name: z.ZodString;
30435
- description: z.ZodNullable<z.ZodString>;
30436
30434
  createdAt: z.ZodString;
30437
30435
  updatedAt: z.ZodString;
30436
+ name: z.ZodString;
30437
+ description: z.ZodNullable<z.ZodString>;
30438
30438
  agentId: z.ZodString;
30439
30439
  functionId: z.ZodString;
30440
30440
  relationshipId: z.ZodOptional<z.ZodString>;
@@ -30685,9 +30685,9 @@ declare const TriggerListResponse: z.ZodObject<{
30685
30685
  }>;
30686
30686
  signature: z.ZodObject<{
30687
30687
  source: z.ZodEnum<{
30688
+ body: "body";
30688
30689
  query: "query";
30689
30690
  header: "header";
30690
- body: "body";
30691
30691
  }>;
30692
30692
  key: z.ZodString;
30693
30693
  prefix: z.ZodOptional<z.ZodString>;
@@ -30695,9 +30695,9 @@ declare const TriggerListResponse: z.ZodObject<{
30695
30695
  }, z.core.$strip>;
30696
30696
  signedComponents: z.ZodArray<z.ZodObject<{
30697
30697
  source: z.ZodEnum<{
30698
- literal: "literal";
30699
- header: "header";
30700
30698
  body: "body";
30699
+ header: "header";
30700
+ literal: "literal";
30701
30701
  }>;
30702
30702
  key: z.ZodOptional<z.ZodString>;
30703
30703
  value: z.ZodOptional<z.ZodString>;
@@ -30747,15 +30747,15 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
30747
30747
  }, z.core.$strip>;
30748
30748
  declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
30749
30749
  data: z.ZodObject<{
30750
+ enabled: z.ZodBoolean;
30750
30751
  id: z.ZodString;
30751
- name: z.ZodString;
30752
- description: z.ZodNullable<z.ZodString>;
30753
30752
  createdAt: z.ZodString;
30754
30753
  updatedAt: z.ZodString;
30755
- enabled: z.ZodBoolean;
30754
+ name: z.ZodString;
30755
+ description: z.ZodNullable<z.ZodString>;
30756
30756
  inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
30757
- messageTemplate: z.ZodNullable<z.ZodString>;
30758
30757
  outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
30758
+ messageTemplate: z.ZodNullable<z.ZodString>;
30759
30759
  authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
30760
30760
  signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30761
30761
  signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -30772,9 +30772,9 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
30772
30772
  }>;
30773
30773
  signature: z.ZodObject<{
30774
30774
  source: z.ZodEnum<{
30775
+ body: "body";
30775
30776
  query: "query";
30776
30777
  header: "header";
30777
- body: "body";
30778
30778
  }>;
30779
30779
  key: z.ZodString;
30780
30780
  prefix: z.ZodOptional<z.ZodString>;
@@ -30782,9 +30782,9 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
30782
30782
  }, z.core.$strip>;
30783
30783
  signedComponents: z.ZodArray<z.ZodObject<{
30784
30784
  source: z.ZodEnum<{
30785
- literal: "literal";
30786
- header: "header";
30787
30785
  body: "body";
30786
+ header: "header";
30787
+ literal: "literal";
30788
30788
  }>;
30789
30789
  key: z.ZodOptional<z.ZodString>;
30790
30790
  value: z.ZodOptional<z.ZodString>;
@@ -30808,15 +30808,15 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
30808
30808
  }, z.core.$strip>;
30809
30809
  declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
30810
30810
  data: z.ZodArray<z.ZodObject<{
30811
+ enabled: z.ZodBoolean;
30811
30812
  id: z.ZodString;
30812
- name: z.ZodString;
30813
- description: z.ZodNullable<z.ZodString>;
30814
30813
  createdAt: z.ZodString;
30815
30814
  updatedAt: z.ZodString;
30816
- enabled: z.ZodBoolean;
30815
+ name: z.ZodString;
30816
+ description: z.ZodNullable<z.ZodString>;
30817
30817
  inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
30818
- messageTemplate: z.ZodNullable<z.ZodString>;
30819
30818
  outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
30819
+ messageTemplate: z.ZodNullable<z.ZodString>;
30820
30820
  authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
30821
30821
  signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30822
30822
  signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -30833,9 +30833,9 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
30833
30833
  }>;
30834
30834
  signature: z.ZodObject<{
30835
30835
  source: z.ZodEnum<{
30836
+ body: "body";
30836
30837
  query: "query";
30837
30838
  header: "header";
30838
- body: "body";
30839
30839
  }>;
30840
30840
  key: z.ZodString;
30841
30841
  prefix: z.ZodOptional<z.ZodString>;
@@ -30843,9 +30843,9 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
30843
30843
  }, z.core.$strip>;
30844
30844
  signedComponents: z.ZodArray<z.ZodObject<{
30845
30845
  source: z.ZodEnum<{
30846
- literal: "literal";
30847
- header: "header";
30848
30846
  body: "body";
30847
+ header: "header";
30848
+ literal: "literal";
30849
30849
  }>;
30850
30850
  key: z.ZodOptional<z.ZodString>;
30851
30851
  value: z.ZodOptional<z.ZodString>;
@@ -30874,17 +30874,17 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
30874
30874
  }, z.core.$strip>;
30875
30875
  }, z.core.$strip>;
30876
30876
  declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
30877
+ enabled: z.ZodBoolean;
30877
30878
  id: z.ZodString;
30878
- name: z.ZodString;
30879
- description: z.ZodNullable<z.ZodString>;
30880
30879
  createdAt: z.ZodString;
30881
30880
  updatedAt: z.ZodString;
30882
- enabled: z.ZodBoolean;
30881
+ name: z.ZodString;
30882
+ description: z.ZodNullable<z.ZodString>;
30883
+ messageTemplate: z.ZodNullable<z.ZodString>;
30883
30884
  cronExpression: z.ZodNullable<z.ZodString>;
30884
30885
  cronTimezone: z.ZodNullable<z.ZodString>;
30885
30886
  runAt: z.ZodNullable<z.ZodString>;
30886
30887
  payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
30887
- messageTemplate: z.ZodNullable<z.ZodString>;
30888
30888
  maxRetries: z.ZodNumber;
30889
30889
  retryDelaySeconds: z.ZodNumber;
30890
30890
  timeoutSeconds: z.ZodNumber;
@@ -30947,17 +30947,17 @@ declare const ScheduledTriggerListResponse: z.ZodObject<{
30947
30947
  }, z.core.$strip>;
30948
30948
  declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
30949
30949
  data: z.ZodArray<z.ZodObject<{
30950
+ enabled: z.ZodBoolean;
30950
30951
  id: z.ZodString;
30951
- name: z.ZodString;
30952
- description: z.ZodNullable<z.ZodString>;
30953
30952
  createdAt: z.ZodString;
30954
30953
  updatedAt: z.ZodString;
30955
- enabled: z.ZodBoolean;
30954
+ name: z.ZodString;
30955
+ description: z.ZodNullable<z.ZodString>;
30956
+ messageTemplate: z.ZodNullable<z.ZodString>;
30956
30957
  cronExpression: z.ZodNullable<z.ZodString>;
30957
30958
  cronTimezone: z.ZodNullable<z.ZodString>;
30958
30959
  runAt: z.ZodNullable<z.ZodString>;
30959
30960
  payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
30960
- messageTemplate: z.ZodNullable<z.ZodString>;
30961
30961
  maxRetries: z.ZodNumber;
30962
30962
  retryDelaySeconds: z.ZodNumber;
30963
30963
  timeoutSeconds: z.ZodNumber;
@@ -31104,12 +31104,12 @@ declare const SubAgentSkillResponse: z.ZodObject<{
31104
31104
  }, z.core.$strip>;
31105
31105
  declare const SubAgentSkillWithIndexArrayResponse: z.ZodObject<{
31106
31106
  data: z.ZodArray<z.ZodObject<{
31107
+ metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
31107
31108
  id: z.ZodString;
31108
- name: z.ZodString;
31109
- description: z.ZodString;
31110
31109
  createdAt: z.ZodString;
31111
31110
  updatedAt: z.ZodString;
31112
- metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
31111
+ name: z.ZodString;
31112
+ description: z.ZodString;
31113
31113
  content: z.ZodString;
31114
31114
  subAgentSkillId: z.ZodString;
31115
31115
  subAgentId: z.ZodString;
@@ -31141,17 +31141,20 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
31141
31141
  stepCountIs: z.ZodOptional<z.ZodNumber>;
31142
31142
  }, z.core.$strip>>;
31143
31143
  agents: z.ZodRecord<z.ZodString, z.ZodObject<{
31144
- name: z.ZodString;
31145
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31146
31144
  createdAt: z.ZodOptional<z.ZodString>;
31147
31145
  updatedAt: z.ZodOptional<z.ZodString>;
31146
+ name: z.ZodString;
31147
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31148
31148
  defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31149
31149
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31150
31150
  id: z.ZodString;
31151
31151
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
31152
31152
  id: z.ZodString;
31153
+ createdAt: z.ZodOptional<z.ZodString>;
31154
+ updatedAt: z.ZodOptional<z.ZodString>;
31153
31155
  name: z.ZodString;
31154
31156
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31157
+ conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
31155
31158
  models: z.ZodOptional<z.ZodObject<{
31156
31159
  base: z.ZodOptional<z.ZodObject<{
31157
31160
  model: z.ZodOptional<z.ZodString>;
@@ -31175,9 +31178,6 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
31175
31178
  }, {
31176
31179
  stepCountIs?: number | undefined;
31177
31180
  }>>>>;
31178
- createdAt: z.ZodOptional<z.ZodString>;
31179
- updatedAt: z.ZodOptional<z.ZodString>;
31180
- conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
31181
31181
  type: z.ZodLiteral<"internal">;
31182
31182
  canUse: z.ZodArray<z.ZodObject<{
31183
31183
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -31285,30 +31285,30 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
31285
31285
  executeCode: z.ZodString;
31286
31286
  }, z.core.$strip>>>;
31287
31287
  triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
31288
- name: z.ZodString;
31289
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31288
+ enabled: z.ZodOptional<z.ZodBoolean>;
31290
31289
  createdAt: z.ZodOptional<z.ZodString>;
31291
31290
  updatedAt: z.ZodOptional<z.ZodString>;
31292
- enabled: z.ZodOptional<z.ZodBoolean>;
31291
+ name: z.ZodString;
31292
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31293
31293
  inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
31294
- messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31295
31294
  outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
31295
+ messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31296
31296
  authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
31297
31297
  signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31298
31298
  signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
31299
31299
  id: z.ZodOptional<z.ZodString>;
31300
31300
  }, z.core.$strip>>>;
31301
31301
  scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
31302
- name: z.ZodString;
31303
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31302
+ enabled: z.ZodOptional<z.ZodBoolean>;
31304
31303
  createdAt: z.ZodOptional<z.ZodString>;
31305
31304
  updatedAt: z.ZodOptional<z.ZodString>;
31306
- enabled: z.ZodOptional<z.ZodBoolean>;
31305
+ name: z.ZodString;
31306
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31307
+ messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31307
31308
  cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31308
31309
  cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31309
31310
  runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31310
31311
  payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
31311
- messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31312
31312
  maxRetries: z.ZodOptional<z.ZodNumber>;
31313
31313
  retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
31314
31314
  timeoutSeconds: z.ZodOptional<z.ZodNumber>;
@@ -31415,11 +31415,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
31415
31415
  executeCode: z.ZodString;
31416
31416
  }, z.core.$strip>>>;
31417
31417
  skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
31418
+ metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
31418
31419
  name: z.ZodString;
31419
31420
  description: z.ZodString;
31420
31421
  tenantId: z.ZodString;
31421
31422
  projectId: z.ZodString;
31422
- metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
31423
31423
  content: z.ZodString;
31424
31424
  }>, z.core.$strip>>>;
31425
31425
  dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -31505,13 +31505,13 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
31505
31505
  }, z.core.$strip>>;
31506
31506
  credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
31507
31507
  id: z.ZodString;
31508
- name: z.ZodString;
31508
+ userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31509
31509
  createdAt: z.ZodOptional<z.ZodString>;
31510
31510
  updatedAt: z.ZodOptional<z.ZodString>;
31511
+ name: z.ZodString;
31511
31512
  toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31512
31513
  credentialStoreId: z.ZodString;
31513
31514
  retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
31514
- userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31515
31515
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31516
31516
  type: z.ZodEnum<{
31517
31517
  readonly memory: "memory";
@@ -31529,6 +31529,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
31529
31529
  declare const FullProjectSelectResponse: z.ZodObject<{
31530
31530
  data: z.ZodObject<{
31531
31531
  id: z.ZodString;
31532
+ createdAt: z.ZodString;
31533
+ updatedAt: z.ZodString;
31532
31534
  name: z.ZodString;
31533
31535
  description: z.ZodNullable<z.ZodString>;
31534
31536
  models: z.ZodNullable<z.ZodObject<{
@@ -31549,20 +31551,21 @@ declare const FullProjectSelectResponse: z.ZodObject<{
31549
31551
  transferCountIs: z.ZodOptional<z.ZodNumber>;
31550
31552
  stepCountIs: z.ZodOptional<z.ZodNumber>;
31551
31553
  }, z.core.$strip>>;
31552
- createdAt: z.ZodString;
31553
- updatedAt: z.ZodString;
31554
31554
  agents: z.ZodRecord<z.ZodString, z.ZodObject<{
31555
31555
  id: z.ZodString;
31556
- name: z.ZodString;
31557
- description: z.ZodNullable<z.ZodString>;
31558
31556
  createdAt: z.ZodString;
31559
31557
  updatedAt: z.ZodString;
31558
+ name: z.ZodString;
31559
+ description: z.ZodNullable<z.ZodString>;
31560
31560
  defaultSubAgentId: z.ZodNullable<z.ZodString>;
31561
31561
  contextConfigId: z.ZodNullable<z.ZodString>;
31562
31562
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
31563
31563
  id: z.ZodString;
31564
+ createdAt: z.ZodString;
31565
+ updatedAt: z.ZodString;
31564
31566
  name: z.ZodString;
31565
31567
  description: z.ZodNullable<z.ZodString>;
31568
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
31566
31569
  models: z.ZodNullable<z.ZodType<{
31567
31570
  base?: {
31568
31571
  model?: string | undefined;
@@ -31625,9 +31628,6 @@ declare const FullProjectSelectResponse: z.ZodObject<{
31625
31628
  }, {
31626
31629
  stepCountIs?: number | undefined;
31627
31630
  }>>>;
31628
- createdAt: z.ZodString;
31629
- updatedAt: z.ZodString;
31630
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
31631
31631
  type: z.ZodLiteral<"internal">;
31632
31632
  canUse: z.ZodArray<z.ZodObject<{
31633
31633
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -31699,10 +31699,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
31699
31699
  }, z.core.$strip>>>;
31700
31700
  functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
31701
31701
  id: z.ZodString;
31702
- name: z.ZodString;
31703
- description: z.ZodNullable<z.ZodString>;
31704
31702
  createdAt: z.ZodString;
31705
31703
  updatedAt: z.ZodString;
31704
+ name: z.ZodString;
31705
+ description: z.ZodNullable<z.ZodString>;
31706
31706
  agentId: z.ZodString;
31707
31707
  functionId: z.ZodString;
31708
31708
  relationshipId: z.ZodOptional<z.ZodString>;
@@ -31808,10 +31808,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
31808
31808
  }>, z.core.$strip>>;
31809
31809
  functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
31810
31810
  id: z.ZodString;
31811
- name: z.ZodString;
31812
- description: z.ZodNullable<z.ZodString>;
31813
31811
  createdAt: z.ZodString;
31814
31812
  updatedAt: z.ZodString;
31813
+ name: z.ZodString;
31814
+ description: z.ZodNullable<z.ZodString>;
31815
31815
  agentId: z.ZodString;
31816
31816
  functionId: z.ZodString;
31817
31817
  relationshipId: z.ZodOptional<z.ZodString>;
@@ -31956,13 +31956,13 @@ declare const FullProjectSelectResponse: z.ZodObject<{
31956
31956
  }, z.core.$strip>>;
31957
31957
  credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
31958
31958
  id: z.ZodString;
31959
- name: z.ZodString;
31959
+ userId: z.ZodNullable<z.ZodString>;
31960
31960
  createdAt: z.ZodString;
31961
31961
  updatedAt: z.ZodString;
31962
+ name: z.ZodString;
31962
31963
  toolId: z.ZodNullable<z.ZodString>;
31963
31964
  credentialStoreId: z.ZodString;
31964
31965
  retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
31965
- userId: z.ZodNullable<z.ZodString>;
31966
31966
  createdBy: z.ZodNullable<z.ZodString>;
31967
31967
  type: z.ZodEnum<{
31968
31968
  readonly memory: "memory";
@@ -32553,6 +32553,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
32553
32553
  declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
32554
32554
  data: z.ZodObject<{
32555
32555
  id: z.ZodString;
32556
+ createdAt: z.ZodString;
32557
+ updatedAt: z.ZodString;
32556
32558
  name: z.ZodString;
32557
32559
  description: z.ZodNullable<z.ZodString>;
32558
32560
  models: z.ZodNullable<z.ZodObject<{
@@ -32573,8 +32575,6 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
32573
32575
  transferCountIs: z.ZodOptional<z.ZodNumber>;
32574
32576
  stepCountIs: z.ZodOptional<z.ZodNumber>;
32575
32577
  }, z.core.$strip>>;
32576
- createdAt: z.ZodString;
32577
- updatedAt: z.ZodString;
32578
32578
  tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
32579
32579
  createdAt: z.ZodString;
32580
32580
  updatedAt: z.ZodString;
@@ -32606,10 +32606,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
32606
32606
  }>, z.core.$strip>>;
32607
32607
  functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
32608
32608
  id: z.ZodString;
32609
- name: z.ZodString;
32610
- description: z.ZodNullable<z.ZodString>;
32611
32609
  createdAt: z.ZodString;
32612
32610
  updatedAt: z.ZodString;
32611
+ name: z.ZodString;
32612
+ description: z.ZodNullable<z.ZodString>;
32613
32613
  agentId: z.ZodString;
32614
32614
  functionId: z.ZodString;
32615
32615
  relationshipId: z.ZodOptional<z.ZodString>;
@@ -32754,13 +32754,13 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
32754
32754
  }, z.core.$strip>>;
32755
32755
  credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
32756
32756
  id: z.ZodString;
32757
- name: z.ZodString;
32757
+ userId: z.ZodNullable<z.ZodString>;
32758
32758
  createdAt: z.ZodString;
32759
32759
  updatedAt: z.ZodString;
32760
+ name: z.ZodString;
32760
32761
  toolId: z.ZodNullable<z.ZodString>;
32761
32762
  credentialStoreId: z.ZodString;
32762
32763
  retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
32763
- userId: z.ZodNullable<z.ZodString>;
32764
32764
  createdBy: z.ZodNullable<z.ZodString>;
32765
32765
  type: z.ZodEnum<{
32766
32766
  readonly memory: "memory";
@@ -33345,10 +33345,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
33345
33345
  }, z.core.$strip>>>;
33346
33346
  agents: z.ZodRecord<z.ZodString, z.ZodObject<{
33347
33347
  id: z.ZodString;
33348
- name: z.ZodString;
33349
- description: z.ZodNullable<z.ZodString>;
33350
33348
  createdAt: z.ZodString;
33351
33349
  updatedAt: z.ZodString;
33350
+ name: z.ZodString;
33351
+ description: z.ZodNullable<z.ZodString>;
33352
33352
  defaultSubAgentId: z.ZodNullable<z.ZodString>;
33353
33353
  contextConfigId: z.ZodNullable<z.ZodString>;
33354
33354
  tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
@@ -33398,10 +33398,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
33398
33398
  }, z.core.$strip>>>;
33399
33399
  functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
33400
33400
  id: z.ZodString;
33401
- name: z.ZodString;
33402
- description: z.ZodNullable<z.ZodString>;
33403
33401
  createdAt: z.ZodString;
33404
33402
  updatedAt: z.ZodString;
33403
+ name: z.ZodString;
33404
+ description: z.ZodNullable<z.ZodString>;
33405
33405
  agentId: z.ZodString;
33406
33406
  functionId: z.ZodString;
33407
33407
  relationshipId: z.ZodOptional<z.ZodString>;
@@ -33477,8 +33477,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
33477
33477
  prompt: z.ZodNullable<z.ZodString>;
33478
33478
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
33479
33479
  id: z.ZodString;
33480
+ createdAt: z.ZodString;
33481
+ updatedAt: z.ZodString;
33480
33482
  name: z.ZodString;
33481
33483
  description: z.ZodNullable<z.ZodString>;
33484
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
33482
33485
  models: z.ZodNullable<z.ZodType<{
33483
33486
  base?: {
33484
33487
  model?: string | undefined;
@@ -33541,9 +33544,6 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
33541
33544
  }, {
33542
33545
  stepCountIs?: number | undefined;
33543
33546
  }>>>;
33544
- createdAt: z.ZodString;
33545
- updatedAt: z.ZodString;
33546
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
33547
33547
  type: z.ZodLiteral<"internal">;
33548
33548
  canUse: z.ZodArray<z.ZodObject<{
33549
33549
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -33582,17 +33582,20 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
33582
33582
  }, z.core.$strip>;
33583
33583
  declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
33584
33584
  data: z.ZodObject<{
33585
- name: z.ZodString;
33586
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33587
33585
  createdAt: z.ZodOptional<z.ZodString>;
33588
33586
  updatedAt: z.ZodOptional<z.ZodString>;
33587
+ name: z.ZodString;
33588
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33589
33589
  defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33590
33590
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33591
33591
  id: z.ZodString;
33592
33592
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
33593
33593
  id: z.ZodString;
33594
+ createdAt: z.ZodOptional<z.ZodString>;
33595
+ updatedAt: z.ZodOptional<z.ZodString>;
33594
33596
  name: z.ZodString;
33595
33597
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33598
+ conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
33596
33599
  models: z.ZodOptional<z.ZodObject<{
33597
33600
  base: z.ZodOptional<z.ZodObject<{
33598
33601
  model: z.ZodOptional<z.ZodString>;
@@ -33616,9 +33619,6 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
33616
33619
  }, {
33617
33620
  stepCountIs?: number | undefined;
33618
33621
  }>>>>;
33619
- createdAt: z.ZodOptional<z.ZodString>;
33620
- updatedAt: z.ZodOptional<z.ZodString>;
33621
- conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
33622
33622
  type: z.ZodLiteral<"internal">;
33623
33623
  canUse: z.ZodArray<z.ZodObject<{
33624
33624
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -33726,30 +33726,30 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
33726
33726
  executeCode: z.ZodString;
33727
33727
  }, z.core.$strip>>>;
33728
33728
  triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
33729
- name: z.ZodString;
33730
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33729
+ enabled: z.ZodOptional<z.ZodBoolean>;
33731
33730
  createdAt: z.ZodOptional<z.ZodString>;
33732
33731
  updatedAt: z.ZodOptional<z.ZodString>;
33733
- enabled: z.ZodOptional<z.ZodBoolean>;
33732
+ name: z.ZodString;
33733
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33734
33734
  inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
33735
- messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33736
33735
  outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
33736
+ messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33737
33737
  authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
33738
33738
  signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33739
33739
  signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
33740
33740
  id: z.ZodOptional<z.ZodString>;
33741
33741
  }, z.core.$strip>>>;
33742
33742
  scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
33743
- name: z.ZodString;
33744
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33743
+ enabled: z.ZodOptional<z.ZodBoolean>;
33745
33744
  createdAt: z.ZodOptional<z.ZodString>;
33746
33745
  updatedAt: z.ZodOptional<z.ZodString>;
33747
- enabled: z.ZodOptional<z.ZodBoolean>;
33746
+ name: z.ZodString;
33747
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33748
+ messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33748
33749
  cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33749
33750
  cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33750
33751
  runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33751
33752
  payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
33752
- messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33753
33753
  maxRetries: z.ZodOptional<z.ZodNumber>;
33754
33754
  retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
33755
33755
  timeoutSeconds: z.ZodOptional<z.ZodNumber>;
@@ -33798,16 +33798,19 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
33798
33798
  declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
33799
33799
  data: z.ZodObject<{
33800
33800
  id: z.ZodString;
33801
- name: z.ZodString;
33802
- description: z.ZodNullable<z.ZodString>;
33803
33801
  createdAt: z.ZodString;
33804
33802
  updatedAt: z.ZodString;
33803
+ name: z.ZodString;
33804
+ description: z.ZodNullable<z.ZodString>;
33805
33805
  defaultSubAgentId: z.ZodNullable<z.ZodString>;
33806
33806
  contextConfigId: z.ZodNullable<z.ZodString>;
33807
33807
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
33808
33808
  id: z.ZodString;
33809
+ createdAt: z.ZodString;
33810
+ updatedAt: z.ZodString;
33809
33811
  name: z.ZodString;
33810
33812
  description: z.ZodNullable<z.ZodString>;
33813
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
33811
33814
  models: z.ZodNullable<z.ZodType<{
33812
33815
  base?: {
33813
33816
  model?: string | undefined;
@@ -33870,9 +33873,6 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
33870
33873
  }, {
33871
33874
  stepCountIs?: number | undefined;
33872
33875
  }>>>;
33873
- createdAt: z.ZodString;
33874
- updatedAt: z.ZodString;
33875
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
33876
33876
  type: z.ZodLiteral<"internal">;
33877
33877
  canUse: z.ZodArray<z.ZodObject<{
33878
33878
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -33944,10 +33944,10 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
33944
33944
  }, z.core.$strip>>>;
33945
33945
  functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
33946
33946
  id: z.ZodString;
33947
- name: z.ZodString;
33948
- description: z.ZodNullable<z.ZodString>;
33949
33947
  createdAt: z.ZodString;
33950
33948
  updatedAt: z.ZodString;
33949
+ name: z.ZodString;
33950
+ description: z.ZodNullable<z.ZodString>;
33951
33951
  agentId: z.ZodString;
33952
33952
  functionId: z.ZodString;
33953
33953
  relationshipId: z.ZodOptional<z.ZodString>;