@inkeep/agents-core 0.59.1 → 0.59.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/dist/auth/auth-schema.d.ts +108 -108
  2. package/dist/auth/permissions.d.ts +9 -9
  3. package/dist/client-exports.d.ts +2 -2
  4. package/dist/client-exports.js +2 -2
  5. package/dist/constants/signoz-queries.d.ts +30 -106
  6. package/dist/constants/signoz-queries.js +55 -108
  7. package/dist/data-access/manage/agents.d.ts +30 -30
  8. package/dist/data-access/manage/artifactComponents.d.ts +10 -10
  9. package/dist/data-access/manage/contextConfigs.d.ts +8 -8
  10. package/dist/data-access/manage/dataComponents.d.ts +2 -2
  11. package/dist/data-access/manage/functionTools.d.ts +14 -14
  12. package/dist/data-access/manage/skills.d.ts +19 -19
  13. package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
  14. package/dist/data-access/manage/subAgentRelations.d.ts +22 -22
  15. package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
  16. package/dist/data-access/manage/subAgents.d.ts +18 -18
  17. package/dist/data-access/manage/tools.d.ts +30 -30
  18. package/dist/data-access/manage/triggers.d.ts +1 -1
  19. package/dist/data-access/runtime/apiKeys.d.ts +20 -20
  20. package/dist/data-access/runtime/apps.d.ts +16 -16
  21. package/dist/data-access/runtime/conversations.d.ts +24 -24
  22. package/dist/data-access/runtime/messages.d.ts +21 -21
  23. package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +3 -3
  24. package/dist/data-access/runtime/tasks.d.ts +5 -5
  25. package/dist/db/manage/manage-schema.d.ts +451 -451
  26. package/dist/db/runtime/runtime-schema.d.ts +332 -332
  27. package/dist/index.d.ts +3 -3
  28. package/dist/index.js +3 -3
  29. package/dist/utils/index.d.ts +2 -2
  30. package/dist/utils/index.js +2 -2
  31. package/dist/utils/schema-conversion.d.ts +27 -1
  32. package/dist/utils/schema-conversion.js +68 -1
  33. package/dist/utils/work-app-mcp.js +4 -3
  34. package/dist/validation/schemas.d.ts +532 -532
  35. package/package.json +1 -1
@@ -820,11 +820,11 @@ declare const SubAgentApiInsertSchema: z.ZodObject<OmitAgentScope<{
820
820
  }, z.core.$strip>>;
821
821
  }>, z.core.$strip>;
822
822
  declare const SubAgentApiUpdateSchema: z.ZodObject<{
823
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
824
823
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
825
- createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
826
- updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
824
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
827
825
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
826
+ prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
827
+ conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
828
828
  models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
829
829
  base: z.ZodOptional<z.ZodObject<{
830
830
  model: z.ZodOptional<z.ZodString>;
@@ -848,8 +848,8 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
848
848
  }, {
849
849
  stepCountIs?: number | undefined;
850
850
  }>>>>>>;
851
- prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
852
- conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
851
+ createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
852
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
853
853
  }, z.core.$strip>;
854
854
  declare const SubAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
855
855
  createdAt: drizzle_orm_pg_core873.PgColumn<{
@@ -2483,7 +2483,7 @@ declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
2483
2483
  }, {}, {
2484
2484
  length: 256;
2485
2485
  }>;
2486
- }, "name" | "id" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "description" | "models" | "stopWhen" | "prompt" | "defaultSubAgentId" | "contextConfigId" | "statusUpdates">, undefined>, undefined>;
2486
+ }, "id" | "name" | "description" | "defaultSubAgentId" | "tenantId" | "projectId" | "prompt" | "models" | "stopWhen" | "createdAt" | "updatedAt" | "contextConfigId" | "statusUpdates">, undefined>, undefined>;
2487
2487
  declare const AgentUpdateSchema: z.ZodObject<{
2488
2488
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2489
2489
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -2750,9 +2750,11 @@ declare const AgentApiSelectSchema: z.ZodObject<OmitProjectScope<{
2750
2750
  id: z.ZodString;
2751
2751
  }>, z.core.$strip>;
2752
2752
  declare const AgentApiInsertSchema: z.ZodObject<{
2753
- name: z.ZodString;
2754
2753
  id: z.ZodString;
2754
+ name: z.ZodString;
2755
2755
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2756
+ defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2757
+ prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2756
2758
  models: z.ZodOptional<z.ZodNullable<z.ZodType<{
2757
2759
  base?: {
2758
2760
  model?: string | undefined;
@@ -2815,8 +2817,6 @@ declare const AgentApiInsertSchema: z.ZodObject<{
2815
2817
  }, {
2816
2818
  transferCountIs?: number | undefined;
2817
2819
  }>>>>;
2818
- prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2819
- defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2820
2820
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2821
2821
  statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
2822
2822
  enabled?: boolean | undefined;
@@ -2879,6 +2879,8 @@ declare const AgentApiInsertSchema: z.ZodObject<{
2879
2879
  declare const AgentApiUpdateSchema: z.ZodObject<{
2880
2880
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2881
2881
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2882
+ defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2883
+ prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2882
2884
  models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
2883
2885
  base?: {
2884
2886
  model?: string | undefined;
@@ -2941,8 +2943,6 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
2941
2943
  }, {
2942
2944
  transferCountIs?: number | undefined;
2943
2945
  }>>>>>>;
2944
- prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2945
- defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2946
2946
  contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2947
2947
  statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
2948
2948
  enabled?: boolean | undefined;
@@ -3066,8 +3066,8 @@ declare const TriggerOutputTransformSchema: z.ZodObject<{
3066
3066
  */
3067
3067
  declare const SignatureSourceSchema: z.ZodObject<{
3068
3068
  source: z.ZodEnum<{
3069
- body: "body";
3070
3069
  query: "query";
3070
+ body: "body";
3071
3071
  header: "header";
3072
3072
  }>;
3073
3073
  key: z.ZodString;
@@ -3206,8 +3206,8 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
3206
3206
  }>;
3207
3207
  signature: z.ZodObject<{
3208
3208
  source: z.ZodEnum<{
3209
- body: "body";
3210
3209
  query: "query";
3210
+ body: "body";
3211
3211
  header: "header";
3212
3212
  }>;
3213
3213
  key: z.ZodString;
@@ -3302,8 +3302,8 @@ declare const TriggerSelectSchema: z.ZodObject<{
3302
3302
  }>;
3303
3303
  signature: z.ZodObject<{
3304
3304
  source: z.ZodEnum<{
3305
- body: "body";
3306
3305
  query: "query";
3306
+ body: "body";
3307
3307
  header: "header";
3308
3308
  }>;
3309
3309
  key: z.ZodString;
@@ -3499,7 +3499,7 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
3499
3499
  algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
3500
3500
  encoding: "hex" | "base64";
3501
3501
  signature: {
3502
- source: "body" | "query" | "header";
3502
+ source: "query" | "body" | "header";
3503
3503
  key: string;
3504
3504
  prefix?: string | undefined;
3505
3505
  regex?: string | undefined;
@@ -3536,7 +3536,7 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
3536
3536
  algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
3537
3537
  encoding: "hex" | "base64";
3538
3538
  signature: {
3539
- source: "body" | "query" | "header";
3539
+ source: "query" | "body" | "header";
3540
3540
  key: string;
3541
3541
  prefix?: string | undefined;
3542
3542
  regex?: string | undefined;
@@ -3869,7 +3869,7 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
3869
3869
  algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
3870
3870
  encoding: "hex" | "base64";
3871
3871
  signature: {
3872
- source: "body" | "query" | "header";
3872
+ source: "query" | "body" | "header";
3873
3873
  key: string;
3874
3874
  prefix?: string | undefined;
3875
3875
  regex?: string | undefined;
@@ -3906,7 +3906,7 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
3906
3906
  algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
3907
3907
  encoding: "hex" | "base64";
3908
3908
  signature: {
3909
- source: "body" | "query" | "header";
3909
+ source: "query" | "body" | "header";
3910
3910
  key: string;
3911
3911
  prefix?: string | undefined;
3912
3912
  regex?: string | undefined;
@@ -4079,7 +4079,7 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
4079
4079
  }, {}, {
4080
4080
  length: 256;
4081
4081
  }>;
4082
- }, "enabled" | "name" | "id" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "agentId" | "description" | "createdBy" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification" | "runAsUserId">, undefined>, undefined>;
4082
+ }, "id" | "name" | "description" | "tenantId" | "projectId" | "agentId" | "createdAt" | "updatedAt" | "enabled" | "inputSchema" | "createdBy" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification" | "runAsUserId">, undefined>, undefined>;
4083
4083
  declare const TriggerUpdateSchema: z.ZodObject<{
4084
4084
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4085
4085
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -4131,8 +4131,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
4131
4131
  }>;
4132
4132
  signature: z.ZodObject<{
4133
4133
  source: z.ZodEnum<{
4134
- body: "body";
4135
4134
  query: "query";
4135
+ body: "body";
4136
4136
  header: "header";
4137
4137
  }>;
4138
4138
  key: z.ZodString;
@@ -4166,12 +4166,12 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
4166
4166
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4167
4167
  }>, z.core.$strip>;
4168
4168
  declare const TriggerApiInsertSchema: z.ZodObject<{
4169
- enabled: z.ZodOptional<z.ZodBoolean>;
4170
- name: z.ZodString;
4171
4169
  id: z.ZodOptional<z.ZodString>;
4170
+ name: z.ZodString;
4172
4171
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4173
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4172
+ enabled: z.ZodOptional<z.ZodBoolean>;
4174
4173
  inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
4174
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4175
4175
  outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
4176
4176
  messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4177
4177
  authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
@@ -4180,14 +4180,14 @@ declare const TriggerApiInsertSchema: z.ZodObject<{
4180
4180
  runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4181
4181
  }, z.core.$strip>;
4182
4182
  declare const TriggerApiUpdateSchema: z.ZodObject<{
4183
- enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
4184
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4185
4183
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4184
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4185
+ description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
4186
4186
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
4187
4187
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
4188
- description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
4189
- createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
4188
+ enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
4190
4189
  inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
4190
+ createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
4191
4191
  outputTransform: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
4192
4192
  messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
4193
4193
  authentication: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
@@ -4196,14 +4196,14 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
4196
4196
  runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
4197
4197
  }, z.core.$strip>;
4198
4198
  declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
4199
- enabled: z.ZodBoolean;
4200
- name: z.ZodString;
4201
4199
  id: z.ZodString;
4200
+ name: z.ZodString;
4201
+ description: z.ZodNullable<z.ZodString>;
4202
4202
  createdAt: z.ZodString;
4203
4203
  updatedAt: z.ZodString;
4204
- description: z.ZodNullable<z.ZodString>;
4205
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4204
+ enabled: z.ZodBoolean;
4206
4205
  inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
4206
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4207
4207
  outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
4208
4208
  messageTemplate: z.ZodNullable<z.ZodString>;
4209
4209
  authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
@@ -4222,8 +4222,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
4222
4222
  }>;
4223
4223
  signature: z.ZodObject<{
4224
4224
  source: z.ZodEnum<{
4225
- body: "body";
4226
4225
  query: "query";
4226
+ body: "body";
4227
4227
  header: "header";
4228
4228
  }>;
4229
4229
  key: z.ZodString;
@@ -4739,7 +4739,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert",
4739
4739
  }, {}, {
4740
4740
  length: 256;
4741
4741
  }>;
4742
- }, "id" | "createdAt" | "status" | "ref" | "tenantId" | "projectId" | "agentId" | "conversationId" | "triggerId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
4742
+ }, "id" | "tenantId" | "projectId" | "agentId" | "createdAt" | "ref" | "status" | "triggerId" | "conversationId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
4743
4743
  declare const TriggerInvocationUpdateSchema: z.ZodObject<{
4744
4744
  triggerId: z.ZodOptional<z.ZodString>;
4745
4745
  conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -4797,7 +4797,6 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<OmitAgentScope<{
4797
4797
  }>, z.core.$strip>;
4798
4798
  declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
4799
4799
  createdAt: z.ZodOptional<z.ZodString>;
4800
- status: z.ZodOptional<z.ZodString>;
4801
4800
  ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
4802
4801
  type: "commit" | "tag" | "branch";
4803
4802
  name: string;
@@ -4815,8 +4814,9 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
4815
4814
  name: string;
4816
4815
  hash: string;
4817
4816
  }>>>>;
4818
- conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4817
+ status: z.ZodOptional<z.ZodString>;
4819
4818
  triggerId: z.ZodString;
4819
+ conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4820
4820
  requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
4821
4821
  transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
4822
4822
  errorMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4825,7 +4825,6 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
4825
4825
  declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
4826
4826
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4827
4827
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
4828
- status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
4829
4828
  ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
4830
4829
  type: "commit" | "tag" | "branch";
4831
4830
  name: string;
@@ -4843,8 +4842,9 @@ declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
4843
4842
  name: string;
4844
4843
  hash: string;
4845
4844
  }>>>>>>;
4846
- conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
4845
+ status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
4847
4846
  triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4847
+ conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
4848
4848
  requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
4849
4849
  transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
4850
4850
  errorMessage: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
@@ -4875,13 +4875,13 @@ declare const ScheduledTriggerSelectSchema: z.ZodObject<{
4875
4875
  in: {};
4876
4876
  }>;
4877
4877
  declare const ScheduledTriggerInsertSchema: z.ZodObject<{
4878
- enabled: z.ZodOptional<z.ZodBoolean>;
4879
- name: z.ZodString;
4880
4878
  id: z.ZodString;
4879
+ name: z.ZodString;
4880
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4881
4881
  tenantId: z.ZodString;
4882
4882
  projectId: z.ZodString;
4883
4883
  agentId: z.ZodString;
4884
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4884
+ enabled: z.ZodOptional<z.ZodBoolean>;
4885
4885
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4886
4886
  messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4887
4887
  runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4897,12 +4897,12 @@ declare const ScheduledTriggerInsertSchema: z.ZodObject<{
4897
4897
  in: {};
4898
4898
  }>;
4899
4899
  declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
4900
- name: z.ZodOptional<z.ZodString>;
4901
4900
  id: z.ZodOptional<z.ZodString>;
4901
+ name: z.ZodOptional<z.ZodString>;
4902
+ description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
4902
4903
  tenantId: z.ZodOptional<z.ZodString>;
4903
4904
  projectId: z.ZodOptional<z.ZodString>;
4904
4905
  agentId: z.ZodOptional<z.ZodString>;
4905
- description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
4906
4906
  createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
4907
4907
  messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
4908
4908
  runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -4940,9 +4940,9 @@ declare const ScheduledTriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
4940
4940
  createdBy: z.ZodNullable<z.ZodString>;
4941
4941
  }>, z.core.$strip>;
4942
4942
  declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
4943
- enabled: z.ZodOptional<z.ZodBoolean>;
4944
4943
  name: z.ZodString;
4945
4944
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4945
+ enabled: z.ZodOptional<z.ZodBoolean>;
4946
4946
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4947
4947
  messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4948
4948
  runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4956,9 +4956,9 @@ declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
4956
4956
  id: z.ZodOptional<z.ZodString>;
4957
4957
  }, z.core.$strip>;
4958
4958
  declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
4959
- enabled: z.ZodOptional<z.ZodBoolean>;
4960
4959
  name: z.ZodString;
4961
4960
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4961
+ enabled: z.ZodOptional<z.ZodBoolean>;
4962
4962
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4963
4963
  messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4964
4964
  runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4972,10 +4972,10 @@ declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
4972
4972
  id: z.ZodOptional<z.ZodString>;
4973
4973
  }, z.core.$strip>;
4974
4974
  declare const ScheduledTriggerApiUpdateSchema: z.ZodObject<{
4975
- enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
4976
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4977
4975
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4976
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4978
4977
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
4978
+ enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
4979
4979
  createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
4980
4980
  messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
4981
4981
  runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
@@ -5810,7 +5810,7 @@ declare const ScheduledWorkflowInsertSchema: drizzle_zod19.BuildSchema<"insert",
5810
5810
  }, {}, {
5811
5811
  length: 256;
5812
5812
  }>;
5813
- }, "name" | "id" | "createdAt" | "status" | "updatedAt" | "tenantId" | "projectId" | "agentId" | "description" | "workflowRunId" | "scheduledTriggerId">, undefined>, undefined>;
5813
+ }, "id" | "name" | "description" | "tenantId" | "projectId" | "agentId" | "createdAt" | "updatedAt" | "status" | "workflowRunId" | "scheduledTriggerId">, undefined>, undefined>;
5814
5814
  declare const ScheduledWorkflowUpdateSchema: z.ZodObject<{
5815
5815
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5816
5816
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -5842,21 +5842,21 @@ declare const ScheduledWorkflowApiSelectSchema: z.ZodObject<OmitAgentScope<{
5842
5842
  }>, z.core.$strip>;
5843
5843
  declare const ScheduledWorkflowApiInsertSchema: z.ZodObject<{
5844
5844
  name: z.ZodString;
5845
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5845
5846
  createdAt: z.ZodOptional<z.ZodString>;
5846
- status: z.ZodOptional<z.ZodString>;
5847
5847
  updatedAt: z.ZodOptional<z.ZodString>;
5848
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5848
+ status: z.ZodOptional<z.ZodString>;
5849
5849
  workflowRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5850
5850
  scheduledTriggerId: z.ZodString;
5851
5851
  id: z.ZodOptional<z.ZodString>;
5852
5852
  }, z.core.$strip>;
5853
5853
  declare const ScheduledWorkflowApiUpdateSchema: z.ZodObject<{
5854
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5855
5854
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5855
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5856
+ description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
5856
5857
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5857
- status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5858
5858
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5859
- description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
5859
+ status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5860
5860
  workflowRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
5861
5861
  scheduledTriggerId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5862
5862
  }, z.core.$strip>;
@@ -5865,9 +5865,9 @@ type ScheduledWorkflowInsert = z.infer<typeof ScheduledWorkflowInsertSchema>;
5865
5865
  type ScheduledWorkflowUpdate = z.infer<typeof ScheduledWorkflowUpdateSchema>;
5866
5866
  declare const ScheduledTriggerInvocationStatusEnum: z.ZodEnum<{
5867
5867
  pending: "pending";
5868
- failed: "failed";
5869
5868
  running: "running";
5870
5869
  completed: "completed";
5870
+ failed: "failed";
5871
5871
  cancelled: "cancelled";
5872
5872
  }>;
5873
5873
  declare const ScheduledTriggerInvocationSelectSchema: z.ZodObject<{
@@ -5895,9 +5895,9 @@ declare const ScheduledTriggerInvocationSelectSchema: z.ZodObject<{
5895
5895
  resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
5896
5896
  status: z.ZodEnum<{
5897
5897
  pending: "pending";
5898
- failed: "failed";
5899
5898
  running: "running";
5900
5899
  completed: "completed";
5900
+ failed: "failed";
5901
5901
  cancelled: "cancelled";
5902
5902
  }>;
5903
5903
  }, {
@@ -5956,7 +5956,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
5956
5956
  tableName: "scheduled_trigger_invocations";
5957
5957
  dataType: "string";
5958
5958
  columnType: "PgVarchar";
5959
- data: "pending" | "failed" | "running" | "completed" | "cancelled";
5959
+ data: "pending" | "running" | "completed" | "failed" | "cancelled";
5960
5960
  driverParam: string;
5961
5961
  notNull: true;
5962
5962
  hasDefault: false;
@@ -5969,7 +5969,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
5969
5969
  generated: undefined;
5970
5970
  }, {}, {
5971
5971
  length: 50;
5972
- $type: "pending" | "failed" | "running" | "completed" | "cancelled";
5972
+ $type: "pending" | "running" | "completed" | "failed" | "cancelled";
5973
5973
  }>;
5974
5974
  scheduledFor: drizzle_orm_pg_core873.PgColumn<{
5975
5975
  name: "scheduled_for";
@@ -6241,7 +6241,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
6241
6241
  tableName: "scheduled_trigger_invocations";
6242
6242
  dataType: "string";
6243
6243
  columnType: "PgVarchar";
6244
- data: "pending" | "failed" | "running" | "completed" | "cancelled";
6244
+ data: "pending" | "running" | "completed" | "failed" | "cancelled";
6245
6245
  driverParam: string;
6246
6246
  notNull: true;
6247
6247
  hasDefault: false;
@@ -6254,7 +6254,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
6254
6254
  generated: undefined;
6255
6255
  }, {}, {
6256
6256
  length: 50;
6257
- $type: "pending" | "failed" | "running" | "completed" | "cancelled";
6257
+ $type: "pending" | "running" | "completed" | "failed" | "cancelled";
6258
6258
  }>;
6259
6259
  scheduledFor: drizzle_orm_pg_core873.PgColumn<{
6260
6260
  name: "scheduled_for";
@@ -6474,7 +6474,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
6474
6474
  }, {}, {
6475
6475
  length: 256;
6476
6476
  }>;
6477
- }, "id" | "createdAt" | "status" | "ref" | "tenantId" | "projectId" | "agentId" | "scheduledTriggerId" | "conversationIds" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
6477
+ }, "id" | "tenantId" | "projectId" | "agentId" | "createdAt" | "ref" | "status" | "scheduledTriggerId" | "conversationIds" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
6478
6478
  declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
6479
6479
  scheduledTriggerId: z.ZodOptional<z.ZodString>;
6480
6480
  ref: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
@@ -6536,15 +6536,14 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<OmitAgentSc
6536
6536
  resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
6537
6537
  status: z.ZodEnum<{
6538
6538
  pending: "pending";
6539
- failed: "failed";
6540
6539
  running: "running";
6541
6540
  completed: "completed";
6541
+ failed: "failed";
6542
6542
  cancelled: "cancelled";
6543
6543
  }>;
6544
6544
  }>, z.core.$strip>;
6545
6545
  declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
6546
6546
  createdAt: z.ZodOptional<z.ZodString>;
6547
- status: z.ZodString;
6548
6547
  ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
6549
6548
  type: "commit" | "tag" | "branch";
6550
6549
  name: string;
@@ -6562,6 +6561,7 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
6562
6561
  name: string;
6563
6562
  hash: string;
6564
6563
  }>>>>;
6564
+ status: z.ZodString;
6565
6565
  scheduledTriggerId: z.ZodString;
6566
6566
  conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
6567
6567
  scheduledFor: z.ZodString;
@@ -6575,7 +6575,6 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
6575
6575
  declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
6576
6576
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6577
6577
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
6578
- status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6579
6578
  ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
6580
6579
  type: "commit" | "tag" | "branch";
6581
6580
  name: string;
@@ -6593,6 +6592,7 @@ declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
6593
6592
  name: string;
6594
6593
  hash: string;
6595
6594
  }>>>>>>;
6595
+ status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6596
6596
  scheduledTriggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6597
6597
  conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
6598
6598
  scheduledFor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -6724,11 +6724,11 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
6724
6724
  }, z.core.$strip>;
6725
6725
  }>, z.core.$strip>;
6726
6726
  declare const TaskApiUpdateSchema: z.ZodObject<{
6727
- metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
6728
6727
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6728
+ agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6729
6729
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
6730
- status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6731
6730
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
6731
+ metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
6732
6732
  ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
6733
6733
  type: z.ZodEnum<{
6734
6734
  commit: "commit";
@@ -6738,7 +6738,7 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
6738
6738
  name: z.ZodString;
6739
6739
  hash: z.ZodString;
6740
6740
  }, z.core.$strip>>>;
6741
- agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6741
+ status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6742
6742
  subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6743
6743
  contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6744
6744
  conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
@@ -7680,12 +7680,12 @@ declare const ToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
7680
7680
  }>;
7681
7681
  }, undefined>, undefined>;
7682
7682
  declare const ToolInsertSchema: z.ZodObject<{
7683
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
7684
- name: z.ZodString;
7685
7683
  id: z.ZodString;
7684
+ name: z.ZodString;
7685
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7686
7686
  tenantId: z.ZodString;
7687
7687
  projectId: z.ZodString;
7688
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7688
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
7689
7689
  config: z.ZodObject<{
7690
7690
  type: z.ZodLiteral<"mcp">;
7691
7691
  mcp: z.ZodObject<{
@@ -7845,11 +7845,13 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
7845
7845
  }, z.core.$strip>;
7846
7846
  }>, z.core.$strip>;
7847
7847
  declare const ConversationApiUpdateSchema: z.ZodObject<{
7848
- metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
7849
- userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
7850
7848
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7849
+ agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
7850
+ title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
7851
7851
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
7852
7852
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
7853
+ contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
7854
+ metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
7853
7855
  ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
7854
7856
  type: z.ZodEnum<{
7855
7857
  commit: "commit";
@@ -7859,9 +7861,7 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
7859
7861
  name: z.ZodString;
7860
7862
  hash: z.ZodString;
7861
7863
  }, z.core.$strip>>>;
7862
- agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
7863
- title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
7864
- contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
7864
+ userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
7865
7865
  activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7866
7866
  lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
7867
7867
  }, z.core.$strip>;
@@ -8757,24 +8757,24 @@ declare const MessageApiInsertSchema: z.ZodObject<OmitProjectScope<{
8757
8757
  taskId: z.ZodOptional<z.ZodString>;
8758
8758
  }>, z.core.$strip>;
8759
8759
  declare const MessageApiUpdateSchema: z.ZodObject<{
8760
- metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
8761
- role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8762
8760
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8763
8761
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
8764
8762
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
8763
+ metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
8765
8764
  content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
8766
- conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8765
+ role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8767
8766
  fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
8768
8767
  toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
8769
8768
  fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
8770
8769
  toExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
8770
+ taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
8771
+ a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
8772
+ conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8771
8773
  fromTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
8772
8774
  toTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
8773
8775
  visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
8774
8776
  messageType: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
8775
- taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
8776
8777
  parentMessageId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
8777
- a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
8778
8778
  a2aSessionId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
8779
8779
  }, z.core.$strip>;
8780
8780
  declare const ContextCacheSelectSchema: z.ZodObject<{
@@ -8902,10 +8902,11 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
8902
8902
  }, z.core.$strip>;
8903
8903
  }>, z.core.$strip>;
8904
8904
  declare const ContextCacheApiUpdateSchema: z.ZodObject<{
8905
- value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
8906
8905
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8906
+ value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
8907
8907
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
8908
8908
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
8909
+ contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8909
8910
  ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
8910
8911
  type: z.ZodEnum<{
8911
8912
  commit: "commit";
@@ -8916,7 +8917,6 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
8916
8917
  hash: z.ZodString;
8917
8918
  }, z.core.$strip>>>;
8918
8919
  conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8919
- contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8920
8920
  contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8921
8921
  requestHash: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
8922
8922
  fetchedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
@@ -9776,16 +9776,16 @@ declare const EvaluationResultApiInsertSchema: z.ZodObject<{
9776
9776
  output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
9777
9777
  createdAt: z.ZodOptional<z.ZodString>;
9778
9778
  updatedAt: z.ZodOptional<z.ZodString>;
9779
- conversationId: z.ZodString;
9780
9779
  evaluatorId: z.ZodString;
9780
+ conversationId: z.ZodString;
9781
9781
  evaluationRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9782
9782
  }, z.core.$strip>;
9783
9783
  declare const EvaluationResultApiUpdateSchema: z.ZodObject<{
9784
9784
  output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
9785
9785
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
9786
9786
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
9787
- conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9788
9787
  evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9788
+ conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9789
9789
  evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
9790
9790
  }, z.core.$strip>;
9791
9791
  declare const EvaluationRunSelectSchema: z.ZodObject<{
@@ -10260,26 +10260,26 @@ declare const EvaluationRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
10260
10260
  }>, z.core.$strip>;
10261
10261
  declare const EvaluationRunConfigApiInsertSchema: z.ZodObject<{
10262
10262
  name: z.ZodString;
10263
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10263
10264
  createdAt: z.ZodOptional<z.ZodString>;
10264
10265
  updatedAt: z.ZodOptional<z.ZodString>;
10265
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10266
10266
  isActive: z.ZodOptional<z.ZodBoolean>;
10267
10267
  suiteConfigIds: z.ZodArray<z.ZodString>;
10268
10268
  }, z.core.$strip>;
10269
10269
  declare const EvaluationRunConfigApiUpdateSchema: z.ZodObject<{
10270
10270
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
10271
+ description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
10271
10272
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
10272
10273
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
10273
- description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
10274
10274
  isActive: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
10275
10275
  suiteConfigIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
10276
10276
  }, z.core.$strip>;
10277
10277
  declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
10278
- name: z.ZodString;
10279
10278
  id: z.ZodString;
10279
+ name: z.ZodString;
10280
+ description: z.ZodNullable<z.ZodString>;
10280
10281
  createdAt: z.ZodString;
10281
10282
  updatedAt: z.ZodString;
10282
- description: z.ZodNullable<z.ZodString>;
10283
10283
  isActive: z.ZodBoolean;
10284
10284
  suiteConfigIds: z.ZodArray<z.ZodString>;
10285
10285
  }, z.core.$strip>;
@@ -12436,11 +12436,9 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<OmitProjectScope<{
12436
12436
  id: z.ZodString;
12437
12437
  }>, z.core.$strip>;
12438
12438
  declare const EvaluatorApiInsertSchema: z.ZodObject<{
12439
- schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
12440
12439
  name: z.ZodString;
12441
- createdAt: z.ZodOptional<z.ZodString>;
12442
- updatedAt: z.ZodOptional<z.ZodString>;
12443
12440
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12441
+ prompt: z.ZodString;
12444
12442
  model: z.ZodType<{
12445
12443
  model?: string | undefined;
12446
12444
  providerOptions?: Record<string, any> | undefined;
@@ -12454,15 +12452,15 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
12454
12452
  model?: string | undefined;
12455
12453
  providerOptions?: Record<string, any> | undefined;
12456
12454
  }>>;
12457
- prompt: z.ZodString;
12455
+ createdAt: z.ZodOptional<z.ZodString>;
12456
+ updatedAt: z.ZodOptional<z.ZodString>;
12457
+ schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
12458
12458
  passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
12459
12459
  }, z.core.$strip>;
12460
12460
  declare const EvaluatorApiUpdateSchema: z.ZodObject<{
12461
- schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
12462
12461
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12463
- createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
12464
- updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
12465
12462
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
12463
+ prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12466
12464
  model: z.ZodOptional<z.ZodOptional<z.ZodType<{
12467
12465
  model?: string | undefined;
12468
12466
  providerOptions?: Record<string, any> | undefined;
@@ -12476,7 +12474,9 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
12476
12474
  model?: string | undefined;
12477
12475
  providerOptions?: Record<string, any> | undefined;
12478
12476
  }>>>>;
12479
- prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12477
+ createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
12478
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
12479
+ schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
12480
12480
  passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
12481
12481
  }, z.core.$strip>;
12482
12482
  declare const DatasetSelectSchema: drizzle_zod19.BuildSchema<"select", {
@@ -13373,8 +13373,8 @@ declare const DatasetItemApiUpdateSchema: z.ZodObject<{
13373
13373
  }>>>>>>;
13374
13374
  }, z.core.$strip>;
13375
13375
  declare const DatasetRunItemSchema: z.ZodObject<{
13376
- input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
13377
13376
  id: z.ZodOptional<z.ZodString>;
13377
+ input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
13378
13378
  expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
13379
13379
  simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
13380
13380
  prompt: string;
@@ -13422,8 +13422,8 @@ declare const DatasetRunItemSchema: z.ZodObject<{
13422
13422
  declare const TriggerDatasetRunSchema: z.ZodObject<{
13423
13423
  datasetRunId: z.ZodString;
13424
13424
  items: z.ZodArray<z.ZodObject<{
13425
- input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
13426
13425
  id: z.ZodOptional<z.ZodString>;
13426
+ input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
13427
13427
  expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
13428
13428
  simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
13429
13429
  prompt: string;
@@ -13834,16 +13834,16 @@ declare const DatasetRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
13834
13834
  }>, z.core.$strip>;
13835
13835
  declare const DatasetRunConfigApiInsertSchema: z.ZodObject<{
13836
13836
  name: z.ZodString;
13837
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13837
13838
  createdAt: z.ZodOptional<z.ZodString>;
13838
13839
  updatedAt: z.ZodOptional<z.ZodString>;
13839
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13840
13840
  datasetId: z.ZodString;
13841
13841
  }, z.core.$strip>;
13842
13842
  declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
13843
13843
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13844
+ description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
13844
13845
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
13845
13846
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
13846
- description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
13847
13847
  datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13848
13848
  }, z.core.$strip>;
13849
13849
  declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
@@ -14151,21 +14151,21 @@ declare const SkillSelectSchema: z.ZodObject<{
14151
14151
  in: {};
14152
14152
  }>;
14153
14153
  declare const SkillInsertSchema: z.ZodObject<{
14154
- metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
14155
14154
  name: z.ZodString;
14155
+ description: z.ZodString;
14156
14156
  tenantId: z.ZodString;
14157
14157
  projectId: z.ZodString;
14158
- description: z.ZodString;
14158
+ metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
14159
14159
  content: z.ZodString;
14160
14160
  }, {
14161
14161
  out: {};
14162
14162
  in: {};
14163
14163
  }>;
14164
14164
  declare const SkillUpdateSchema: z.ZodObject<{
14165
- metadata: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
14165
+ description: z.ZodOptional<z.ZodString>;
14166
14166
  tenantId: z.ZodOptional<z.ZodString>;
14167
14167
  projectId: z.ZodOptional<z.ZodString>;
14168
- description: z.ZodOptional<z.ZodString>;
14168
+ metadata: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
14169
14169
  content: z.ZodOptional<z.ZodString>;
14170
14170
  }, {
14171
14171
  out: {};
@@ -14183,16 +14183,16 @@ declare const SkillApiSelectSchema: z.ZodObject<OmitProjectScope<{
14183
14183
  metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
14184
14184
  }>, z.core.$strip>;
14185
14185
  declare const SkillApiInsertSchema: z.ZodObject<OmitProjectScope<{
14186
- metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
14187
14186
  name: z.ZodString;
14187
+ description: z.ZodString;
14188
14188
  tenantId: z.ZodString;
14189
14189
  projectId: z.ZodString;
14190
- description: z.ZodString;
14190
+ metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
14191
14191
  content: z.ZodString;
14192
14192
  }>, z.core.$strip>;
14193
14193
  declare const SkillApiUpdateSchema: z.ZodObject<{
14194
- metadata: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>>;
14195
14194
  description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
14195
+ metadata: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>>;
14196
14196
  content: z.ZodOptional<z.ZodOptional<z.ZodString>>;
14197
14197
  }, z.core.$strip>;
14198
14198
  declare const DataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
@@ -14569,11 +14569,11 @@ declare const DataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
14569
14569
  }>;
14570
14570
  }, undefined>, undefined>;
14571
14571
  declare const DataComponentInsertSchema: z.ZodObject<{
14572
- name: z.ZodString;
14573
14572
  id: z.ZodString;
14573
+ name: z.ZodString;
14574
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14574
14575
  tenantId: z.ZodString;
14575
14576
  projectId: z.ZodString;
14576
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14577
14577
  props: z.ZodType<{
14578
14578
  [x: string]: unknown;
14579
14579
  type: "object";
@@ -14621,11 +14621,11 @@ declare const DataComponentInsertSchema: z.ZodObject<{
14621
14621
  in: {};
14622
14622
  }>;
14623
14623
  declare const DataComponentUpdateSchema: z.ZodObject<{
14624
- name: z.ZodOptional<z.ZodString>;
14625
14624
  id: z.ZodOptional<z.ZodString>;
14625
+ name: z.ZodOptional<z.ZodString>;
14626
+ description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
14626
14627
  tenantId: z.ZodOptional<z.ZodString>;
14627
14628
  projectId: z.ZodOptional<z.ZodString>;
14628
- description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
14629
14629
  props: z.ZodOptional<z.ZodType<{
14630
14630
  [x: string]: unknown;
14631
14631
  type: "object";
@@ -15302,7 +15302,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"inse
15302
15302
  }, {}, {
15303
15303
  length: 256;
15304
15304
  }>;
15305
- }, "id" | "createdAt" | "tenantId" | "projectId" | "agentId" | "subAgentId" | "dataComponentId">, undefined>, undefined>;
15305
+ }, "id" | "tenantId" | "projectId" | "agentId" | "createdAt" | "subAgentId" | "dataComponentId">, undefined>, undefined>;
15306
15306
  declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
15307
15307
  dataComponentId: z.ZodOptional<z.ZodString>;
15308
15308
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -15899,11 +15899,11 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
15899
15899
  in: {};
15900
15900
  }>;
15901
15901
  declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
15902
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
15903
15902
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
15903
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
15904
+ description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
15904
15905
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
15905
15906
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
15906
- description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
15907
15907
  props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
15908
15908
  [x: string]: unknown;
15909
15909
  type: "object";
@@ -16318,10 +16318,10 @@ declare const SubAgentSkillApiSelectSchema: z.ZodObject<OmitAgentScope<{
16318
16318
  }>, z.core.$strip>;
16319
16319
  declare const SubAgentSkillApiInsertSchema: z.ZodObject<{
16320
16320
  agentId: z.ZodString;
16321
- subAgentId: z.ZodString;
16322
- skillId: z.ZodString;
16323
16321
  index: z.ZodInt;
16324
16322
  alwaysLoaded: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
16323
+ subAgentId: z.ZodString;
16324
+ skillId: z.ZodString;
16325
16325
  }, {
16326
16326
  out: {};
16327
16327
  in: {};
@@ -16330,18 +16330,18 @@ declare const SubAgentSkillApiUpdateSchema: z.ZodObject<{
16330
16330
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
16331
16331
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
16332
16332
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
16333
- subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
16334
- skillId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
16335
16333
  index: z.ZodOptional<z.ZodOptional<z.ZodInt>>;
16336
16334
  alwaysLoaded: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>>;
16335
+ subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
16336
+ skillId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
16337
16337
  }, z.core.$strip>;
16338
16338
  declare const SubAgentSkillWithIndexSchema: z.ZodObject<{
16339
- metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
16340
- name: z.ZodString;
16341
16339
  id: z.ZodString;
16340
+ name: z.ZodString;
16341
+ description: z.ZodString;
16342
16342
  createdAt: z.ZodString;
16343
16343
  updatedAt: z.ZodString;
16344
- description: z.ZodString;
16344
+ metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
16345
16345
  content: z.ZodString;
16346
16346
  subAgentSkillId: z.ZodString;
16347
16347
  subAgentId: z.ZodString;
@@ -16363,11 +16363,11 @@ declare const ExternalAgentSelectSchema: z.ZodObject<{
16363
16363
  in: {};
16364
16364
  }>;
16365
16365
  declare const ExternalAgentInsertSchema: z.ZodObject<{
16366
- name: z.ZodString;
16367
16366
  id: z.ZodString;
16367
+ name: z.ZodString;
16368
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16368
16369
  tenantId: z.ZodString;
16369
16370
  projectId: z.ZodString;
16370
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16371
16371
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16372
16372
  baseUrl: z.ZodURL;
16373
16373
  }, {
@@ -16375,11 +16375,11 @@ declare const ExternalAgentInsertSchema: z.ZodObject<{
16375
16375
  in: {};
16376
16376
  }>;
16377
16377
  declare const ExternalAgentUpdateSchema: z.ZodObject<{
16378
- name: z.ZodOptional<z.ZodString>;
16379
16378
  id: z.ZodOptional<z.ZodString>;
16379
+ name: z.ZodOptional<z.ZodString>;
16380
+ description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
16380
16381
  tenantId: z.ZodOptional<z.ZodString>;
16381
16382
  projectId: z.ZodOptional<z.ZodString>;
16382
- description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
16383
16383
  credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
16384
16384
  baseUrl: z.ZodOptional<z.ZodURL>;
16385
16385
  }, {
@@ -16398,27 +16398,27 @@ declare const ExternalAgentApiSelectSchema: z.ZodObject<OmitProjectScope<{
16398
16398
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16399
16399
  }>, z.core.$strip>;
16400
16400
  declare const ExternalAgentApiInsertSchema: z.ZodObject<OmitProjectScope<{
16401
- name: z.ZodString;
16402
16401
  id: z.ZodString;
16402
+ name: z.ZodString;
16403
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16403
16404
  tenantId: z.ZodString;
16404
16405
  projectId: z.ZodString;
16405
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16406
16406
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16407
16407
  baseUrl: z.ZodURL;
16408
16408
  }>, z.core.$strip>;
16409
16409
  declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
16410
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
16411
16410
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
16411
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
16412
16412
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
16413
16413
  credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
16414
16414
  baseUrl: z.ZodOptional<z.ZodOptional<z.ZodURL>>;
16415
16415
  }, z.core.$strip>;
16416
16416
  declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
16417
- name: z.ZodString;
16418
16417
  id: z.ZodString;
16419
- createdAt: z.ZodString;
16420
- updatedAt: z.ZodString;
16418
+ name: z.ZodString;
16421
16419
  description: z.ZodNullable<z.ZodString>;
16420
+ prompt: z.ZodNullable<z.ZodString>;
16421
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
16422
16422
  models: z.ZodNullable<z.ZodType<{
16423
16423
  base?: {
16424
16424
  model?: string | undefined;
@@ -16481,15 +16481,15 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
16481
16481
  }, {
16482
16482
  stepCountIs?: number | undefined;
16483
16483
  }>>>;
16484
- prompt: z.ZodNullable<z.ZodString>;
16485
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
16484
+ createdAt: z.ZodString;
16485
+ updatedAt: z.ZodString;
16486
16486
  type: z.ZodLiteral<"internal">;
16487
16487
  }, z.core.$strip>, z.ZodObject<{
16488
- name: z.ZodString;
16489
16488
  id: z.ZodString;
16489
+ name: z.ZodString;
16490
+ description: z.ZodNullable<z.ZodString>;
16490
16491
  createdAt: z.ZodString;
16491
16492
  updatedAt: z.ZodString;
16492
- description: z.ZodNullable<z.ZodString>;
16493
16493
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16494
16494
  baseUrl: z.ZodString;
16495
16495
  type: z.ZodLiteral<"external">;
@@ -16956,23 +16956,23 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
16956
16956
  }>;
16957
16957
  declare const ApiKeyUpdateSchema: z.ZodObject<{
16958
16958
  name: z.ZodOptional<z.ZodString>;
16959
- expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
16960
- updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
16961
16959
  agentId: z.ZodOptional<z.ZodString>;
16960
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
16961
+ expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
16962
16962
  }, {
16963
16963
  out: {};
16964
16964
  in: {};
16965
16965
  }>;
16966
16966
  declare const ApiKeyApiSelectSchema: z.ZodObject<{
16967
- name: z.ZodNullable<z.ZodString>;
16968
16967
  id: z.ZodString;
16968
+ name: z.ZodNullable<z.ZodString>;
16969
+ agentId: z.ZodString;
16969
16970
  createdAt: z.ZodString;
16970
- expiresAt: z.ZodNullable<z.ZodString>;
16971
16971
  updatedAt: z.ZodString;
16972
- agentId: z.ZodString;
16972
+ expiresAt: z.ZodNullable<z.ZodString>;
16973
+ lastUsedAt: z.ZodNullable<z.ZodString>;
16973
16974
  publicId: z.ZodString;
16974
16975
  keyPrefix: z.ZodString;
16975
- lastUsedAt: z.ZodNullable<z.ZodString>;
16976
16976
  }, {
16977
16977
  out: {};
16978
16978
  in: {};
@@ -16980,15 +16980,15 @@ declare const ApiKeyApiSelectSchema: z.ZodObject<{
16980
16980
  declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
16981
16981
  data: z.ZodObject<{
16982
16982
  apiKey: z.ZodObject<{
16983
- name: z.ZodNullable<z.ZodString>;
16984
16983
  id: z.ZodString;
16984
+ name: z.ZodNullable<z.ZodString>;
16985
+ agentId: z.ZodString;
16985
16986
  createdAt: z.ZodString;
16986
- expiresAt: z.ZodNullable<z.ZodString>;
16987
16987
  updatedAt: z.ZodString;
16988
- agentId: z.ZodString;
16988
+ expiresAt: z.ZodNullable<z.ZodString>;
16989
+ lastUsedAt: z.ZodNullable<z.ZodString>;
16989
16990
  publicId: z.ZodString;
16990
16991
  keyPrefix: z.ZodString;
16991
- lastUsedAt: z.ZodNullable<z.ZodString>;
16992
16992
  }, {
16993
16993
  out: {};
16994
16994
  in: {};
@@ -16998,19 +16998,19 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
16998
16998
  }, z.core.$strip>;
16999
16999
  declare const ApiKeyApiInsertSchema: z.ZodObject<{
17000
17000
  name: z.ZodString;
17001
+ agentId: z.ZodString;
17001
17002
  createdAt: z.ZodOptional<z.ZodString>;
17002
- expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17003
17003
  updatedAt: z.ZodOptional<z.ZodString>;
17004
- agentId: z.ZodString;
17004
+ expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17005
17005
  }, {
17006
17006
  out: {};
17007
17007
  in: {};
17008
17008
  }>;
17009
17009
  declare const ApiKeyApiUpdateSchema: z.ZodObject<{
17010
17010
  name: z.ZodOptional<z.ZodString>;
17011
- expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
17012
- updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
17013
17011
  agentId: z.ZodOptional<z.ZodString>;
17012
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
17013
+ expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
17014
17014
  }, {
17015
17015
  out: {};
17016
17016
  in: {};
@@ -17591,12 +17591,12 @@ declare const AppInsertSchema: z.ZodObject<{
17591
17591
  in: {};
17592
17592
  }>;
17593
17593
  declare const AppUpdateSchema: z.ZodObject<{
17594
- enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
17595
17594
  name: z.ZodOptional<z.ZodString>;
17596
- updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
17595
+ description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
17597
17596
  tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
17598
17597
  projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
17599
- description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
17598
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
17599
+ enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
17600
17600
  config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
17601
17601
  type: z.ZodLiteral<"web_client">;
17602
17602
  webClient: z.ZodObject<{
@@ -17606,9 +17606,9 @@ declare const AppUpdateSchema: z.ZodObject<{
17606
17606
  type: z.ZodLiteral<"api">;
17607
17607
  api: z.ZodDefault<z.ZodObject<{}, z.core.$strip>>;
17608
17608
  }, z.core.$strip>], "type">>;
17609
- lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
17610
- defaultProjectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
17611
17609
  defaultAgentId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
17610
+ defaultProjectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
17611
+ lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
17612
17612
  }, {
17613
17613
  out: {};
17614
17614
  in: {};
@@ -18125,18 +18125,18 @@ declare const AppApiSelectSchema: drizzle_zod19.BuildSchema<"select", {
18125
18125
  }, {}, {}>;
18126
18126
  }, undefined>, undefined>;
18127
18127
  declare const AppApiResponseSelectSchema: z.ZodObject<{
18128
- enabled: z.ZodBoolean;
18129
- type: z.ZodString;
18130
- name: z.ZodString;
18131
18128
  id: z.ZodString;
18132
- createdAt: z.ZodString;
18133
- updatedAt: z.ZodString;
18129
+ name: z.ZodString;
18130
+ description: z.ZodNullable<z.ZodString>;
18134
18131
  tenantId: z.ZodNullable<z.ZodString>;
18135
18132
  projectId: z.ZodNullable<z.ZodString>;
18136
- description: z.ZodNullable<z.ZodString>;
18137
- lastUsedAt: z.ZodNullable<z.ZodString>;
18138
- defaultProjectId: z.ZodNullable<z.ZodString>;
18133
+ type: z.ZodString;
18134
+ createdAt: z.ZodString;
18135
+ updatedAt: z.ZodString;
18136
+ enabled: z.ZodBoolean;
18139
18137
  defaultAgentId: z.ZodNullable<z.ZodString>;
18138
+ defaultProjectId: z.ZodNullable<z.ZodString>;
18139
+ lastUsedAt: z.ZodNullable<z.ZodString>;
18140
18140
  config: z.ZodDiscriminatedUnion<[z.ZodObject<{
18141
18141
  type: z.ZodLiteral<"web_client">;
18142
18142
  webClient: z.ZodObject<{
@@ -18151,17 +18151,17 @@ declare const AppApiResponseSelectSchema: z.ZodObject<{
18151
18151
  in: {};
18152
18152
  }>;
18153
18153
  declare const AppApiInsertSchema: z.ZodObject<{
18154
- enabled: z.ZodOptional<z.ZodBoolean>;
18154
+ name: z.ZodString;
18155
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18156
+ tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18157
+ projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18155
18158
  type: z.ZodEnum<{
18156
18159
  web_client: "web_client";
18157
18160
  api: "api";
18158
18161
  }>;
18159
- name: z.ZodString;
18160
18162
  createdAt: z.ZodOptional<z.ZodString>;
18161
18163
  updatedAt: z.ZodOptional<z.ZodString>;
18162
- tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18163
- projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18164
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18164
+ enabled: z.ZodOptional<z.ZodBoolean>;
18165
18165
  config: z.ZodDiscriminatedUnion<[z.ZodObject<{
18166
18166
  type: z.ZodLiteral<"web_client">;
18167
18167
  webClient: z.ZodObject<{
@@ -18171,19 +18171,19 @@ declare const AppApiInsertSchema: z.ZodObject<{
18171
18171
  type: z.ZodLiteral<"api">;
18172
18172
  api: z.ZodDefault<z.ZodObject<{}, z.core.$strip>>;
18173
18173
  }, z.core.$strip>], "type">;
18174
- defaultProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18175
18174
  defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18175
+ defaultProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18176
18176
  }, {
18177
18177
  out: {};
18178
18178
  in: {};
18179
18179
  }>;
18180
18180
  declare const AppApiUpdateSchema: z.ZodObject<{
18181
- enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
18182
18181
  name: z.ZodOptional<z.ZodString>;
18183
- updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
18182
+ description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
18184
18183
  tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
18185
18184
  projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
18186
- description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
18185
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
18186
+ enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
18187
18187
  config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
18188
18188
  type: z.ZodLiteral<"web_client">;
18189
18189
  webClient: z.ZodObject<{
@@ -18193,9 +18193,9 @@ declare const AppApiUpdateSchema: z.ZodObject<{
18193
18193
  type: z.ZodLiteral<"api">;
18194
18194
  api: z.ZodDefault<z.ZodObject<{}, z.core.$strip>>;
18195
18195
  }, z.core.$strip>], "type">>;
18196
- lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
18197
- defaultProjectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
18198
18196
  defaultAgentId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
18197
+ defaultProjectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
18198
+ lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
18199
18199
  }, {
18200
18200
  out: {};
18201
18201
  in: {};
@@ -18203,18 +18203,18 @@ declare const AppApiUpdateSchema: z.ZodObject<{
18203
18203
  declare const AppApiCreationResponseSchema: z.ZodObject<{
18204
18204
  data: z.ZodObject<{
18205
18205
  app: z.ZodObject<{
18206
- enabled: z.ZodBoolean;
18207
- type: z.ZodString;
18208
- name: z.ZodString;
18209
18206
  id: z.ZodString;
18210
- createdAt: z.ZodString;
18211
- updatedAt: z.ZodString;
18207
+ name: z.ZodString;
18208
+ description: z.ZodNullable<z.ZodString>;
18212
18209
  tenantId: z.ZodNullable<z.ZodString>;
18213
18210
  projectId: z.ZodNullable<z.ZodString>;
18214
- description: z.ZodNullable<z.ZodString>;
18215
- lastUsedAt: z.ZodNullable<z.ZodString>;
18216
- defaultProjectId: z.ZodNullable<z.ZodString>;
18211
+ type: z.ZodString;
18212
+ createdAt: z.ZodString;
18213
+ updatedAt: z.ZodString;
18214
+ enabled: z.ZodBoolean;
18217
18215
  defaultAgentId: z.ZodNullable<z.ZodString>;
18216
+ defaultProjectId: z.ZodNullable<z.ZodString>;
18217
+ lastUsedAt: z.ZodNullable<z.ZodString>;
18218
18218
  config: z.ZodDiscriminatedUnion<[z.ZodObject<{
18219
18219
  type: z.ZodLiteral<"web_client">;
18220
18220
  webClient: z.ZodObject<{
@@ -18682,13 +18682,13 @@ declare const CredentialReferenceSelectSchema: drizzle_zod19.BuildSchema<"select
18682
18682
  }>;
18683
18683
  }, undefined>, undefined>;
18684
18684
  declare const CredentialReferenceInsertSchema: z.ZodObject<{
18685
- type: z.ZodString;
18686
- name: z.ZodString;
18687
- userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18688
18685
  id: z.ZodString;
18686
+ name: z.ZodString;
18689
18687
  tenantId: z.ZodString;
18690
18688
  projectId: z.ZodString;
18689
+ type: z.ZodString;
18691
18690
  toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18691
+ userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18692
18692
  credentialStoreId: z.ZodString;
18693
18693
  retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
18694
18694
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -18697,13 +18697,13 @@ declare const CredentialReferenceInsertSchema: z.ZodObject<{
18697
18697
  in: {};
18698
18698
  }>;
18699
18699
  declare const CredentialReferenceUpdateSchema: z.ZodObject<{
18700
- type: z.ZodOptional<z.ZodString>;
18701
- name: z.ZodOptional<z.ZodString>;
18702
- userId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
18703
18700
  id: z.ZodOptional<z.ZodString>;
18701
+ name: z.ZodOptional<z.ZodString>;
18704
18702
  tenantId: z.ZodOptional<z.ZodString>;
18705
18703
  projectId: z.ZodOptional<z.ZodString>;
18704
+ type: z.ZodOptional<z.ZodString>;
18706
18705
  toolId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
18706
+ userId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
18707
18707
  credentialStoreId: z.ZodOptional<z.ZodString>;
18708
18708
  retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
18709
18709
  createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -18712,12 +18712,12 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
18712
18712
  in: {};
18713
18713
  }>;
18714
18714
  declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
18715
- name: z.ZodString;
18716
- userId: z.ZodNullable<z.ZodString>;
18717
18715
  id: z.ZodString;
18716
+ name: z.ZodString;
18718
18717
  createdAt: z.ZodString;
18719
18718
  updatedAt: z.ZodString;
18720
18719
  toolId: z.ZodNullable<z.ZodString>;
18720
+ userId: z.ZodNullable<z.ZodString>;
18721
18721
  credentialStoreId: z.ZodString;
18722
18722
  retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
18723
18723
  createdBy: z.ZodNullable<z.ZodString>;
@@ -19304,10 +19304,10 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
19304
19304
  }>>>;
19305
19305
  }, z.core.$strip>;
19306
19306
  declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
19307
- name: z.ZodString;
19308
- userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19309
19307
  id: z.ZodString;
19308
+ name: z.ZodString;
19310
19309
  toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19310
+ userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19311
19311
  credentialStoreId: z.ZodString;
19312
19312
  retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
19313
19313
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -19319,10 +19319,10 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
19319
19319
  }>;
19320
19320
  }, z.core.$strip>;
19321
19321
  declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
19322
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
19323
- userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
19324
19322
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
19323
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
19325
19324
  toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
19325
+ userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
19326
19326
  credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
19327
19327
  retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
19328
19328
  createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
@@ -19390,12 +19390,12 @@ declare const OAuthCallbackQuerySchema: z.ZodObject<{
19390
19390
  error_description: z.ZodOptional<z.ZodString>;
19391
19391
  }, z.core.$strip>;
19392
19392
  declare const McpToolSchema: z.ZodObject<{
19393
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
19394
- name: z.ZodString;
19395
19393
  id: z.ZodString;
19394
+ name: z.ZodString;
19395
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19396
19396
  tenantId: z.ZodString;
19397
19397
  projectId: z.ZodString;
19398
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19398
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
19399
19399
  config: z.ZodObject<{
19400
19400
  type: z.ZodLiteral<"mcp">;
19401
19401
  mcp: z.ZodObject<{
@@ -19449,10 +19449,11 @@ declare const McpToolSchema: z.ZodObject<{
19449
19449
  in: {};
19450
19450
  }>;
19451
19451
  declare const MCPToolConfigSchema: z.ZodObject<{
19452
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
19453
- name: z.ZodString;
19454
19452
  id: z.ZodString;
19453
+ name: z.ZodString;
19454
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
19455
19455
  expiresAt: z.ZodOptional<z.ZodString>;
19456
+ relationshipId: z.ZodOptional<z.ZodString>;
19456
19457
  credentialScope: z.ZodOptional<z.ZodString>;
19457
19458
  imageUrl: z.ZodOptional<z.ZodString>;
19458
19459
  capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
@@ -19464,7 +19465,6 @@ declare const MCPToolConfigSchema: z.ZodObject<{
19464
19465
  description: z.ZodOptional<z.ZodString>;
19465
19466
  inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
19466
19467
  }, z.core.$strip>>>;
19467
- relationshipId: z.ZodOptional<z.ZodString>;
19468
19468
  tenantId: z.ZodOptional<z.ZodString>;
19469
19469
  projectId: z.ZodOptional<z.ZodString>;
19470
19470
  description: z.ZodOptional<z.ZodString>;
@@ -19485,10 +19485,10 @@ declare const MCPToolConfigSchema: z.ZodObject<{
19485
19485
  sessionId: z.ZodOptional<z.ZodString>;
19486
19486
  }, z.core.$strip>>;
19487
19487
  credential: z.ZodOptional<z.ZodObject<{
19488
- name: z.ZodString;
19489
- userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19490
19488
  id: z.ZodString;
19489
+ name: z.ZodString;
19491
19490
  toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19491
+ userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19492
19492
  credentialStoreId: z.ZodString;
19493
19493
  retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
19494
19494
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -19511,12 +19511,12 @@ declare const MCPToolConfigSchema: z.ZodObject<{
19511
19511
  in: {};
19512
19512
  }>;
19513
19513
  declare const ToolUpdateSchema: z.ZodObject<{
19514
- headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>;
19515
- name: z.ZodOptional<z.ZodString>;
19516
19514
  id: z.ZodOptional<z.ZodString>;
19515
+ name: z.ZodOptional<z.ZodString>;
19516
+ description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
19517
19517
  tenantId: z.ZodOptional<z.ZodString>;
19518
19518
  projectId: z.ZodOptional<z.ZodString>;
19519
- description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
19519
+ headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>;
19520
19520
  config: z.ZodOptional<z.ZodObject<{
19521
19521
  type: z.ZodLiteral<"mcp">;
19522
19522
  mcp: z.ZodObject<{
@@ -19583,12 +19583,12 @@ declare const ToolApiSelectSchema: z.ZodObject<OmitProjectScope<{
19583
19583
  id: z.ZodString;
19584
19584
  }>, z.core.$strip>;
19585
19585
  declare const ToolApiInsertSchema: z.ZodObject<OmitProjectScope<{
19586
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
19587
- name: z.ZodString;
19588
19586
  id: z.ZodString;
19587
+ name: z.ZodString;
19588
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19589
19589
  tenantId: z.ZodString;
19590
19590
  projectId: z.ZodString;
19591
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19591
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
19592
19592
  config: z.ZodObject<{
19593
19593
  type: z.ZodLiteral<"mcp">;
19594
19594
  mcp: z.ZodObject<{
@@ -19623,10 +19623,10 @@ declare const ToolApiInsertSchema: z.ZodObject<OmitProjectScope<{
19623
19623
  isWorkApp: z.ZodOptional<z.ZodBoolean>;
19624
19624
  }>, z.core.$strip>;
19625
19625
  declare const ToolApiUpdateSchema: z.ZodObject<{
19626
- 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>>>>>>>;
19627
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
19628
19626
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
19627
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
19629
19628
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
19629
+ 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>>>>>>>;
19630
19630
  config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
19631
19631
  type: z.ZodLiteral<"mcp">;
19632
19632
  mcp: z.ZodObject<{
@@ -19994,53 +19994,53 @@ declare const FunctionToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
19994
19994
  }>;
19995
19995
  }, undefined>, undefined>;
19996
19996
  declare const FunctionToolInsertSchema: z.ZodObject<{
19997
- name: z.ZodString;
19998
19997
  id: z.ZodString;
19998
+ name: z.ZodString;
19999
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19999
20000
  tenantId: z.ZodString;
20000
20001
  projectId: z.ZodString;
20001
20002
  agentId: z.ZodString;
20002
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20003
20003
  functionId: z.ZodString;
20004
20004
  }, {
20005
20005
  out: {};
20006
20006
  in: {};
20007
20007
  }>;
20008
20008
  declare const FunctionToolUpdateSchema: z.ZodObject<{
20009
- name: z.ZodOptional<z.ZodString>;
20010
20009
  id: z.ZodOptional<z.ZodString>;
20010
+ name: z.ZodOptional<z.ZodString>;
20011
+ description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
20011
20012
  tenantId: z.ZodOptional<z.ZodString>;
20012
20013
  projectId: z.ZodOptional<z.ZodString>;
20013
20014
  agentId: z.ZodOptional<z.ZodString>;
20014
- description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
20015
20015
  functionId: z.ZodOptional<z.ZodString>;
20016
20016
  }, {
20017
20017
  out: {};
20018
20018
  in: {};
20019
20019
  }>;
20020
20020
  declare const FunctionToolApiSelectSchema: z.ZodObject<{
20021
- name: z.ZodString;
20022
20021
  id: z.ZodString;
20022
+ name: z.ZodString;
20023
+ description: z.ZodNullable<z.ZodString>;
20024
+ agentId: z.ZodString;
20023
20025
  createdAt: z.ZodString;
20024
20026
  updatedAt: z.ZodString;
20025
- agentId: z.ZodString;
20026
- description: z.ZodNullable<z.ZodString>;
20027
20027
  functionId: z.ZodString;
20028
20028
  relationshipId: z.ZodOptional<z.ZodString>;
20029
20029
  }, z.core.$strip>;
20030
20030
  declare const FunctionToolApiInsertSchema: z.ZodObject<OmitAgentScope<{
20031
- name: z.ZodString;
20032
20031
  id: z.ZodString;
20032
+ name: z.ZodString;
20033
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20033
20034
  tenantId: z.ZodString;
20034
20035
  projectId: z.ZodString;
20035
20036
  agentId: z.ZodString;
20036
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20037
20037
  functionId: z.ZodString;
20038
20038
  }>, z.core.$strip>;
20039
20039
  declare const FunctionToolApiUpdateSchema: z.ZodObject<{
20040
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
20041
20040
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
20042
- agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
20041
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
20043
20042
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
20043
+ agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
20044
20044
  functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
20045
20045
  }, z.core.$strip>;
20046
20046
  declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
@@ -20414,8 +20414,8 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<OmitAgent
20414
20414
  id: z.ZodString;
20415
20415
  }>, z.core.$strip>;
20416
20416
  declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
20417
- subAgentId: z.ZodString;
20418
20417
  toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
20418
+ subAgentId: z.ZodString;
20419
20419
  functionToolId: z.ZodString;
20420
20420
  }, {
20421
20421
  out: {};
@@ -20806,10 +20806,10 @@ declare const FetchDefinitionSchema: z.ZodObject<{
20806
20806
  responseSchema: z.ZodOptional<z.ZodAny>;
20807
20807
  defaultValue: z.ZodOptional<z.ZodAny>;
20808
20808
  credential: z.ZodOptional<z.ZodObject<{
20809
- name: z.ZodString;
20810
- userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20811
20809
  id: z.ZodString;
20810
+ name: z.ZodString;
20812
20811
  toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20812
+ userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20813
20813
  credentialStoreId: z.ZodString;
20814
20814
  retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
20815
20815
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -21359,16 +21359,16 @@ declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<OmitAgentScope<{
21359
21359
  }, z.core.$strip>>>>;
21360
21360
  }>, z.core.$strip>;
21361
21361
  declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
21362
- headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
21363
21362
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21364
21363
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
21365
21364
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
21366
- subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21367
21365
  toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21368
- selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
21366
+ headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
21369
21367
  toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
21370
21368
  needsApproval: z.ZodOptional<z.ZodBoolean>;
21371
21369
  }, z.core.$strip>>>>>>;
21370
+ subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21371
+ selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
21372
21372
  }, z.core.$strip>;
21373
21373
  declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
21374
21374
  createdAt: drizzle_orm_pg_core873.PgColumn<{
@@ -21747,18 +21747,18 @@ declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<OmitAgen
21747
21747
  id: z.ZodString;
21748
21748
  }>, z.core.$strip>;
21749
21749
  declare const SubAgentExternalAgentRelationApiInsertSchema: z.ZodObject<{
21750
- headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
21751
21750
  createdAt: z.ZodOptional<z.ZodString>;
21752
21751
  updatedAt: z.ZodOptional<z.ZodString>;
21752
+ headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
21753
21753
  externalAgentId: z.ZodString;
21754
21754
  }, z.core.$strip>;
21755
21755
  declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
21756
- headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
21757
21756
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21758
21757
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
21759
21758
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
21760
- subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21759
+ headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
21761
21760
  externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21761
+ subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21762
21762
  }, z.core.$strip>;
21763
21763
  declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
21764
21764
  createdAt: drizzle_orm_pg_core873.PgColumn<{
@@ -22137,16 +22137,16 @@ declare const SubAgentTeamAgentRelationApiSelectSchema: z.ZodObject<OmitAgentSco
22137
22137
  id: z.ZodString;
22138
22138
  }>, z.core.$strip>;
22139
22139
  declare const SubAgentTeamAgentRelationApiInsertSchema: z.ZodObject<{
22140
- headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
22141
22140
  createdAt: z.ZodOptional<z.ZodString>;
22142
22141
  updatedAt: z.ZodOptional<z.ZodString>;
22142
+ headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
22143
22143
  targetAgentId: z.ZodString;
22144
22144
  }, z.core.$strip>;
22145
22145
  declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
22146
- headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
22147
22146
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
22148
22147
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
22149
22148
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
22149
+ headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
22150
22150
  subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
22151
22151
  targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
22152
22152
  }, z.core.$strip>;
@@ -23491,7 +23491,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
23491
23491
  }, {}, {
23492
23492
  length: 256;
23493
23493
  }>;
23494
- }, "metadata" | "type" | "name" | "id" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "description" | "contextId" | "visibility" | "taskId" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
23494
+ }, "id" | "name" | "description" | "tenantId" | "projectId" | "type" | "createdAt" | "updatedAt" | "metadata" | "taskId" | "toolCallId" | "contextId" | "visibility" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
23495
23495
  declare const LedgerArtifactUpdateSchema: z.ZodObject<{
23496
23496
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
23497
23497
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -23556,17 +23556,17 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<OmitProjectScope<{
23556
23556
  id: z.ZodString;
23557
23557
  }>, z.core.$strip>;
23558
23558
  declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
23559
- metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
23560
- type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
23561
- name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
23562
23559
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
23560
+ name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
23561
+ description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
23562
+ type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
23563
23563
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
23564
23564
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
23565
- description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
23566
- contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
23567
- visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
23565
+ metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
23568
23566
  taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
23569
23567
  toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
23568
+ contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
23569
+ visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
23570
23570
  parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
23571
23571
  summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
23572
23572
  mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
@@ -23636,11 +23636,10 @@ declare const TeamAgentSchema: z.ZodObject<{
23636
23636
  description: z.ZodString;
23637
23637
  }, z.core.$strip>;
23638
23638
  declare const FullAgentAgentInsertSchema: z.ZodObject<{
23639
- name: z.ZodString;
23640
23639
  id: z.ZodString;
23641
- createdAt: z.ZodOptional<z.ZodString>;
23642
- updatedAt: z.ZodOptional<z.ZodString>;
23640
+ name: z.ZodString;
23643
23641
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23642
+ conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
23644
23643
  models: z.ZodOptional<z.ZodObject<{
23645
23644
  base: z.ZodOptional<z.ZodObject<{
23646
23645
  model: z.ZodOptional<z.ZodString>;
@@ -23655,7 +23654,8 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
23655
23654
  providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
23656
23655
  }, z.core.$strip>>;
23657
23656
  }, z.core.$strip>>;
23658
- conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
23657
+ createdAt: z.ZodOptional<z.ZodString>;
23658
+ updatedAt: z.ZodOptional<z.ZodString>;
23659
23659
  type: z.ZodLiteral<"internal">;
23660
23660
  canUse: z.ZodArray<z.ZodObject<{
23661
23661
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -23689,17 +23689,16 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
23689
23689
  }, z.core.$strip>>;
23690
23690
  }, z.core.$strip>;
23691
23691
  declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
23692
- name: z.ZodString;
23693
23692
  id: z.ZodString;
23693
+ name: z.ZodString;
23694
23694
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23695
23695
  defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23696
23696
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23697
23697
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
23698
- name: z.ZodString;
23699
23698
  id: z.ZodString;
23700
- createdAt: z.ZodOptional<z.ZodString>;
23701
- updatedAt: z.ZodOptional<z.ZodString>;
23699
+ name: z.ZodString;
23702
23700
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23701
+ conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
23703
23702
  models: z.ZodOptional<z.ZodObject<{
23704
23703
  base: z.ZodOptional<z.ZodObject<{
23705
23704
  model: z.ZodOptional<z.ZodString>;
@@ -23714,7 +23713,8 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
23714
23713
  providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
23715
23714
  }, z.core.$strip>>;
23716
23715
  }, z.core.$strip>>;
23717
- conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
23716
+ createdAt: z.ZodOptional<z.ZodString>;
23717
+ updatedAt: z.ZodOptional<z.ZodString>;
23718
23718
  type: z.ZodLiteral<"internal">;
23719
23719
  canUse: z.ZodArray<z.ZodObject<{
23720
23720
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -23748,12 +23748,12 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
23748
23748
  }, z.core.$strip>>;
23749
23749
  }, z.core.$strip>>;
23750
23750
  tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
23751
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
23752
- name: z.ZodString;
23753
23751
  id: z.ZodString;
23752
+ name: z.ZodString;
23753
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23754
23754
  tenantId: z.ZodString;
23755
23755
  projectId: z.ZodString;
23756
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23756
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
23757
23757
  config: z.ZodObject<{
23758
23758
  type: z.ZodLiteral<"mcp">;
23759
23759
  mcp: z.ZodObject<{
@@ -23788,11 +23788,11 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
23788
23788
  isWorkApp: z.ZodOptional<z.ZodBoolean>;
23789
23789
  }>, z.core.$strip>>>;
23790
23790
  externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
23791
- name: z.ZodString;
23792
23791
  id: z.ZodString;
23792
+ name: z.ZodString;
23793
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23793
23794
  tenantId: z.ZodString;
23794
23795
  projectId: z.ZodString;
23795
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23796
23796
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23797
23797
  baseUrl: z.ZodURL;
23798
23798
  }>, z.core.$strip>>>;
@@ -23802,12 +23802,12 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
23802
23802
  description: z.ZodString;
23803
23803
  }, z.core.$strip>>>;
23804
23804
  functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitAgentScope<{
23805
- name: z.ZodString;
23806
23805
  id: z.ZodString;
23806
+ name: z.ZodString;
23807
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23807
23808
  tenantId: z.ZodString;
23808
23809
  projectId: z.ZodString;
23809
23810
  agentId: z.ZodString;
23810
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23811
23811
  functionId: z.ZodString;
23812
23812
  }>, z.core.$strip>>>;
23813
23813
  functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -23817,12 +23817,12 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
23817
23817
  dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
23818
23818
  }, z.core.$strip>>>;
23819
23819
  triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
23820
- enabled: z.ZodOptional<z.ZodBoolean>;
23821
- name: z.ZodString;
23822
23820
  id: z.ZodOptional<z.ZodString>;
23821
+ name: z.ZodString;
23823
23822
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23824
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23823
+ enabled: z.ZodOptional<z.ZodBoolean>;
23825
23824
  inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
23825
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23826
23826
  outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
23827
23827
  messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23828
23828
  authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
@@ -23831,9 +23831,9 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
23831
23831
  runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23832
23832
  }, z.core.$strip>>>;
23833
23833
  scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
23834
- enabled: z.ZodOptional<z.ZodBoolean>;
23835
23834
  name: z.ZodString;
23836
23835
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23836
+ enabled: z.ZodOptional<z.ZodBoolean>;
23837
23837
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23838
23838
  messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23839
23839
  runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -23945,10 +23945,10 @@ declare const ProjectSelectSchema: z.ZodObject<{
23945
23945
  in: {};
23946
23946
  }>;
23947
23947
  declare const ProjectInsertSchema: z.ZodObject<{
23948
- name: z.ZodString;
23949
23948
  id: z.ZodString;
23950
- tenantId: z.ZodString;
23949
+ name: z.ZodString;
23951
23950
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23951
+ tenantId: z.ZodString;
23952
23952
  models: z.ZodObject<{
23953
23953
  base: z.ZodObject<{
23954
23954
  model: z.ZodOptional<z.ZodString>;
@@ -23997,10 +23997,8 @@ declare const ProjectUpdateSchema: z.ZodObject<{
23997
23997
  in: {};
23998
23998
  }>;
23999
23999
  declare const ProjectApiSelectSchema: z.ZodObject<{
24000
- name: z.ZodString;
24001
24000
  id: z.ZodString;
24002
- createdAt: z.ZodString;
24003
- updatedAt: z.ZodString;
24001
+ name: z.ZodString;
24004
24002
  description: z.ZodNullable<z.ZodString>;
24005
24003
  models: z.ZodNullable<z.ZodObject<{
24006
24004
  base: z.ZodObject<{
@@ -24020,13 +24018,15 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
24020
24018
  transferCountIs: z.ZodOptional<z.ZodNumber>;
24021
24019
  stepCountIs: z.ZodOptional<z.ZodNumber>;
24022
24020
  }, z.core.$strip>>;
24021
+ createdAt: z.ZodString;
24022
+ updatedAt: z.ZodString;
24023
24023
  }, {
24024
24024
  out: {};
24025
24025
  in: {};
24026
24026
  }>;
24027
24027
  declare const ProjectApiInsertSchema: z.ZodObject<{
24028
- name: z.ZodString;
24029
24028
  id: z.ZodString;
24029
+ name: z.ZodString;
24030
24030
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24031
24031
  models: z.ZodObject<{
24032
24032
  base: z.ZodObject<{
@@ -24076,8 +24076,8 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
24076
24076
  in: {};
24077
24077
  }>;
24078
24078
  declare const FullProjectDefinitionSchema: z.ZodObject<{
24079
- name: z.ZodString;
24080
24079
  id: z.ZodString;
24080
+ name: z.ZodString;
24081
24081
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24082
24082
  models: z.ZodObject<{
24083
24083
  base: z.ZodObject<{
@@ -24098,17 +24098,16 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
24098
24098
  stepCountIs: z.ZodOptional<z.ZodNumber>;
24099
24099
  }, z.core.$strip>>;
24100
24100
  agents: z.ZodRecord<z.ZodString, z.ZodObject<{
24101
- name: z.ZodString;
24102
24101
  id: z.ZodString;
24102
+ name: z.ZodString;
24103
24103
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24104
24104
  defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24105
24105
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24106
24106
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
24107
- name: z.ZodString;
24108
24107
  id: z.ZodString;
24109
- createdAt: z.ZodOptional<z.ZodString>;
24110
- updatedAt: z.ZodOptional<z.ZodString>;
24108
+ name: z.ZodString;
24111
24109
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24110
+ conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
24112
24111
  models: z.ZodOptional<z.ZodObject<{
24113
24112
  base: z.ZodOptional<z.ZodObject<{
24114
24113
  model: z.ZodOptional<z.ZodString>;
@@ -24123,7 +24122,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
24123
24122
  providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
24124
24123
  }, z.core.$strip>>;
24125
24124
  }, z.core.$strip>>;
24126
- conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
24125
+ createdAt: z.ZodOptional<z.ZodString>;
24126
+ updatedAt: z.ZodOptional<z.ZodString>;
24127
24127
  type: z.ZodLiteral<"internal">;
24128
24128
  canUse: z.ZodArray<z.ZodObject<{
24129
24129
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -24157,12 +24157,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
24157
24157
  }, z.core.$strip>>;
24158
24158
  }, z.core.$strip>>;
24159
24159
  tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
24160
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
24161
- name: z.ZodString;
24162
24160
  id: z.ZodString;
24161
+ name: z.ZodString;
24162
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24163
24163
  tenantId: z.ZodString;
24164
24164
  projectId: z.ZodString;
24165
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24165
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
24166
24166
  config: z.ZodObject<{
24167
24167
  type: z.ZodLiteral<"mcp">;
24168
24168
  mcp: z.ZodObject<{
@@ -24197,11 +24197,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
24197
24197
  isWorkApp: z.ZodOptional<z.ZodBoolean>;
24198
24198
  }>, z.core.$strip>>>;
24199
24199
  externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
24200
- name: z.ZodString;
24201
24200
  id: z.ZodString;
24201
+ name: z.ZodString;
24202
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24202
24203
  tenantId: z.ZodString;
24203
24204
  projectId: z.ZodString;
24204
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24205
24205
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24206
24206
  baseUrl: z.ZodURL;
24207
24207
  }>, z.core.$strip>>>;
@@ -24211,12 +24211,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
24211
24211
  description: z.ZodString;
24212
24212
  }, z.core.$strip>>>;
24213
24213
  functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitAgentScope<{
24214
- name: z.ZodString;
24215
24214
  id: z.ZodString;
24215
+ name: z.ZodString;
24216
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24216
24217
  tenantId: z.ZodString;
24217
24218
  projectId: z.ZodString;
24218
24219
  agentId: z.ZodString;
24219
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24220
24220
  functionId: z.ZodString;
24221
24221
  }>, z.core.$strip>>>;
24222
24222
  functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -24226,12 +24226,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
24226
24226
  dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
24227
24227
  }, z.core.$strip>>>;
24228
24228
  triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
24229
- enabled: z.ZodOptional<z.ZodBoolean>;
24230
- name: z.ZodString;
24231
24229
  id: z.ZodOptional<z.ZodString>;
24230
+ name: z.ZodString;
24232
24231
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24233
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24232
+ enabled: z.ZodOptional<z.ZodBoolean>;
24234
24233
  inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
24234
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24235
24235
  outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
24236
24236
  messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24237
24237
  authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
@@ -24240,9 +24240,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
24240
24240
  runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24241
24241
  }, z.core.$strip>>>;
24242
24242
  scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
24243
- enabled: z.ZodOptional<z.ZodBoolean>;
24244
24243
  name: z.ZodString;
24245
24244
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24245
+ enabled: z.ZodOptional<z.ZodBoolean>;
24246
24246
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24247
24247
  messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24248
24248
  runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -24295,12 +24295,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
24295
24295
  prompt: z.ZodOptional<z.ZodString>;
24296
24296
  }, z.core.$strip>>;
24297
24297
  tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
24298
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
24299
- name: z.ZodString;
24300
24298
  id: z.ZodString;
24299
+ name: z.ZodString;
24300
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24301
24301
  tenantId: z.ZodString;
24302
24302
  projectId: z.ZodString;
24303
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24303
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
24304
24304
  config: z.ZodObject<{
24305
24305
  type: z.ZodLiteral<"mcp">;
24306
24306
  mcp: z.ZodObject<{
@@ -24335,12 +24335,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
24335
24335
  isWorkApp: z.ZodOptional<z.ZodBoolean>;
24336
24336
  }>, z.core.$strip>>;
24337
24337
  functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitAgentScope<{
24338
- name: z.ZodString;
24339
24338
  id: z.ZodString;
24339
+ name: z.ZodString;
24340
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24340
24341
  tenantId: z.ZodString;
24341
24342
  projectId: z.ZodString;
24342
24343
  agentId: z.ZodString;
24343
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24344
24344
  functionId: z.ZodString;
24345
24345
  }>, z.core.$strip>>>;
24346
24346
  functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -24350,11 +24350,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
24350
24350
  dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
24351
24351
  }, z.core.$strip>>>;
24352
24352
  skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
24353
- metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
24354
24353
  name: z.ZodString;
24354
+ description: z.ZodString;
24355
24355
  tenantId: z.ZodString;
24356
24356
  projectId: z.ZodString;
24357
- description: z.ZodString;
24357
+ metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
24358
24358
  content: z.ZodString;
24359
24359
  }>, z.core.$strip>>>;
24360
24360
  dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -24411,11 +24411,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
24411
24411
  in: {};
24412
24412
  }>>>;
24413
24413
  externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
24414
- name: z.ZodString;
24415
24414
  id: z.ZodString;
24415
+ name: z.ZodString;
24416
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24416
24417
  tenantId: z.ZodString;
24417
24418
  projectId: z.ZodString;
24418
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24419
24419
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24420
24420
  baseUrl: z.ZodURL;
24421
24421
  }>, z.core.$strip>>>;
@@ -24435,10 +24435,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
24435
24435
  }, z.core.$strip>>>;
24436
24436
  }, z.core.$strip>>;
24437
24437
  credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
24438
- name: z.ZodString;
24439
- userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24440
24438
  id: z.ZodString;
24439
+ name: z.ZodString;
24441
24440
  toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24441
+ userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24442
24442
  credentialStoreId: z.ZodString;
24443
24443
  retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
24444
24444
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -24456,11 +24456,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
24456
24456
  in: {};
24457
24457
  }>;
24458
24458
  declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
24459
- name: z.ZodString;
24460
24459
  id: z.ZodString;
24461
- createdAt: z.ZodString;
24462
- updatedAt: z.ZodString;
24460
+ name: z.ZodString;
24463
24461
  description: z.ZodNullable<z.ZodString>;
24462
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
24464
24463
  models: z.ZodNullable<z.ZodType<{
24465
24464
  base?: {
24466
24465
  model?: string | undefined;
@@ -24523,7 +24522,8 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
24523
24522
  }, {
24524
24523
  stepCountIs?: number | undefined;
24525
24524
  }>>>;
24526
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
24525
+ createdAt: z.ZodString;
24526
+ updatedAt: z.ZodString;
24527
24527
  type: z.ZodLiteral<"internal">;
24528
24528
  canUse: z.ZodArray<z.ZodObject<{
24529
24529
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -24549,11 +24549,10 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
24549
24549
  }, z.core.$strip>]>>>;
24550
24550
  }, z.core.$strip>;
24551
24551
  declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
24552
- name: z.ZodString;
24553
24552
  id: z.ZodString;
24554
- createdAt: z.ZodString;
24555
- updatedAt: z.ZodString;
24553
+ name: z.ZodString;
24556
24554
  description: z.ZodNullable<z.ZodString>;
24555
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
24557
24556
  models: z.ZodNullable<z.ZodType<{
24558
24557
  base?: {
24559
24558
  model?: string | undefined;
@@ -24616,7 +24615,8 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
24616
24615
  }, {
24617
24616
  stepCountIs?: number | undefined;
24618
24617
  }>>>;
24619
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
24618
+ createdAt: z.ZodString;
24619
+ updatedAt: z.ZodString;
24620
24620
  type: z.ZodLiteral<"internal">;
24621
24621
  canUse: z.ZodArray<z.ZodObject<{
24622
24622
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -24648,19 +24648,18 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
24648
24648
  }, z.core.$strip>]>>>;
24649
24649
  }, z.core.$strip>;
24650
24650
  declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
24651
- name: z.ZodString;
24652
24651
  id: z.ZodString;
24653
- createdAt: z.ZodString;
24654
- updatedAt: z.ZodString;
24652
+ name: z.ZodString;
24655
24653
  description: z.ZodNullable<z.ZodString>;
24656
24654
  defaultSubAgentId: z.ZodNullable<z.ZodString>;
24655
+ createdAt: z.ZodString;
24656
+ updatedAt: z.ZodString;
24657
24657
  contextConfigId: z.ZodNullable<z.ZodString>;
24658
24658
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
24659
- name: z.ZodString;
24660
24659
  id: z.ZodString;
24661
- createdAt: z.ZodString;
24662
- updatedAt: z.ZodString;
24660
+ name: z.ZodString;
24663
24661
  description: z.ZodNullable<z.ZodString>;
24662
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
24664
24663
  models: z.ZodNullable<z.ZodType<{
24665
24664
  base?: {
24666
24665
  model?: string | undefined;
@@ -24723,7 +24722,8 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
24723
24722
  }, {
24724
24723
  stepCountIs?: number | undefined;
24725
24724
  }>>>;
24726
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
24725
+ createdAt: z.ZodString;
24726
+ updatedAt: z.ZodString;
24727
24727
  type: z.ZodLiteral<"internal">;
24728
24728
  canUse: z.ZodArray<z.ZodObject<{
24729
24729
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -24794,12 +24794,12 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
24794
24794
  description: z.ZodString;
24795
24795
  }, z.core.$strip>>>;
24796
24796
  functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
24797
- name: z.ZodString;
24798
24797
  id: z.ZodString;
24798
+ name: z.ZodString;
24799
+ description: z.ZodNullable<z.ZodString>;
24800
+ agentId: z.ZodString;
24799
24801
  createdAt: z.ZodString;
24800
24802
  updatedAt: z.ZodString;
24801
- agentId: z.ZodString;
24802
- description: z.ZodNullable<z.ZodString>;
24803
24803
  functionId: z.ZodString;
24804
24804
  relationshipId: z.ZodOptional<z.ZodString>;
24805
24805
  }, z.core.$strip>>>;
@@ -24876,12 +24876,12 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
24876
24876
  prompt: z.ZodNullable<z.ZodString>;
24877
24877
  }, z.core.$strip>;
24878
24878
  declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
24879
- name: z.ZodString;
24880
24879
  id: z.ZodString;
24881
- createdAt: z.ZodString;
24882
- updatedAt: z.ZodString;
24880
+ name: z.ZodString;
24883
24881
  description: z.ZodNullable<z.ZodString>;
24884
24882
  defaultSubAgentId: z.ZodNullable<z.ZodString>;
24883
+ createdAt: z.ZodString;
24884
+ updatedAt: z.ZodString;
24885
24885
  contextConfigId: z.ZodNullable<z.ZodString>;
24886
24886
  tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
24887
24887
  createdAt: z.ZodString;
@@ -24929,12 +24929,12 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
24929
24929
  description: z.ZodString;
24930
24930
  }, z.core.$strip>>>;
24931
24931
  functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
24932
- name: z.ZodString;
24933
24932
  id: z.ZodString;
24933
+ name: z.ZodString;
24934
+ description: z.ZodNullable<z.ZodString>;
24935
+ agentId: z.ZodString;
24934
24936
  createdAt: z.ZodString;
24935
24937
  updatedAt: z.ZodString;
24936
- agentId: z.ZodString;
24937
- description: z.ZodNullable<z.ZodString>;
24938
24938
  functionId: z.ZodString;
24939
24939
  relationshipId: z.ZodOptional<z.ZodString>;
24940
24940
  }, z.core.$strip>>>;
@@ -25010,11 +25010,10 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
25010
25010
  }, z.core.$strip>>;
25011
25011
  prompt: z.ZodNullable<z.ZodString>;
25012
25012
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
25013
- name: z.ZodString;
25014
25013
  id: z.ZodString;
25015
- createdAt: z.ZodString;
25016
- updatedAt: z.ZodString;
25014
+ name: z.ZodString;
25017
25015
  description: z.ZodNullable<z.ZodString>;
25016
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
25018
25017
  models: z.ZodNullable<z.ZodType<{
25019
25018
  base?: {
25020
25019
  model?: string | undefined;
@@ -25077,7 +25076,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
25077
25076
  }, {
25078
25077
  stepCountIs?: number | undefined;
25079
25078
  }>>>;
25080
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
25079
+ createdAt: z.ZodString;
25080
+ updatedAt: z.ZodString;
25081
25081
  type: z.ZodLiteral<"internal">;
25082
25082
  canUse: z.ZodArray<z.ZodObject<{
25083
25083
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -25110,10 +25110,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
25110
25110
  }, z.core.$strip>>;
25111
25111
  }, z.core.$strip>;
25112
25112
  declare const FullProjectSelectSchema: z.ZodObject<{
25113
- name: z.ZodString;
25114
25113
  id: z.ZodString;
25115
- createdAt: z.ZodString;
25116
- updatedAt: z.ZodString;
25114
+ name: z.ZodString;
25117
25115
  description: z.ZodNullable<z.ZodString>;
25118
25116
  models: z.ZodNullable<z.ZodObject<{
25119
25117
  base: z.ZodObject<{
@@ -25133,20 +25131,21 @@ declare const FullProjectSelectSchema: z.ZodObject<{
25133
25131
  transferCountIs: z.ZodOptional<z.ZodNumber>;
25134
25132
  stepCountIs: z.ZodOptional<z.ZodNumber>;
25135
25133
  }, z.core.$strip>>;
25134
+ createdAt: z.ZodString;
25135
+ updatedAt: z.ZodString;
25136
25136
  agents: z.ZodRecord<z.ZodString, z.ZodObject<{
25137
- name: z.ZodString;
25138
25137
  id: z.ZodString;
25139
- createdAt: z.ZodString;
25140
- updatedAt: z.ZodString;
25138
+ name: z.ZodString;
25141
25139
  description: z.ZodNullable<z.ZodString>;
25142
25140
  defaultSubAgentId: z.ZodNullable<z.ZodString>;
25141
+ createdAt: z.ZodString;
25142
+ updatedAt: z.ZodString;
25143
25143
  contextConfigId: z.ZodNullable<z.ZodString>;
25144
25144
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
25145
- name: z.ZodString;
25146
25145
  id: z.ZodString;
25147
- createdAt: z.ZodString;
25148
- updatedAt: z.ZodString;
25146
+ name: z.ZodString;
25149
25147
  description: z.ZodNullable<z.ZodString>;
25148
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
25150
25149
  models: z.ZodNullable<z.ZodType<{
25151
25150
  base?: {
25152
25151
  model?: string | undefined;
@@ -25209,7 +25208,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
25209
25208
  }, {
25210
25209
  stepCountIs?: number | undefined;
25211
25210
  }>>>;
25212
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
25211
+ createdAt: z.ZodString;
25212
+ updatedAt: z.ZodString;
25213
25213
  type: z.ZodLiteral<"internal">;
25214
25214
  canUse: z.ZodArray<z.ZodObject<{
25215
25215
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -25280,12 +25280,12 @@ declare const FullProjectSelectSchema: z.ZodObject<{
25280
25280
  description: z.ZodString;
25281
25281
  }, z.core.$strip>>>;
25282
25282
  functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
25283
- name: z.ZodString;
25284
25283
  id: z.ZodString;
25284
+ name: z.ZodString;
25285
+ description: z.ZodNullable<z.ZodString>;
25286
+ agentId: z.ZodString;
25285
25287
  createdAt: z.ZodString;
25286
25288
  updatedAt: z.ZodString;
25287
- agentId: z.ZodString;
25288
- description: z.ZodNullable<z.ZodString>;
25289
25289
  functionId: z.ZodString;
25290
25290
  relationshipId: z.ZodOptional<z.ZodString>;
25291
25291
  }, z.core.$strip>>>;
@@ -25391,12 +25391,12 @@ declare const FullProjectSelectSchema: z.ZodObject<{
25391
25391
  id: z.ZodString;
25392
25392
  }>, z.core.$strip>>;
25393
25393
  functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
25394
- name: z.ZodString;
25395
25394
  id: z.ZodString;
25395
+ name: z.ZodString;
25396
+ description: z.ZodNullable<z.ZodString>;
25397
+ agentId: z.ZodString;
25396
25398
  createdAt: z.ZodString;
25397
25399
  updatedAt: z.ZodString;
25398
- agentId: z.ZodString;
25399
- description: z.ZodNullable<z.ZodString>;
25400
25400
  functionId: z.ZodString;
25401
25401
  relationshipId: z.ZodOptional<z.ZodString>;
25402
25402
  }, z.core.$strip>>>;
@@ -25539,12 +25539,12 @@ declare const FullProjectSelectSchema: z.ZodObject<{
25539
25539
  }, z.core.$strip>>>;
25540
25540
  }, z.core.$strip>>;
25541
25541
  credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
25542
- name: z.ZodString;
25543
- userId: z.ZodNullable<z.ZodString>;
25544
25542
  id: z.ZodString;
25543
+ name: z.ZodString;
25545
25544
  createdAt: z.ZodString;
25546
25545
  updatedAt: z.ZodString;
25547
25546
  toolId: z.ZodNullable<z.ZodString>;
25547
+ userId: z.ZodNullable<z.ZodString>;
25548
25548
  credentialStoreId: z.ZodString;
25549
25549
  retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
25550
25550
  createdBy: z.ZodNullable<z.ZodString>;
@@ -26135,10 +26135,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
26135
26135
  in: {};
26136
26136
  }>;
26137
26137
  declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
26138
- name: z.ZodString;
26139
26138
  id: z.ZodString;
26140
- createdAt: z.ZodString;
26141
- updatedAt: z.ZodString;
26139
+ name: z.ZodString;
26142
26140
  description: z.ZodNullable<z.ZodString>;
26143
26141
  models: z.ZodNullable<z.ZodObject<{
26144
26142
  base: z.ZodObject<{
@@ -26158,6 +26156,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
26158
26156
  transferCountIs: z.ZodOptional<z.ZodNumber>;
26159
26157
  stepCountIs: z.ZodOptional<z.ZodNumber>;
26160
26158
  }, z.core.$strip>>;
26159
+ createdAt: z.ZodString;
26160
+ updatedAt: z.ZodString;
26161
26161
  tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
26162
26162
  createdAt: z.ZodString;
26163
26163
  updatedAt: z.ZodString;
@@ -26188,12 +26188,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
26188
26188
  id: z.ZodString;
26189
26189
  }>, z.core.$strip>>;
26190
26190
  functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
26191
- name: z.ZodString;
26192
26191
  id: z.ZodString;
26192
+ name: z.ZodString;
26193
+ description: z.ZodNullable<z.ZodString>;
26194
+ agentId: z.ZodString;
26193
26195
  createdAt: z.ZodString;
26194
26196
  updatedAt: z.ZodString;
26195
- agentId: z.ZodString;
26196
- description: z.ZodNullable<z.ZodString>;
26197
26197
  functionId: z.ZodString;
26198
26198
  relationshipId: z.ZodOptional<z.ZodString>;
26199
26199
  }, z.core.$strip>>>;
@@ -26336,12 +26336,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
26336
26336
  }, z.core.$strip>>>;
26337
26337
  }, z.core.$strip>>;
26338
26338
  credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
26339
- name: z.ZodString;
26340
- userId: z.ZodNullable<z.ZodString>;
26341
26339
  id: z.ZodString;
26340
+ name: z.ZodString;
26342
26341
  createdAt: z.ZodString;
26343
26342
  updatedAt: z.ZodString;
26344
26343
  toolId: z.ZodNullable<z.ZodString>;
26344
+ userId: z.ZodNullable<z.ZodString>;
26345
26345
  credentialStoreId: z.ZodString;
26346
26346
  retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
26347
26347
  createdBy: z.ZodNullable<z.ZodString>;
@@ -26928,12 +26928,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
26928
26928
  }>>>;
26929
26929
  }, z.core.$strip>>>;
26930
26930
  agents: z.ZodRecord<z.ZodString, z.ZodObject<{
26931
- name: z.ZodString;
26932
26931
  id: z.ZodString;
26933
- createdAt: z.ZodString;
26934
- updatedAt: z.ZodString;
26932
+ name: z.ZodString;
26935
26933
  description: z.ZodNullable<z.ZodString>;
26936
26934
  defaultSubAgentId: z.ZodNullable<z.ZodString>;
26935
+ createdAt: z.ZodString;
26936
+ updatedAt: z.ZodString;
26937
26937
  contextConfigId: z.ZodNullable<z.ZodString>;
26938
26938
  tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
26939
26939
  createdAt: z.ZodString;
@@ -26981,12 +26981,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
26981
26981
  description: z.ZodString;
26982
26982
  }, z.core.$strip>>>;
26983
26983
  functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
26984
- name: z.ZodString;
26985
26984
  id: z.ZodString;
26985
+ name: z.ZodString;
26986
+ description: z.ZodNullable<z.ZodString>;
26987
+ agentId: z.ZodString;
26986
26988
  createdAt: z.ZodString;
26987
26989
  updatedAt: z.ZodString;
26988
- agentId: z.ZodString;
26989
- description: z.ZodNullable<z.ZodString>;
26990
26990
  functionId: z.ZodString;
26991
26991
  relationshipId: z.ZodOptional<z.ZodString>;
26992
26992
  }, z.core.$strip>>>;
@@ -27062,11 +27062,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
27062
27062
  }, z.core.$strip>>;
27063
27063
  prompt: z.ZodNullable<z.ZodString>;
27064
27064
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
27065
- name: z.ZodString;
27066
27065
  id: z.ZodString;
27067
- createdAt: z.ZodString;
27068
- updatedAt: z.ZodString;
27066
+ name: z.ZodString;
27069
27067
  description: z.ZodNullable<z.ZodString>;
27068
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
27070
27069
  models: z.ZodNullable<z.ZodType<{
27071
27070
  base?: {
27072
27071
  model?: string | undefined;
@@ -27129,7 +27128,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
27129
27128
  }, {
27130
27129
  stepCountIs?: number | undefined;
27131
27130
  }>>>;
27132
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
27131
+ createdAt: z.ZodString;
27132
+ updatedAt: z.ZodString;
27133
27133
  type: z.ZodLiteral<"internal">;
27134
27134
  canUse: z.ZodArray<z.ZodObject<{
27135
27135
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -27167,10 +27167,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
27167
27167
  }>;
27168
27168
  declare const ProjectResponse: z.ZodObject<{
27169
27169
  data: z.ZodObject<{
27170
- name: z.ZodString;
27171
27170
  id: z.ZodString;
27172
- createdAt: z.ZodString;
27173
- updatedAt: z.ZodString;
27171
+ name: z.ZodString;
27174
27172
  description: z.ZodNullable<z.ZodString>;
27175
27173
  models: z.ZodNullable<z.ZodObject<{
27176
27174
  base: z.ZodObject<{
@@ -27190,6 +27188,8 @@ declare const ProjectResponse: z.ZodObject<{
27190
27188
  transferCountIs: z.ZodOptional<z.ZodNumber>;
27191
27189
  stepCountIs: z.ZodOptional<z.ZodNumber>;
27192
27190
  }, z.core.$strip>>;
27191
+ createdAt: z.ZodString;
27192
+ updatedAt: z.ZodString;
27193
27193
  }, {
27194
27194
  out: {};
27195
27195
  in: {};
@@ -27428,15 +27428,15 @@ declare const ContextConfigResponse: z.ZodObject<{
27428
27428
  }, z.core.$strip>;
27429
27429
  declare const ApiKeyResponse: z.ZodObject<{
27430
27430
  data: z.ZodObject<{
27431
- name: z.ZodNullable<z.ZodString>;
27432
27431
  id: z.ZodString;
27432
+ name: z.ZodNullable<z.ZodString>;
27433
+ agentId: z.ZodString;
27433
27434
  createdAt: z.ZodString;
27434
- expiresAt: z.ZodNullable<z.ZodString>;
27435
27435
  updatedAt: z.ZodString;
27436
- agentId: z.ZodString;
27436
+ expiresAt: z.ZodNullable<z.ZodString>;
27437
+ lastUsedAt: z.ZodNullable<z.ZodString>;
27437
27438
  publicId: z.ZodString;
27438
27439
  keyPrefix: z.ZodString;
27439
- lastUsedAt: z.ZodNullable<z.ZodString>;
27440
27440
  }, {
27441
27441
  out: {};
27442
27442
  in: {};
@@ -27444,12 +27444,12 @@ declare const ApiKeyResponse: z.ZodObject<{
27444
27444
  }, z.core.$strip>;
27445
27445
  declare const CredentialReferenceResponse: z.ZodObject<{
27446
27446
  data: z.ZodObject<{
27447
- name: z.ZodString;
27448
- userId: z.ZodNullable<z.ZodString>;
27449
27447
  id: z.ZodString;
27448
+ name: z.ZodString;
27450
27449
  createdAt: z.ZodString;
27451
27450
  updatedAt: z.ZodString;
27452
27451
  toolId: z.ZodNullable<z.ZodString>;
27452
+ userId: z.ZodNullable<z.ZodString>;
27453
27453
  credentialStoreId: z.ZodString;
27454
27454
  retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
27455
27455
  createdBy: z.ZodNullable<z.ZodString>;
@@ -28050,12 +28050,12 @@ declare const FunctionResponse: z.ZodObject<{
28050
28050
  }, z.core.$strip>;
28051
28051
  declare const FunctionToolResponse: z.ZodObject<{
28052
28052
  data: z.ZodObject<{
28053
- name: z.ZodString;
28054
28053
  id: z.ZodString;
28054
+ name: z.ZodString;
28055
+ description: z.ZodNullable<z.ZodString>;
28056
+ agentId: z.ZodString;
28055
28057
  createdAt: z.ZodString;
28056
28058
  updatedAt: z.ZodString;
28057
- agentId: z.ZodString;
28058
- description: z.ZodNullable<z.ZodString>;
28059
28059
  functionId: z.ZodString;
28060
28060
  relationshipId: z.ZodOptional<z.ZodString>;
28061
28061
  }, z.core.$strip>;
@@ -28237,8 +28237,8 @@ declare const TriggerResponse: z.ZodObject<{
28237
28237
  }>;
28238
28238
  signature: z.ZodObject<{
28239
28239
  source: z.ZodEnum<{
28240
- body: "body";
28241
28240
  query: "query";
28241
+ body: "body";
28242
28242
  header: "header";
28243
28243
  }>;
28244
28244
  key: z.ZodString;
@@ -28298,10 +28298,8 @@ declare const TriggerInvocationResponse: z.ZodObject<{
28298
28298
  }, z.core.$strip>;
28299
28299
  declare const ProjectListResponse: z.ZodObject<{
28300
28300
  data: z.ZodArray<z.ZodObject<{
28301
- name: z.ZodString;
28302
28301
  id: z.ZodString;
28303
- createdAt: z.ZodString;
28304
- updatedAt: z.ZodString;
28302
+ name: z.ZodString;
28305
28303
  description: z.ZodNullable<z.ZodString>;
28306
28304
  models: z.ZodNullable<z.ZodObject<{
28307
28305
  base: z.ZodObject<{
@@ -28321,6 +28319,8 @@ declare const ProjectListResponse: z.ZodObject<{
28321
28319
  transferCountIs: z.ZodOptional<z.ZodNumber>;
28322
28320
  stepCountIs: z.ZodOptional<z.ZodNumber>;
28323
28321
  }, z.core.$strip>>;
28322
+ createdAt: z.ZodString;
28323
+ updatedAt: z.ZodString;
28324
28324
  }, {
28325
28325
  out: {};
28326
28326
  in: {};
@@ -28589,15 +28589,15 @@ declare const ContextConfigListResponse: z.ZodObject<{
28589
28589
  }, z.core.$strip>;
28590
28590
  declare const ApiKeyListResponse: z.ZodObject<{
28591
28591
  data: z.ZodArray<z.ZodObject<{
28592
- name: z.ZodNullable<z.ZodString>;
28593
28592
  id: z.ZodString;
28593
+ name: z.ZodNullable<z.ZodString>;
28594
+ agentId: z.ZodString;
28594
28595
  createdAt: z.ZodString;
28595
- expiresAt: z.ZodNullable<z.ZodString>;
28596
28596
  updatedAt: z.ZodString;
28597
- agentId: z.ZodString;
28597
+ expiresAt: z.ZodNullable<z.ZodString>;
28598
+ lastUsedAt: z.ZodNullable<z.ZodString>;
28598
28599
  publicId: z.ZodString;
28599
28600
  keyPrefix: z.ZodString;
28600
- lastUsedAt: z.ZodNullable<z.ZodString>;
28601
28601
  }, {
28602
28602
  out: {};
28603
28603
  in: {};
@@ -28611,18 +28611,18 @@ declare const ApiKeyListResponse: z.ZodObject<{
28611
28611
  }, z.core.$strip>;
28612
28612
  declare const AppResponse: z.ZodObject<{
28613
28613
  data: z.ZodObject<{
28614
- enabled: z.ZodBoolean;
28615
- type: z.ZodString;
28616
- name: z.ZodString;
28617
28614
  id: z.ZodString;
28618
- createdAt: z.ZodString;
28619
- updatedAt: z.ZodString;
28615
+ name: z.ZodString;
28616
+ description: z.ZodNullable<z.ZodString>;
28620
28617
  tenantId: z.ZodNullable<z.ZodString>;
28621
28618
  projectId: z.ZodNullable<z.ZodString>;
28622
- description: z.ZodNullable<z.ZodString>;
28623
- lastUsedAt: z.ZodNullable<z.ZodString>;
28624
- defaultProjectId: z.ZodNullable<z.ZodString>;
28619
+ type: z.ZodString;
28620
+ createdAt: z.ZodString;
28621
+ updatedAt: z.ZodString;
28622
+ enabled: z.ZodBoolean;
28625
28623
  defaultAgentId: z.ZodNullable<z.ZodString>;
28624
+ defaultProjectId: z.ZodNullable<z.ZodString>;
28625
+ lastUsedAt: z.ZodNullable<z.ZodString>;
28626
28626
  config: z.ZodDiscriminatedUnion<[z.ZodObject<{
28627
28627
  type: z.ZodLiteral<"web_client">;
28628
28628
  webClient: z.ZodObject<{
@@ -28639,18 +28639,18 @@ declare const AppResponse: z.ZodObject<{
28639
28639
  }, z.core.$strip>;
28640
28640
  declare const AppListResponse: z.ZodObject<{
28641
28641
  data: z.ZodArray<z.ZodObject<{
28642
- enabled: z.ZodBoolean;
28643
- type: z.ZodString;
28644
- name: z.ZodString;
28645
28642
  id: z.ZodString;
28646
- createdAt: z.ZodString;
28647
- updatedAt: z.ZodString;
28643
+ name: z.ZodString;
28644
+ description: z.ZodNullable<z.ZodString>;
28648
28645
  tenantId: z.ZodNullable<z.ZodString>;
28649
28646
  projectId: z.ZodNullable<z.ZodString>;
28650
- description: z.ZodNullable<z.ZodString>;
28651
- lastUsedAt: z.ZodNullable<z.ZodString>;
28652
- defaultProjectId: z.ZodNullable<z.ZodString>;
28647
+ type: z.ZodString;
28648
+ createdAt: z.ZodString;
28649
+ updatedAt: z.ZodString;
28650
+ enabled: z.ZodBoolean;
28653
28651
  defaultAgentId: z.ZodNullable<z.ZodString>;
28652
+ defaultProjectId: z.ZodNullable<z.ZodString>;
28653
+ lastUsedAt: z.ZodNullable<z.ZodString>;
28654
28654
  config: z.ZodDiscriminatedUnion<[z.ZodObject<{
28655
28655
  type: z.ZodLiteral<"web_client">;
28656
28656
  webClient: z.ZodObject<{
@@ -28673,12 +28673,12 @@ declare const AppListResponse: z.ZodObject<{
28673
28673
  }, z.core.$strip>;
28674
28674
  declare const CredentialReferenceListResponse: z.ZodObject<{
28675
28675
  data: z.ZodArray<z.ZodObject<{
28676
- name: z.ZodString;
28677
- userId: z.ZodNullable<z.ZodString>;
28678
28676
  id: z.ZodString;
28677
+ name: z.ZodString;
28679
28678
  createdAt: z.ZodString;
28680
28679
  updatedAt: z.ZodString;
28681
28680
  toolId: z.ZodNullable<z.ZodString>;
28681
+ userId: z.ZodNullable<z.ZodString>;
28682
28682
  credentialStoreId: z.ZodString;
28683
28683
  retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
28684
28684
  createdBy: z.ZodNullable<z.ZodString>;
@@ -29291,12 +29291,12 @@ declare const FunctionListResponse: z.ZodObject<{
29291
29291
  }, z.core.$strip>;
29292
29292
  declare const FunctionToolListResponse: z.ZodObject<{
29293
29293
  data: z.ZodArray<z.ZodObject<{
29294
- name: z.ZodString;
29295
29294
  id: z.ZodString;
29295
+ name: z.ZodString;
29296
+ description: z.ZodNullable<z.ZodString>;
29297
+ agentId: z.ZodString;
29296
29298
  createdAt: z.ZodString;
29297
29299
  updatedAt: z.ZodString;
29298
- agentId: z.ZodString;
29299
- description: z.ZodNullable<z.ZodString>;
29300
29300
  functionId: z.ZodString;
29301
29301
  relationshipId: z.ZodOptional<z.ZodString>;
29302
29302
  }, z.core.$strip>>;
@@ -29546,8 +29546,8 @@ declare const TriggerListResponse: z.ZodObject<{
29546
29546
  }>;
29547
29547
  signature: z.ZodObject<{
29548
29548
  source: z.ZodEnum<{
29549
- body: "body";
29550
29549
  query: "query";
29550
+ body: "body";
29551
29551
  header: "header";
29552
29552
  }>;
29553
29553
  key: z.ZodString;
@@ -29619,14 +29619,14 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
29619
29619
  }, z.core.$strip>;
29620
29620
  declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
29621
29621
  data: z.ZodObject<{
29622
- enabled: z.ZodBoolean;
29623
- name: z.ZodString;
29624
29622
  id: z.ZodString;
29623
+ name: z.ZodString;
29624
+ description: z.ZodNullable<z.ZodString>;
29625
29625
  createdAt: z.ZodString;
29626
29626
  updatedAt: z.ZodString;
29627
- description: z.ZodNullable<z.ZodString>;
29628
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29627
+ enabled: z.ZodBoolean;
29629
29628
  inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
29629
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29630
29630
  outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
29631
29631
  messageTemplate: z.ZodNullable<z.ZodString>;
29632
29632
  authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
@@ -29645,8 +29645,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
29645
29645
  }>;
29646
29646
  signature: z.ZodObject<{
29647
29647
  source: z.ZodEnum<{
29648
- body: "body";
29649
29648
  query: "query";
29649
+ body: "body";
29650
29650
  header: "header";
29651
29651
  }>;
29652
29652
  key: z.ZodString;
@@ -29682,14 +29682,14 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
29682
29682
  }, z.core.$strip>;
29683
29683
  declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
29684
29684
  data: z.ZodObject<{
29685
- enabled: z.ZodBoolean;
29686
- name: z.ZodString;
29687
29685
  id: z.ZodString;
29686
+ name: z.ZodString;
29687
+ description: z.ZodNullable<z.ZodString>;
29688
29688
  createdAt: z.ZodString;
29689
29689
  updatedAt: z.ZodString;
29690
- description: z.ZodNullable<z.ZodString>;
29691
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29690
+ enabled: z.ZodBoolean;
29692
29691
  inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
29692
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29693
29693
  outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
29694
29694
  messageTemplate: z.ZodNullable<z.ZodString>;
29695
29695
  authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
@@ -29708,8 +29708,8 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
29708
29708
  }>;
29709
29709
  signature: z.ZodObject<{
29710
29710
  source: z.ZodEnum<{
29711
- body: "body";
29712
29711
  query: "query";
29712
+ body: "body";
29713
29713
  header: "header";
29714
29714
  }>;
29715
29715
  key: z.ZodString;
@@ -29746,14 +29746,14 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
29746
29746
  }, z.core.$strip>;
29747
29747
  declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
29748
29748
  data: z.ZodArray<z.ZodObject<{
29749
- enabled: z.ZodBoolean;
29750
- name: z.ZodString;
29751
29749
  id: z.ZodString;
29750
+ name: z.ZodString;
29751
+ description: z.ZodNullable<z.ZodString>;
29752
29752
  createdAt: z.ZodString;
29753
29753
  updatedAt: z.ZodString;
29754
- description: z.ZodNullable<z.ZodString>;
29755
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29754
+ enabled: z.ZodBoolean;
29756
29755
  inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
29756
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29757
29757
  outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
29758
29758
  messageTemplate: z.ZodNullable<z.ZodString>;
29759
29759
  authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
@@ -29772,8 +29772,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
29772
29772
  }>;
29773
29773
  signature: z.ZodObject<{
29774
29774
  source: z.ZodEnum<{
29775
- body: "body";
29776
29775
  query: "query";
29776
+ body: "body";
29777
29777
  header: "header";
29778
29778
  }>;
29779
29779
  key: z.ZodString;
@@ -29814,12 +29814,12 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
29814
29814
  }, z.core.$strip>;
29815
29815
  }, z.core.$strip>;
29816
29816
  declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
29817
- enabled: z.ZodBoolean;
29818
- name: z.ZodString;
29819
29817
  id: z.ZodString;
29818
+ name: z.ZodString;
29819
+ description: z.ZodNullable<z.ZodString>;
29820
29820
  createdAt: z.ZodString;
29821
29821
  updatedAt: z.ZodString;
29822
- description: z.ZodNullable<z.ZodString>;
29822
+ enabled: z.ZodBoolean;
29823
29823
  createdBy: z.ZodNullable<z.ZodString>;
29824
29824
  messageTemplate: z.ZodNullable<z.ZodString>;
29825
29825
  runAsUserId: z.ZodNullable<z.ZodString>;
@@ -29832,8 +29832,8 @@ declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
29832
29832
  timeoutSeconds: z.ZodNumber;
29833
29833
  lastRunAt: z.ZodNullable<z.ZodISODateTime>;
29834
29834
  lastRunStatus: z.ZodNullable<z.ZodEnum<{
29835
- failed: "failed";
29836
29835
  completed: "completed";
29836
+ failed: "failed";
29837
29837
  }>>;
29838
29838
  lastRunConversationIds: z.ZodArray<z.ZodString>;
29839
29839
  nextRunAt: z.ZodNullable<z.ZodISODateTime>;
@@ -29893,12 +29893,12 @@ declare const ScheduledTriggerListResponse: z.ZodObject<{
29893
29893
  }, z.core.$strip>;
29894
29894
  declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
29895
29895
  data: z.ZodArray<z.ZodObject<{
29896
- enabled: z.ZodBoolean;
29897
- name: z.ZodString;
29898
29896
  id: z.ZodString;
29897
+ name: z.ZodString;
29898
+ description: z.ZodNullable<z.ZodString>;
29899
29899
  createdAt: z.ZodString;
29900
29900
  updatedAt: z.ZodString;
29901
- description: z.ZodNullable<z.ZodString>;
29901
+ enabled: z.ZodBoolean;
29902
29902
  createdBy: z.ZodNullable<z.ZodString>;
29903
29903
  messageTemplate: z.ZodNullable<z.ZodString>;
29904
29904
  runAsUserId: z.ZodNullable<z.ZodString>;
@@ -29911,8 +29911,8 @@ declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
29911
29911
  timeoutSeconds: z.ZodNumber;
29912
29912
  lastRunAt: z.ZodNullable<z.ZodISODateTime>;
29913
29913
  lastRunStatus: z.ZodNullable<z.ZodEnum<{
29914
- failed: "failed";
29915
29914
  completed: "completed";
29915
+ failed: "failed";
29916
29916
  }>>;
29917
29917
  lastRunConversationIds: z.ZodArray<z.ZodString>;
29918
29918
  nextRunAt: z.ZodNullable<z.ZodISODateTime>;
@@ -29950,9 +29950,9 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
29950
29950
  resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
29951
29951
  status: z.ZodEnum<{
29952
29952
  pending: "pending";
29953
- failed: "failed";
29954
29953
  running: "running";
29955
29954
  completed: "completed";
29955
+ failed: "failed";
29956
29956
  cancelled: "cancelled";
29957
29957
  }>;
29958
29958
  }>, z.core.$strip>;
@@ -29983,9 +29983,9 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
29983
29983
  resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
29984
29984
  status: z.ZodEnum<{
29985
29985
  pending: "pending";
29986
- failed: "failed";
29987
29986
  running: "running";
29988
29987
  completed: "completed";
29988
+ failed: "failed";
29989
29989
  cancelled: "cancelled";
29990
29990
  }>;
29991
29991
  }>, z.core.$strip>>;
@@ -30070,12 +30070,12 @@ declare const SubAgentSkillResponse: z.ZodObject<{
30070
30070
  }, z.core.$strip>;
30071
30071
  declare const SubAgentSkillWithIndexArrayResponse: z.ZodObject<{
30072
30072
  data: z.ZodArray<z.ZodObject<{
30073
- metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
30074
- name: z.ZodString;
30075
30073
  id: z.ZodString;
30074
+ name: z.ZodString;
30075
+ description: z.ZodString;
30076
30076
  createdAt: z.ZodString;
30077
30077
  updatedAt: z.ZodString;
30078
- description: z.ZodString;
30078
+ metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
30079
30079
  content: z.ZodString;
30080
30080
  subAgentSkillId: z.ZodString;
30081
30081
  subAgentId: z.ZodString;
@@ -30085,8 +30085,8 @@ declare const SubAgentSkillWithIndexArrayResponse: z.ZodObject<{
30085
30085
  }, z.core.$strip>;
30086
30086
  declare const FullProjectDefinitionResponse: z.ZodObject<{
30087
30087
  data: z.ZodObject<{
30088
- name: z.ZodString;
30089
30088
  id: z.ZodString;
30089
+ name: z.ZodString;
30090
30090
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30091
30091
  models: z.ZodObject<{
30092
30092
  base: z.ZodObject<{
@@ -30107,17 +30107,16 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
30107
30107
  stepCountIs: z.ZodOptional<z.ZodNumber>;
30108
30108
  }, z.core.$strip>>;
30109
30109
  agents: z.ZodRecord<z.ZodString, z.ZodObject<{
30110
- name: z.ZodString;
30111
30110
  id: z.ZodString;
30111
+ name: z.ZodString;
30112
30112
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30113
30113
  defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30114
30114
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30115
30115
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
30116
- name: z.ZodString;
30117
30116
  id: z.ZodString;
30118
- createdAt: z.ZodOptional<z.ZodString>;
30119
- updatedAt: z.ZodOptional<z.ZodString>;
30117
+ name: z.ZodString;
30120
30118
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30119
+ conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
30121
30120
  models: z.ZodOptional<z.ZodObject<{
30122
30121
  base: z.ZodOptional<z.ZodObject<{
30123
30122
  model: z.ZodOptional<z.ZodString>;
@@ -30132,7 +30131,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
30132
30131
  providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
30133
30132
  }, z.core.$strip>>;
30134
30133
  }, z.core.$strip>>;
30135
- conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
30134
+ createdAt: z.ZodOptional<z.ZodString>;
30135
+ updatedAt: z.ZodOptional<z.ZodString>;
30136
30136
  type: z.ZodLiteral<"internal">;
30137
30137
  canUse: z.ZodArray<z.ZodObject<{
30138
30138
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -30166,12 +30166,12 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
30166
30166
  }, z.core.$strip>>;
30167
30167
  }, z.core.$strip>>;
30168
30168
  tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
30169
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
30170
- name: z.ZodString;
30171
30169
  id: z.ZodString;
30170
+ name: z.ZodString;
30171
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30172
30172
  tenantId: z.ZodString;
30173
30173
  projectId: z.ZodString;
30174
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30174
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
30175
30175
  config: z.ZodObject<{
30176
30176
  type: z.ZodLiteral<"mcp">;
30177
30177
  mcp: z.ZodObject<{
@@ -30206,11 +30206,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
30206
30206
  isWorkApp: z.ZodOptional<z.ZodBoolean>;
30207
30207
  }>, z.core.$strip>>>;
30208
30208
  externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
30209
- name: z.ZodString;
30210
30209
  id: z.ZodString;
30210
+ name: z.ZodString;
30211
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30211
30212
  tenantId: z.ZodString;
30212
30213
  projectId: z.ZodString;
30213
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30214
30214
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30215
30215
  baseUrl: z.ZodURL;
30216
30216
  }>, z.core.$strip>>>;
@@ -30220,12 +30220,12 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
30220
30220
  description: z.ZodString;
30221
30221
  }, z.core.$strip>>>;
30222
30222
  functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitAgentScope<{
30223
- name: z.ZodString;
30224
30223
  id: z.ZodString;
30224
+ name: z.ZodString;
30225
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30225
30226
  tenantId: z.ZodString;
30226
30227
  projectId: z.ZodString;
30227
30228
  agentId: z.ZodString;
30228
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30229
30229
  functionId: z.ZodString;
30230
30230
  }>, z.core.$strip>>>;
30231
30231
  functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -30235,12 +30235,12 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
30235
30235
  dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
30236
30236
  }, z.core.$strip>>>;
30237
30237
  triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
30238
- enabled: z.ZodOptional<z.ZodBoolean>;
30239
- name: z.ZodString;
30240
30238
  id: z.ZodOptional<z.ZodString>;
30239
+ name: z.ZodString;
30241
30240
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30242
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30241
+ enabled: z.ZodOptional<z.ZodBoolean>;
30243
30242
  inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
30243
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30244
30244
  outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
30245
30245
  messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30246
30246
  authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
@@ -30249,9 +30249,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
30249
30249
  runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30250
30250
  }, z.core.$strip>>>;
30251
30251
  scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
30252
- enabled: z.ZodOptional<z.ZodBoolean>;
30253
30252
  name: z.ZodString;
30254
30253
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30254
+ enabled: z.ZodOptional<z.ZodBoolean>;
30255
30255
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30256
30256
  messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30257
30257
  runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -30304,12 +30304,12 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
30304
30304
  prompt: z.ZodOptional<z.ZodString>;
30305
30305
  }, z.core.$strip>>;
30306
30306
  tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
30307
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
30308
- name: z.ZodString;
30309
30307
  id: z.ZodString;
30308
+ name: z.ZodString;
30309
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30310
30310
  tenantId: z.ZodString;
30311
30311
  projectId: z.ZodString;
30312
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30312
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
30313
30313
  config: z.ZodObject<{
30314
30314
  type: z.ZodLiteral<"mcp">;
30315
30315
  mcp: z.ZodObject<{
@@ -30344,12 +30344,12 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
30344
30344
  isWorkApp: z.ZodOptional<z.ZodBoolean>;
30345
30345
  }>, z.core.$strip>>;
30346
30346
  functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitAgentScope<{
30347
- name: z.ZodString;
30348
30347
  id: z.ZodString;
30348
+ name: z.ZodString;
30349
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30349
30350
  tenantId: z.ZodString;
30350
30351
  projectId: z.ZodString;
30351
30352
  agentId: z.ZodString;
30352
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30353
30353
  functionId: z.ZodString;
30354
30354
  }>, z.core.$strip>>>;
30355
30355
  functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -30359,11 +30359,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
30359
30359
  dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
30360
30360
  }, z.core.$strip>>>;
30361
30361
  skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
30362
- metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
30363
30362
  name: z.ZodString;
30363
+ description: z.ZodString;
30364
30364
  tenantId: z.ZodString;
30365
30365
  projectId: z.ZodString;
30366
- description: z.ZodString;
30366
+ metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
30367
30367
  content: z.ZodString;
30368
30368
  }>, z.core.$strip>>>;
30369
30369
  dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -30420,11 +30420,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
30420
30420
  in: {};
30421
30421
  }>>>;
30422
30422
  externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
30423
- name: z.ZodString;
30424
30423
  id: z.ZodString;
30424
+ name: z.ZodString;
30425
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30425
30426
  tenantId: z.ZodString;
30426
30427
  projectId: z.ZodString;
30427
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30428
30428
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30429
30429
  baseUrl: z.ZodURL;
30430
30430
  }>, z.core.$strip>>>;
@@ -30444,10 +30444,10 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
30444
30444
  }, z.core.$strip>>>;
30445
30445
  }, z.core.$strip>>;
30446
30446
  credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
30447
- name: z.ZodString;
30448
- userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30449
30447
  id: z.ZodString;
30448
+ name: z.ZodString;
30450
30449
  toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30450
+ userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30451
30451
  credentialStoreId: z.ZodString;
30452
30452
  retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
30453
30453
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -30467,10 +30467,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
30467
30467
  }, z.core.$strip>;
30468
30468
  declare const FullProjectSelectResponse: z.ZodObject<{
30469
30469
  data: z.ZodObject<{
30470
- name: z.ZodString;
30471
30470
  id: z.ZodString;
30472
- createdAt: z.ZodString;
30473
- updatedAt: z.ZodString;
30471
+ name: z.ZodString;
30474
30472
  description: z.ZodNullable<z.ZodString>;
30475
30473
  models: z.ZodNullable<z.ZodObject<{
30476
30474
  base: z.ZodObject<{
@@ -30490,20 +30488,21 @@ declare const FullProjectSelectResponse: z.ZodObject<{
30490
30488
  transferCountIs: z.ZodOptional<z.ZodNumber>;
30491
30489
  stepCountIs: z.ZodOptional<z.ZodNumber>;
30492
30490
  }, z.core.$strip>>;
30491
+ createdAt: z.ZodString;
30492
+ updatedAt: z.ZodString;
30493
30493
  agents: z.ZodRecord<z.ZodString, z.ZodObject<{
30494
- name: z.ZodString;
30495
30494
  id: z.ZodString;
30496
- createdAt: z.ZodString;
30497
- updatedAt: z.ZodString;
30495
+ name: z.ZodString;
30498
30496
  description: z.ZodNullable<z.ZodString>;
30499
30497
  defaultSubAgentId: z.ZodNullable<z.ZodString>;
30498
+ createdAt: z.ZodString;
30499
+ updatedAt: z.ZodString;
30500
30500
  contextConfigId: z.ZodNullable<z.ZodString>;
30501
30501
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
30502
- name: z.ZodString;
30503
30502
  id: z.ZodString;
30504
- createdAt: z.ZodString;
30505
- updatedAt: z.ZodString;
30503
+ name: z.ZodString;
30506
30504
  description: z.ZodNullable<z.ZodString>;
30505
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
30507
30506
  models: z.ZodNullable<z.ZodType<{
30508
30507
  base?: {
30509
30508
  model?: string | undefined;
@@ -30566,7 +30565,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
30566
30565
  }, {
30567
30566
  stepCountIs?: number | undefined;
30568
30567
  }>>>;
30569
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
30568
+ createdAt: z.ZodString;
30569
+ updatedAt: z.ZodString;
30570
30570
  type: z.ZodLiteral<"internal">;
30571
30571
  canUse: z.ZodArray<z.ZodObject<{
30572
30572
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -30637,12 +30637,12 @@ declare const FullProjectSelectResponse: z.ZodObject<{
30637
30637
  description: z.ZodString;
30638
30638
  }, z.core.$strip>>>;
30639
30639
  functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
30640
- name: z.ZodString;
30641
30640
  id: z.ZodString;
30641
+ name: z.ZodString;
30642
+ description: z.ZodNullable<z.ZodString>;
30643
+ agentId: z.ZodString;
30642
30644
  createdAt: z.ZodString;
30643
30645
  updatedAt: z.ZodString;
30644
- agentId: z.ZodString;
30645
- description: z.ZodNullable<z.ZodString>;
30646
30646
  functionId: z.ZodString;
30647
30647
  relationshipId: z.ZodOptional<z.ZodString>;
30648
30648
  }, z.core.$strip>>>;
@@ -30748,12 +30748,12 @@ declare const FullProjectSelectResponse: z.ZodObject<{
30748
30748
  id: z.ZodString;
30749
30749
  }>, z.core.$strip>>;
30750
30750
  functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
30751
- name: z.ZodString;
30752
30751
  id: z.ZodString;
30752
+ name: z.ZodString;
30753
+ description: z.ZodNullable<z.ZodString>;
30754
+ agentId: z.ZodString;
30753
30755
  createdAt: z.ZodString;
30754
30756
  updatedAt: z.ZodString;
30755
- agentId: z.ZodString;
30756
- description: z.ZodNullable<z.ZodString>;
30757
30757
  functionId: z.ZodString;
30758
30758
  relationshipId: z.ZodOptional<z.ZodString>;
30759
30759
  }, z.core.$strip>>>;
@@ -30896,12 +30896,12 @@ declare const FullProjectSelectResponse: z.ZodObject<{
30896
30896
  }, z.core.$strip>>>;
30897
30897
  }, z.core.$strip>>;
30898
30898
  credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
30899
- name: z.ZodString;
30900
- userId: z.ZodNullable<z.ZodString>;
30901
30899
  id: z.ZodString;
30900
+ name: z.ZodString;
30902
30901
  createdAt: z.ZodString;
30903
30902
  updatedAt: z.ZodString;
30904
30903
  toolId: z.ZodNullable<z.ZodString>;
30904
+ userId: z.ZodNullable<z.ZodString>;
30905
30905
  credentialStoreId: z.ZodString;
30906
30906
  retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
30907
30907
  createdBy: z.ZodNullable<z.ZodString>;
@@ -31494,10 +31494,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
31494
31494
  }, z.core.$strip>;
31495
31495
  declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
31496
31496
  data: z.ZodObject<{
31497
- name: z.ZodString;
31498
31497
  id: z.ZodString;
31499
- createdAt: z.ZodString;
31500
- updatedAt: z.ZodString;
31498
+ name: z.ZodString;
31501
31499
  description: z.ZodNullable<z.ZodString>;
31502
31500
  models: z.ZodNullable<z.ZodObject<{
31503
31501
  base: z.ZodObject<{
@@ -31517,6 +31515,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
31517
31515
  transferCountIs: z.ZodOptional<z.ZodNumber>;
31518
31516
  stepCountIs: z.ZodOptional<z.ZodNumber>;
31519
31517
  }, z.core.$strip>>;
31518
+ createdAt: z.ZodString;
31519
+ updatedAt: z.ZodString;
31520
31520
  tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
31521
31521
  createdAt: z.ZodString;
31522
31522
  updatedAt: z.ZodString;
@@ -31547,12 +31547,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
31547
31547
  id: z.ZodString;
31548
31548
  }>, z.core.$strip>>;
31549
31549
  functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
31550
- name: z.ZodString;
31551
31550
  id: z.ZodString;
31551
+ name: z.ZodString;
31552
+ description: z.ZodNullable<z.ZodString>;
31553
+ agentId: z.ZodString;
31552
31554
  createdAt: z.ZodString;
31553
31555
  updatedAt: z.ZodString;
31554
- agentId: z.ZodString;
31555
- description: z.ZodNullable<z.ZodString>;
31556
31556
  functionId: z.ZodString;
31557
31557
  relationshipId: z.ZodOptional<z.ZodString>;
31558
31558
  }, z.core.$strip>>>;
@@ -31695,12 +31695,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
31695
31695
  }, z.core.$strip>>>;
31696
31696
  }, z.core.$strip>>;
31697
31697
  credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
31698
- name: z.ZodString;
31699
- userId: z.ZodNullable<z.ZodString>;
31700
31698
  id: z.ZodString;
31699
+ name: z.ZodString;
31701
31700
  createdAt: z.ZodString;
31702
31701
  updatedAt: z.ZodString;
31703
31702
  toolId: z.ZodNullable<z.ZodString>;
31703
+ userId: z.ZodNullable<z.ZodString>;
31704
31704
  credentialStoreId: z.ZodString;
31705
31705
  retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
31706
31706
  createdBy: z.ZodNullable<z.ZodString>;
@@ -32287,12 +32287,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
32287
32287
  }>>>;
32288
32288
  }, z.core.$strip>>>;
32289
32289
  agents: z.ZodRecord<z.ZodString, z.ZodObject<{
32290
- name: z.ZodString;
32291
32290
  id: z.ZodString;
32292
- createdAt: z.ZodString;
32293
- updatedAt: z.ZodString;
32291
+ name: z.ZodString;
32294
32292
  description: z.ZodNullable<z.ZodString>;
32295
32293
  defaultSubAgentId: z.ZodNullable<z.ZodString>;
32294
+ createdAt: z.ZodString;
32295
+ updatedAt: z.ZodString;
32296
32296
  contextConfigId: z.ZodNullable<z.ZodString>;
32297
32297
  tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
32298
32298
  createdAt: z.ZodString;
@@ -32340,12 +32340,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
32340
32340
  description: z.ZodString;
32341
32341
  }, z.core.$strip>>>;
32342
32342
  functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
32343
- name: z.ZodString;
32344
32343
  id: z.ZodString;
32344
+ name: z.ZodString;
32345
+ description: z.ZodNullable<z.ZodString>;
32346
+ agentId: z.ZodString;
32345
32347
  createdAt: z.ZodString;
32346
32348
  updatedAt: z.ZodString;
32347
- agentId: z.ZodString;
32348
- description: z.ZodNullable<z.ZodString>;
32349
32349
  functionId: z.ZodString;
32350
32350
  relationshipId: z.ZodOptional<z.ZodString>;
32351
32351
  }, z.core.$strip>>>;
@@ -32421,11 +32421,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
32421
32421
  }, z.core.$strip>>;
32422
32422
  prompt: z.ZodNullable<z.ZodString>;
32423
32423
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
32424
- name: z.ZodString;
32425
32424
  id: z.ZodString;
32426
- createdAt: z.ZodString;
32427
- updatedAt: z.ZodString;
32425
+ name: z.ZodString;
32428
32426
  description: z.ZodNullable<z.ZodString>;
32427
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
32429
32428
  models: z.ZodNullable<z.ZodType<{
32430
32429
  base?: {
32431
32430
  model?: string | undefined;
@@ -32488,7 +32487,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
32488
32487
  }, {
32489
32488
  stepCountIs?: number | undefined;
32490
32489
  }>>>;
32491
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
32490
+ createdAt: z.ZodString;
32491
+ updatedAt: z.ZodString;
32492
32492
  type: z.ZodLiteral<"internal">;
32493
32493
  canUse: z.ZodArray<z.ZodObject<{
32494
32494
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -32527,17 +32527,16 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
32527
32527
  }, z.core.$strip>;
32528
32528
  declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
32529
32529
  data: z.ZodObject<{
32530
- name: z.ZodString;
32531
32530
  id: z.ZodString;
32531
+ name: z.ZodString;
32532
32532
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32533
32533
  defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32534
32534
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32535
32535
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
32536
- name: z.ZodString;
32537
32536
  id: z.ZodString;
32538
- createdAt: z.ZodOptional<z.ZodString>;
32539
- updatedAt: z.ZodOptional<z.ZodString>;
32537
+ name: z.ZodString;
32540
32538
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32539
+ conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
32541
32540
  models: z.ZodOptional<z.ZodObject<{
32542
32541
  base: z.ZodOptional<z.ZodObject<{
32543
32542
  model: z.ZodOptional<z.ZodString>;
@@ -32552,7 +32551,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
32552
32551
  providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
32553
32552
  }, z.core.$strip>>;
32554
32553
  }, z.core.$strip>>;
32555
- conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
32554
+ createdAt: z.ZodOptional<z.ZodString>;
32555
+ updatedAt: z.ZodOptional<z.ZodString>;
32556
32556
  type: z.ZodLiteral<"internal">;
32557
32557
  canUse: z.ZodArray<z.ZodObject<{
32558
32558
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -32586,12 +32586,12 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
32586
32586
  }, z.core.$strip>>;
32587
32587
  }, z.core.$strip>>;
32588
32588
  tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
32589
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
32590
- name: z.ZodString;
32591
32589
  id: z.ZodString;
32590
+ name: z.ZodString;
32591
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32592
32592
  tenantId: z.ZodString;
32593
32593
  projectId: z.ZodString;
32594
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32594
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
32595
32595
  config: z.ZodObject<{
32596
32596
  type: z.ZodLiteral<"mcp">;
32597
32597
  mcp: z.ZodObject<{
@@ -32626,11 +32626,11 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
32626
32626
  isWorkApp: z.ZodOptional<z.ZodBoolean>;
32627
32627
  }>, z.core.$strip>>>;
32628
32628
  externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
32629
- name: z.ZodString;
32630
32629
  id: z.ZodString;
32630
+ name: z.ZodString;
32631
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32631
32632
  tenantId: z.ZodString;
32632
32633
  projectId: z.ZodString;
32633
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32634
32634
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32635
32635
  baseUrl: z.ZodURL;
32636
32636
  }>, z.core.$strip>>>;
@@ -32640,12 +32640,12 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
32640
32640
  description: z.ZodString;
32641
32641
  }, z.core.$strip>>>;
32642
32642
  functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitAgentScope<{
32643
- name: z.ZodString;
32644
32643
  id: z.ZodString;
32644
+ name: z.ZodString;
32645
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32645
32646
  tenantId: z.ZodString;
32646
32647
  projectId: z.ZodString;
32647
32648
  agentId: z.ZodString;
32648
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32649
32649
  functionId: z.ZodString;
32650
32650
  }>, z.core.$strip>>>;
32651
32651
  functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -32655,12 +32655,12 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
32655
32655
  dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
32656
32656
  }, z.core.$strip>>>;
32657
32657
  triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
32658
- enabled: z.ZodOptional<z.ZodBoolean>;
32659
- name: z.ZodString;
32660
32658
  id: z.ZodOptional<z.ZodString>;
32659
+ name: z.ZodString;
32661
32660
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32662
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32661
+ enabled: z.ZodOptional<z.ZodBoolean>;
32663
32662
  inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
32663
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32664
32664
  outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
32665
32665
  messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32666
32666
  authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
@@ -32669,9 +32669,9 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
32669
32669
  runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32670
32670
  }, z.core.$strip>>>;
32671
32671
  scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
32672
- enabled: z.ZodOptional<z.ZodBoolean>;
32673
32672
  name: z.ZodString;
32674
32673
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32674
+ enabled: z.ZodOptional<z.ZodBoolean>;
32675
32675
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32676
32676
  messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32677
32677
  runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -32726,19 +32726,18 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
32726
32726
  }, z.core.$strip>;
32727
32727
  declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
32728
32728
  data: z.ZodObject<{
32729
- name: z.ZodString;
32730
32729
  id: z.ZodString;
32731
- createdAt: z.ZodString;
32732
- updatedAt: z.ZodString;
32730
+ name: z.ZodString;
32733
32731
  description: z.ZodNullable<z.ZodString>;
32734
32732
  defaultSubAgentId: z.ZodNullable<z.ZodString>;
32733
+ createdAt: z.ZodString;
32734
+ updatedAt: z.ZodString;
32735
32735
  contextConfigId: z.ZodNullable<z.ZodString>;
32736
32736
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
32737
- name: z.ZodString;
32738
32737
  id: z.ZodString;
32739
- createdAt: z.ZodString;
32740
- updatedAt: z.ZodString;
32738
+ name: z.ZodString;
32741
32739
  description: z.ZodNullable<z.ZodString>;
32740
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
32742
32741
  models: z.ZodNullable<z.ZodType<{
32743
32742
  base?: {
32744
32743
  model?: string | undefined;
@@ -32801,7 +32800,8 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
32801
32800
  }, {
32802
32801
  stepCountIs?: number | undefined;
32803
32802
  }>>>;
32804
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
32803
+ createdAt: z.ZodString;
32804
+ updatedAt: z.ZodString;
32805
32805
  type: z.ZodLiteral<"internal">;
32806
32806
  canUse: z.ZodArray<z.ZodObject<{
32807
32807
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -32872,12 +32872,12 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
32872
32872
  description: z.ZodString;
32873
32873
  }, z.core.$strip>>>;
32874
32874
  functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
32875
- name: z.ZodString;
32876
32875
  id: z.ZodString;
32876
+ name: z.ZodString;
32877
+ description: z.ZodNullable<z.ZodString>;
32878
+ agentId: z.ZodString;
32877
32879
  createdAt: z.ZodString;
32878
32880
  updatedAt: z.ZodString;
32879
- agentId: z.ZodString;
32880
- description: z.ZodNullable<z.ZodString>;
32881
32881
  functionId: z.ZodString;
32882
32882
  relationshipId: z.ZodOptional<z.ZodString>;
32883
32883
  }, z.core.$strip>>>;
@@ -32975,12 +32975,12 @@ declare const ComponentAssociationListResponse: z.ZodObject<{
32975
32975
  }, z.core.$strip>;
32976
32976
  declare const McpToolResponse: z.ZodObject<{
32977
32977
  data: z.ZodObject<{
32978
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
32979
- name: z.ZodString;
32980
32978
  id: z.ZodString;
32979
+ name: z.ZodString;
32980
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32981
32981
  tenantId: z.ZodString;
32982
32982
  projectId: z.ZodString;
32983
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32983
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
32984
32984
  config: z.ZodObject<{
32985
32985
  type: z.ZodLiteral<"mcp">;
32986
32986
  mcp: z.ZodObject<{
@@ -33036,12 +33036,12 @@ declare const McpToolResponse: z.ZodObject<{
33036
33036
  }, z.core.$strip>;
33037
33037
  declare const McpToolListResponse: z.ZodObject<{
33038
33038
  data: z.ZodArray<z.ZodObject<{
33039
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
33040
- name: z.ZodString;
33041
33039
  id: z.ZodString;
33040
+ name: z.ZodString;
33041
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33042
33042
  tenantId: z.ZodString;
33043
33043
  projectId: z.ZodString;
33044
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33044
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
33045
33045
  config: z.ZodObject<{
33046
33046
  type: z.ZodLiteral<"mcp">;
33047
33047
  mcp: z.ZodObject<{
@@ -33597,8 +33597,8 @@ declare const WorkAppGitHubInstallationStatusSchema: z.ZodEnum<{
33597
33597
  disconnected: "disconnected";
33598
33598
  }>;
33599
33599
  declare const WorkAppGitHubAccountTypeSchema: z.ZodEnum<{
33600
- Organization: "Organization";
33601
33600
  User: "User";
33601
+ Organization: "Organization";
33602
33602
  }>;
33603
33603
  declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"select", {
33604
33604
  createdAt: drizzle_orm_pg_core873.PgColumn<{
@@ -33693,7 +33693,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
33693
33693
  tableName: "work_app_github_installations";
33694
33694
  dataType: "string";
33695
33695
  columnType: "PgVarchar";
33696
- data: "Organization" | "User";
33696
+ data: "User" | "Organization";
33697
33697
  driverParam: string;
33698
33698
  notNull: true;
33699
33699
  hasDefault: false;
@@ -33706,7 +33706,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
33706
33706
  generated: undefined;
33707
33707
  }, {}, {
33708
33708
  length: 20;
33709
- $type: "Organization" | "User";
33709
+ $type: "User" | "Organization";
33710
33710
  }>;
33711
33711
  status: drizzle_orm_pg_core873.PgColumn<{
33712
33712
  name: "status";
@@ -33859,7 +33859,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
33859
33859
  tableName: "work_app_github_installations";
33860
33860
  dataType: "string";
33861
33861
  columnType: "PgVarchar";
33862
- data: "Organization" | "User";
33862
+ data: "User" | "Organization";
33863
33863
  driverParam: string;
33864
33864
  notNull: true;
33865
33865
  hasDefault: false;
@@ -33872,7 +33872,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
33872
33872
  generated: undefined;
33873
33873
  }, {}, {
33874
33874
  length: 20;
33875
- $type: "Organization" | "User";
33875
+ $type: "User" | "Organization";
33876
33876
  }>;
33877
33877
  status: drizzle_orm_pg_core873.PgColumn<{
33878
33878
  name: "status";
@@ -33935,13 +33935,13 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
33935
33935
  }, undefined>, undefined>;
33936
33936
  declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
33937
33937
  id: z.ZodString;
33938
- accountId: z.ZodString;
33939
33938
  tenantId: z.ZodString;
33939
+ accountId: z.ZodString;
33940
33940
  installationId: z.ZodString;
33941
33941
  accountLogin: z.ZodString;
33942
33942
  accountType: z.ZodEnum<{
33943
- Organization: "Organization";
33944
33943
  User: "User";
33944
+ Organization: "Organization";
33945
33945
  }>;
33946
33946
  status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
33947
33947
  pending: "pending";
@@ -33966,13 +33966,13 @@ declare const WorkAppGithubInstallationApiSelectSchema: z.ZodObject<OmitTenantSc
33966
33966
  }>, z.core.$strip>;
33967
33967
  declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<OmitGeneratedFields<{
33968
33968
  id: z.ZodString;
33969
- accountId: z.ZodString;
33970
33969
  tenantId: z.ZodString;
33970
+ accountId: z.ZodString;
33971
33971
  installationId: z.ZodString;
33972
33972
  accountLogin: z.ZodString;
33973
33973
  accountType: z.ZodEnum<{
33974
- Organization: "Organization";
33975
33974
  User: "User";
33975
+ Organization: "Organization";
33976
33976
  }>;
33977
33977
  status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
33978
33978
  pending: "pending";
@@ -36415,8 +36415,8 @@ declare const UserProfileSelectSchema: drizzle_zod19.BuildSchema<"select", {
36415
36415
  }>;
36416
36416
  }, undefined>, undefined>;
36417
36417
  declare const UserProfileInsertSchema: z.ZodObject<{
36418
- userId: z.ZodString;
36419
36418
  id: z.ZodString;
36419
+ userId: z.ZodString;
36420
36420
  attributes: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
36421
36421
  timezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
36422
36422
  }, {
@@ -36424,8 +36424,8 @@ declare const UserProfileInsertSchema: z.ZodObject<{
36424
36424
  in: {};
36425
36425
  }>;
36426
36426
  declare const UserProfileUpdateSchema: z.ZodObject<{
36427
- userId: z.ZodOptional<z.ZodString>;
36428
36427
  id: z.ZodOptional<z.ZodString>;
36428
+ userId: z.ZodOptional<z.ZodString>;
36429
36429
  attributes: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>;
36430
36430
  timezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
36431
36431
  }, {
@@ -36433,8 +36433,8 @@ declare const UserProfileUpdateSchema: z.ZodObject<{
36433
36433
  in: {};
36434
36434
  }>;
36435
36435
  declare const UserProfileApiInsertSchema: z.ZodObject<OmitGeneratedFields<{
36436
- userId: z.ZodString;
36437
36436
  id: z.ZodString;
36437
+ userId: z.ZodString;
36438
36438
  attributes: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
36439
36439
  timezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
36440
36440
  }>, z.core.$strip>;