@inkeep/agents-core 0.53.9 → 0.53.10

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 (31) hide show
  1. package/dist/auth/auth-validation-schemas.d.ts +135 -135
  2. package/dist/auth/auth.d.ts +28 -28
  3. package/dist/auth/permissions.d.ts +13 -13
  4. package/dist/client-exports.d.ts +1 -1
  5. package/dist/constants/otel-attributes.d.ts +7 -0
  6. package/dist/constants/otel-attributes.js +10 -3
  7. package/dist/constants/signoz-queries.d.ts +1 -0
  8. package/dist/constants/signoz-queries.js +2 -1
  9. package/dist/data-access/manage/agents.d.ts +21 -21
  10. package/dist/data-access/manage/artifactComponents.d.ts +6 -6
  11. package/dist/data-access/manage/contextConfigs.d.ts +12 -12
  12. package/dist/data-access/manage/dataComponents.d.ts +2 -2
  13. package/dist/data-access/manage/functionTools.d.ts +10 -10
  14. package/dist/data-access/manage/skills.d.ts +12 -12
  15. package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +18 -18
  16. package/dist/data-access/manage/subAgentRelations.d.ts +20 -20
  17. package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
  18. package/dist/data-access/manage/subAgents.d.ts +15 -15
  19. package/dist/data-access/manage/tools.d.ts +24 -24
  20. package/dist/data-access/manage/triggers.d.ts +2 -2
  21. package/dist/data-access/runtime/apiKeys.d.ts +8 -8
  22. package/dist/data-access/runtime/conversations.d.ts +23 -23
  23. package/dist/data-access/runtime/messages.d.ts +12 -12
  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 +298 -298
  27. package/dist/utils/error.d.ts +51 -51
  28. package/dist/validation/dolt-schemas.d.ts +1 -1
  29. package/dist/validation/schemas.d.ts +208 -208
  30. package/dist/validation/schemas.js +1 -2
  31. package/package.json +1 -1
@@ -822,6 +822,8 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
822
822
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
823
823
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
824
824
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
825
+ prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
826
+ conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
825
827
  models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
826
828
  base: z.ZodOptional<z.ZodObject<{
827
829
  model: z.ZodOptional<z.ZodString>;
@@ -847,8 +849,6 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
847
849
  }>>>>>>;
848
850
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
849
851
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
850
- prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
851
- conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
852
852
  }, z.core.$strip>;
853
853
  declare const SubAgentRelationSelectSchema: drizzle_zod3.BuildSchema<"select", {
854
854
  createdAt: drizzle_orm_pg_core83.PgColumn<{
@@ -2482,7 +2482,7 @@ declare const AgentInsertSchema: drizzle_zod3.BuildSchema<"insert", {
2482
2482
  }, {}, {
2483
2483
  length: 256;
2484
2484
  }>;
2485
- }, "id" | "name" | "description" | "models" | "stopWhen" | "createdAt" | "updatedAt" | "tenantId" | "defaultSubAgentId" | "contextConfigId" | "prompt" | "statusUpdates" | "projectId">, undefined>, undefined>;
2485
+ }, "id" | "name" | "description" | "defaultSubAgentId" | "tenantId" | "projectId" | "prompt" | "models" | "stopWhen" | "createdAt" | "updatedAt" | "contextConfigId" | "statusUpdates">, undefined>, undefined>;
2486
2486
  declare const AgentUpdateSchema: z.ZodObject<{
2487
2487
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2488
2488
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -2751,6 +2751,8 @@ declare const AgentApiSelectSchema: z.ZodObject<OmitProjectScope<{
2751
2751
  declare const AgentApiInsertSchema: z.ZodObject<{
2752
2752
  name: z.ZodString;
2753
2753
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2754
+ defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2755
+ prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2754
2756
  models: z.ZodOptional<z.ZodNullable<z.ZodType<{
2755
2757
  base?: {
2756
2758
  model?: string | undefined;
@@ -2815,9 +2817,7 @@ declare const AgentApiInsertSchema: z.ZodObject<{
2815
2817
  }>>>>;
2816
2818
  createdAt: z.ZodOptional<z.ZodString>;
2817
2819
  updatedAt: z.ZodOptional<z.ZodString>;
2818
- defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2819
2820
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2820
- prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2821
2821
  statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
2822
2822
  enabled?: boolean | undefined;
2823
2823
  numEvents?: number | undefined;
@@ -2881,6 +2881,8 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
2881
2881
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2882
2882
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2883
2883
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2884
+ defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2885
+ prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2884
2886
  models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
2885
2887
  base?: {
2886
2888
  model?: string | undefined;
@@ -2945,9 +2947,7 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
2945
2947
  }>>>>>>;
2946
2948
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
2947
2949
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
2948
- defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2949
2950
  contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2950
- prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2951
2951
  statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
2952
2952
  enabled?: boolean | undefined;
2953
2953
  numEvents?: number | undefined;
@@ -3070,9 +3070,9 @@ declare const TriggerOutputTransformSchema: z.ZodObject<{
3070
3070
  */
3071
3071
  declare const SignatureSourceSchema: z.ZodObject<{
3072
3072
  source: z.ZodEnum<{
3073
- header: "header";
3074
3073
  query: "query";
3075
3074
  body: "body";
3075
+ header: "header";
3076
3076
  }>;
3077
3077
  key: z.ZodString;
3078
3078
  prefix: z.ZodOptional<z.ZodString>;
@@ -3101,8 +3101,8 @@ declare const SignatureSourceSchema: z.ZodObject<{
3101
3101
  declare const SignedComponentSchema: z.ZodObject<{
3102
3102
  source: z.ZodEnum<{
3103
3103
  literal: "literal";
3104
- header: "header";
3105
3104
  body: "body";
3105
+ header: "header";
3106
3106
  }>;
3107
3107
  key: z.ZodOptional<z.ZodString>;
3108
3108
  value: z.ZodOptional<z.ZodString>;
@@ -3210,9 +3210,9 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
3210
3210
  }>;
3211
3211
  signature: z.ZodObject<{
3212
3212
  source: z.ZodEnum<{
3213
- header: "header";
3214
3213
  query: "query";
3215
3214
  body: "body";
3215
+ header: "header";
3216
3216
  }>;
3217
3217
  key: z.ZodString;
3218
3218
  prefix: z.ZodOptional<z.ZodString>;
@@ -3221,8 +3221,8 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
3221
3221
  signedComponents: z.ZodArray<z.ZodObject<{
3222
3222
  source: z.ZodEnum<{
3223
3223
  literal: "literal";
3224
- header: "header";
3225
3224
  body: "body";
3225
+ header: "header";
3226
3226
  }>;
3227
3227
  key: z.ZodOptional<z.ZodString>;
3228
3228
  value: z.ZodOptional<z.ZodString>;
@@ -3306,9 +3306,9 @@ declare const TriggerSelectSchema: z.ZodObject<{
3306
3306
  }>;
3307
3307
  signature: z.ZodObject<{
3308
3308
  source: z.ZodEnum<{
3309
- header: "header";
3310
3309
  query: "query";
3311
3310
  body: "body";
3311
+ header: "header";
3312
3312
  }>;
3313
3313
  key: z.ZodString;
3314
3314
  prefix: z.ZodOptional<z.ZodString>;
@@ -3317,8 +3317,8 @@ declare const TriggerSelectSchema: z.ZodObject<{
3317
3317
  signedComponents: z.ZodArray<z.ZodObject<{
3318
3318
  source: z.ZodEnum<{
3319
3319
  literal: "literal";
3320
- header: "header";
3321
3320
  body: "body";
3321
+ header: "header";
3322
3322
  }>;
3323
3323
  key: z.ZodOptional<z.ZodString>;
3324
3324
  value: z.ZodOptional<z.ZodString>;
@@ -3501,13 +3501,13 @@ declare const TriggerInsertSchema: drizzle_zod3.BuildSchema<"insert", {
3501
3501
  algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
3502
3502
  encoding: "hex" | "base64";
3503
3503
  signature: {
3504
- source: "header" | "query" | "body";
3504
+ source: "query" | "body" | "header";
3505
3505
  key: string;
3506
3506
  prefix?: string | undefined;
3507
3507
  regex?: string | undefined;
3508
3508
  };
3509
3509
  signedComponents: {
3510
- source: "literal" | "header" | "body";
3510
+ source: "literal" | "body" | "header";
3511
3511
  required: boolean;
3512
3512
  key?: string | undefined;
3513
3513
  value?: string | undefined;
@@ -3538,13 +3538,13 @@ declare const TriggerInsertSchema: drizzle_zod3.BuildSchema<"insert", {
3538
3538
  algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
3539
3539
  encoding: "hex" | "base64";
3540
3540
  signature: {
3541
- source: "header" | "query" | "body";
3541
+ source: "query" | "body" | "header";
3542
3542
  key: string;
3543
3543
  prefix?: string | undefined;
3544
3544
  regex?: string | undefined;
3545
3545
  };
3546
3546
  signedComponents: {
3547
- source: "literal" | "header" | "body";
3547
+ source: "literal" | "body" | "header";
3548
3548
  required: boolean;
3549
3549
  key?: string | undefined;
3550
3550
  value?: string | undefined;
@@ -3833,13 +3833,13 @@ declare const TriggerInsertSchema: drizzle_zod3.BuildSchema<"insert", {
3833
3833
  algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
3834
3834
  encoding: "hex" | "base64";
3835
3835
  signature: {
3836
- source: "header" | "query" | "body";
3836
+ source: "query" | "body" | "header";
3837
3837
  key: string;
3838
3838
  prefix?: string | undefined;
3839
3839
  regex?: string | undefined;
3840
3840
  };
3841
3841
  signedComponents: {
3842
- source: "literal" | "header" | "body";
3842
+ source: "literal" | "body" | "header";
3843
3843
  required: boolean;
3844
3844
  key?: string | undefined;
3845
3845
  value?: string | undefined;
@@ -3870,13 +3870,13 @@ declare const TriggerInsertSchema: drizzle_zod3.BuildSchema<"insert", {
3870
3870
  algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
3871
3871
  encoding: "hex" | "base64";
3872
3872
  signature: {
3873
- source: "header" | "query" | "body";
3873
+ source: "query" | "body" | "header";
3874
3874
  key: string;
3875
3875
  prefix?: string | undefined;
3876
3876
  regex?: string | undefined;
3877
3877
  };
3878
3878
  signedComponents: {
3879
- source: "literal" | "header" | "body";
3879
+ source: "literal" | "body" | "header";
3880
3880
  required: boolean;
3881
3881
  key?: string | undefined;
3882
3882
  value?: string | undefined;
@@ -4005,7 +4005,7 @@ declare const TriggerInsertSchema: drizzle_zod3.BuildSchema<"insert", {
4005
4005
  }, {}, {
4006
4006
  length: 256;
4007
4007
  }>;
4008
- }, "id" | "name" | "description" | "createdAt" | "updatedAt" | "tenantId" | "enabled" | "projectId" | "agentId" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification">, undefined>, undefined>;
4008
+ }, "id" | "name" | "description" | "tenantId" | "projectId" | "agentId" | "createdAt" | "updatedAt" | "enabled" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification">, undefined>, undefined>;
4009
4009
  declare const TriggerUpdateSchema: z.ZodObject<{
4010
4010
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4011
4011
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -4055,9 +4055,9 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
4055
4055
  }>;
4056
4056
  signature: z.ZodObject<{
4057
4057
  source: z.ZodEnum<{
4058
- header: "header";
4059
4058
  query: "query";
4060
4059
  body: "body";
4060
+ header: "header";
4061
4061
  }>;
4062
4062
  key: z.ZodString;
4063
4063
  prefix: z.ZodOptional<z.ZodString>;
@@ -4066,8 +4066,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
4066
4066
  signedComponents: z.ZodArray<z.ZodObject<{
4067
4067
  source: z.ZodEnum<{
4068
4068
  literal: "literal";
4069
- header: "header";
4070
4069
  body: "body";
4070
+ header: "header";
4071
4071
  }>;
4072
4072
  key: z.ZodOptional<z.ZodString>;
4073
4073
  value: z.ZodOptional<z.ZodString>;
@@ -4147,9 +4147,9 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
4147
4147
  }>;
4148
4148
  signature: z.ZodObject<{
4149
4149
  source: z.ZodEnum<{
4150
- header: "header";
4151
4150
  query: "query";
4152
4151
  body: "body";
4152
+ header: "header";
4153
4153
  }>;
4154
4154
  key: z.ZodString;
4155
4155
  prefix: z.ZodOptional<z.ZodString>;
@@ -4158,8 +4158,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
4158
4158
  signedComponents: z.ZodArray<z.ZodObject<{
4159
4159
  source: z.ZodEnum<{
4160
4160
  literal: "literal";
4161
- header: "header";
4162
4161
  body: "body";
4162
+ header: "header";
4163
4163
  }>;
4164
4164
  key: z.ZodOptional<z.ZodString>;
4165
4165
  value: z.ZodOptional<z.ZodString>;
@@ -4989,7 +4989,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod3.BuildSchema<"insert",
4989
4989
  }, {}, {
4990
4990
  length: 256;
4991
4991
  }>;
4992
- }, "id" | "createdAt" | "tenantId" | "projectId" | "agentId" | "status" | "triggerId" | "conversationId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
4992
+ }, "id" | "tenantId" | "projectId" | "agentId" | "createdAt" | "status" | "triggerId" | "conversationId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
4993
4993
  declare const TriggerInvocationUpdateSchema: z.ZodObject<{
4994
4994
  triggerId: z.ZodOptional<z.ZodString>;
4995
4995
  conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -5752,7 +5752,7 @@ declare const ScheduledTriggerInsertSchema: drizzle_zod3.BuildSchema<"insert", {
5752
5752
  }, {}, {
5753
5753
  length: 256;
5754
5754
  }>;
5755
- }, "id" | "name" | "description" | "createdAt" | "updatedAt" | "tenantId" | "enabled" | "projectId" | "agentId" | "messageTemplate" | "createdBy" | "cronExpression" | "cronTimezone" | "runAt" | "payload" | "maxRetries" | "retryDelaySeconds" | "timeoutSeconds" | "runAsUserId">, undefined>, undefined>;
5755
+ }, "id" | "name" | "description" | "tenantId" | "projectId" | "agentId" | "createdAt" | "updatedAt" | "enabled" | "messageTemplate" | "createdBy" | "cronExpression" | "cronTimezone" | "runAt" | "payload" | "maxRetries" | "retryDelaySeconds" | "timeoutSeconds" | "runAsUserId">, undefined>, undefined>;
5756
5756
  declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
5757
5757
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5758
5758
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -6681,7 +6681,7 @@ declare const ScheduledWorkflowInsertSchema: drizzle_zod3.BuildSchema<"insert",
6681
6681
  }, {}, {
6682
6682
  length: 256;
6683
6683
  }>;
6684
- }, "id" | "name" | "description" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "agentId" | "workflowRunId" | "status" | "scheduledTriggerId">, undefined>, undefined>;
6684
+ }, "id" | "name" | "description" | "tenantId" | "projectId" | "agentId" | "createdAt" | "updatedAt" | "status" | "workflowRunId" | "scheduledTriggerId">, undefined>, undefined>;
6685
6685
  declare const ScheduledWorkflowUpdateSchema: z.ZodObject<{
6686
6686
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6687
6687
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -6716,8 +6716,8 @@ declare const ScheduledWorkflowApiInsertSchema: z.ZodObject<{
6716
6716
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6717
6717
  createdAt: z.ZodOptional<z.ZodString>;
6718
6718
  updatedAt: z.ZodOptional<z.ZodString>;
6719
- workflowRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6720
6719
  status: z.ZodOptional<z.ZodString>;
6720
+ workflowRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6721
6721
  scheduledTriggerId: z.ZodString;
6722
6722
  id: z.ZodOptional<z.ZodString>;
6723
6723
  }, z.core.$strip>;
@@ -7288,7 +7288,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod3.BuildSchema<"
7288
7288
  }, {}, {
7289
7289
  length: 256;
7290
7290
  }>;
7291
- }, "id" | "createdAt" | "tenantId" | "projectId" | "agentId" | "status" | "scheduledTriggerId" | "conversationIds" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
7291
+ }, "id" | "tenantId" | "projectId" | "agentId" | "createdAt" | "status" | "scheduledTriggerId" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "conversationIds" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
7292
7292
  declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
7293
7293
  scheduledTriggerId: z.ZodOptional<z.ZodString>;
7294
7294
  status: z.ZodOptional<z.ZodString>;
@@ -7334,11 +7334,11 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
7334
7334
  createdAt: z.ZodOptional<z.ZodString>;
7335
7335
  status: z.ZodString;
7336
7336
  scheduledTriggerId: z.ZodString;
7337
- conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
7338
7337
  scheduledFor: z.ZodString;
7339
7338
  startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7340
7339
  completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7341
7340
  resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
7341
+ conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
7342
7342
  attemptNumber: z.ZodOptional<z.ZodInt>;
7343
7343
  idempotencyKey: z.ZodString;
7344
7344
  id: z.ZodString;
@@ -7348,11 +7348,11 @@ declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
7348
7348
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
7349
7349
  status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7350
7350
  scheduledTriggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7351
- conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
7352
7351
  scheduledFor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7353
7352
  startedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
7354
7353
  completedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
7355
7354
  resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>>>;
7355
+ conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
7356
7356
  attemptNumber: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodInt>>>;
7357
7357
  idempotencyKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7358
7358
  }, z.core.$strip>;
@@ -7420,7 +7420,7 @@ declare const TaskSelectSchema: drizzle_zod3.BuildSchema<"select", {
7420
7420
  dataType: "json";
7421
7421
  columnType: "PgJsonb";
7422
7422
  data: {
7423
- type: "commit" | "tag" | "branch";
7423
+ type: "tag" | "commit" | "branch";
7424
7424
  name: string;
7425
7425
  hash: string;
7426
7426
  };
@@ -7436,7 +7436,7 @@ declare const TaskSelectSchema: drizzle_zod3.BuildSchema<"select", {
7436
7436
  generated: undefined;
7437
7437
  }, {}, {
7438
7438
  $type: {
7439
- type: "commit" | "tag" | "branch";
7439
+ type: "tag" | "commit" | "branch";
7440
7440
  name: string;
7441
7441
  hash: string;
7442
7442
  };
@@ -7634,7 +7634,7 @@ declare const TaskSelectSchema: drizzle_zod3.BuildSchema<"select", {
7634
7634
  dataType: "json";
7635
7635
  columnType: "PgJsonb";
7636
7636
  data: {
7637
- type: "commit" | "tag" | "branch";
7637
+ type: "tag" | "commit" | "branch";
7638
7638
  name: string;
7639
7639
  hash: string;
7640
7640
  };
@@ -7650,7 +7650,7 @@ declare const TaskSelectSchema: drizzle_zod3.BuildSchema<"select", {
7650
7650
  generated: undefined;
7651
7651
  }, {}, {
7652
7652
  $type: {
7653
- type: "commit" | "tag" | "branch";
7653
+ type: "tag" | "commit" | "branch";
7654
7654
  name: string;
7655
7655
  hash: string;
7656
7656
  };
@@ -7803,8 +7803,8 @@ declare const TaskInsertSchema: z.ZodObject<{
7803
7803
  conversationId: z.ZodOptional<z.ZodString>;
7804
7804
  ref: z.ZodObject<{
7805
7805
  type: z.ZodEnum<{
7806
- commit: "commit";
7807
7806
  tag: "tag";
7807
+ commit: "commit";
7808
7808
  branch: "branch";
7809
7809
  }>;
7810
7810
  name: z.ZodString;
@@ -7828,8 +7828,8 @@ declare const TaskUpdateSchema: z.ZodObject<{
7828
7828
  conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7829
7829
  ref: z.ZodOptional<z.ZodObject<{
7830
7830
  type: z.ZodEnum<{
7831
- commit: "commit";
7832
7831
  tag: "tag";
7832
+ commit: "commit";
7833
7833
  branch: "branch";
7834
7834
  }>;
7835
7835
  name: z.ZodString;
@@ -7844,19 +7844,19 @@ declare const TaskApiSelectSchema: z.ZodObject<OmitProjectScope<{
7844
7844
  updatedAt: z.ZodString;
7845
7845
  contextId: z.ZodString;
7846
7846
  ref: z.ZodNullable<z.ZodType<{
7847
- type: "commit" | "tag" | "branch";
7847
+ type: "tag" | "commit" | "branch";
7848
7848
  name: string;
7849
7849
  hash: string;
7850
7850
  }, {
7851
- type: "commit" | "tag" | "branch";
7851
+ type: "tag" | "commit" | "branch";
7852
7852
  name: string;
7853
7853
  hash: string;
7854
7854
  }, z.core.$ZodTypeInternals<{
7855
- type: "commit" | "tag" | "branch";
7855
+ type: "tag" | "commit" | "branch";
7856
7856
  name: string;
7857
7857
  hash: string;
7858
7858
  }, {
7859
- type: "commit" | "tag" | "branch";
7859
+ type: "tag" | "commit" | "branch";
7860
7860
  name: string;
7861
7861
  hash: string;
7862
7862
  }>>>;
@@ -7882,8 +7882,8 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
7882
7882
  conversationId: z.ZodOptional<z.ZodString>;
7883
7883
  ref: z.ZodObject<{
7884
7884
  type: z.ZodEnum<{
7885
- commit: "commit";
7886
7885
  tag: "tag";
7886
+ commit: "commit";
7887
7887
  branch: "branch";
7888
7888
  }>;
7889
7889
  name: z.ZodString;
@@ -7892,16 +7892,16 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
7892
7892
  }>, z.core.$strip>;
7893
7893
  declare const TaskApiUpdateSchema: z.ZodObject<{
7894
7894
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7895
+ agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7895
7896
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
7896
7897
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
7897
- agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7898
- status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7899
7898
  metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
7899
+ status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7900
7900
  subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7901
7901
  ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
7902
7902
  type: z.ZodEnum<{
7903
- commit: "commit";
7904
7903
  tag: "tag";
7904
+ commit: "commit";
7905
7905
  branch: "branch";
7906
7906
  }>;
7907
7907
  name: z.ZodString;
@@ -8989,7 +8989,7 @@ declare const ConversationSelectSchema: drizzle_zod3.BuildSchema<"select", {
8989
8989
  dataType: "json";
8990
8990
  columnType: "PgJsonb";
8991
8991
  data: {
8992
- type: "commit" | "tag" | "branch";
8992
+ type: "tag" | "commit" | "branch";
8993
8993
  name: string;
8994
8994
  hash: string;
8995
8995
  };
@@ -9005,7 +9005,7 @@ declare const ConversationSelectSchema: drizzle_zod3.BuildSchema<"select", {
9005
9005
  generated: undefined;
9006
9006
  }, {}, {
9007
9007
  $type: {
9008
- type: "commit" | "tag" | "branch";
9008
+ type: "tag" | "commit" | "branch";
9009
9009
  name: string;
9010
9010
  hash: string;
9011
9011
  };
@@ -9218,7 +9218,7 @@ declare const ConversationSelectSchema: drizzle_zod3.BuildSchema<"select", {
9218
9218
  dataType: "json";
9219
9219
  columnType: "PgJsonb";
9220
9220
  data: {
9221
- type: "commit" | "tag" | "branch";
9221
+ type: "tag" | "commit" | "branch";
9222
9222
  name: string;
9223
9223
  hash: string;
9224
9224
  };
@@ -9234,7 +9234,7 @@ declare const ConversationSelectSchema: drizzle_zod3.BuildSchema<"select", {
9234
9234
  generated: undefined;
9235
9235
  }, {}, {
9236
9236
  $type: {
9237
- type: "commit" | "tag" | "branch";
9237
+ type: "tag" | "commit" | "branch";
9238
9238
  name: string;
9239
9239
  hash: string;
9240
9240
  };
@@ -9365,8 +9365,8 @@ declare const ConversationInsertSchema: z.ZodObject<{
9365
9365
  contextConfigId: z.ZodOptional<z.ZodString>;
9366
9366
  ref: z.ZodObject<{
9367
9367
  type: z.ZodEnum<{
9368
- commit: "commit";
9369
9368
  tag: "tag";
9369
+ commit: "commit";
9370
9370
  branch: "branch";
9371
9371
  }>;
9372
9372
  name: z.ZodString;
@@ -9391,8 +9391,8 @@ declare const ConversationUpdateSchema: z.ZodObject<{
9391
9391
  contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9392
9392
  ref: z.ZodOptional<z.ZodObject<{
9393
9393
  type: z.ZodEnum<{
9394
- commit: "commit";
9395
9394
  tag: "tag";
9395
+ commit: "commit";
9396
9396
  branch: "branch";
9397
9397
  }>;
9398
9398
  name: z.ZodString;
@@ -9409,19 +9409,19 @@ declare const ConversationApiSelectSchema: z.ZodObject<OmitProjectScope<{
9409
9409
  agentId: z.ZodNullable<z.ZodString>;
9410
9410
  activeSubAgentId: z.ZodString;
9411
9411
  ref: z.ZodNullable<z.ZodType<{
9412
- type: "commit" | "tag" | "branch";
9412
+ type: "tag" | "commit" | "branch";
9413
9413
  name: string;
9414
9414
  hash: string;
9415
9415
  }, {
9416
- type: "commit" | "tag" | "branch";
9416
+ type: "tag" | "commit" | "branch";
9417
9417
  name: string;
9418
9418
  hash: string;
9419
9419
  }, z.core.$ZodTypeInternals<{
9420
- type: "commit" | "tag" | "branch";
9420
+ type: "tag" | "commit" | "branch";
9421
9421
  name: string;
9422
9422
  hash: string;
9423
9423
  }, {
9424
- type: "commit" | "tag" | "branch";
9424
+ type: "tag" | "commit" | "branch";
9425
9425
  name: string;
9426
9426
  hash: string;
9427
9427
  }>>>;
@@ -9447,8 +9447,8 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
9447
9447
  contextConfigId: z.ZodOptional<z.ZodString>;
9448
9448
  ref: z.ZodObject<{
9449
9449
  type: z.ZodEnum<{
9450
- commit: "commit";
9451
9450
  tag: "tag";
9451
+ commit: "commit";
9452
9452
  branch: "branch";
9453
9453
  }>;
9454
9454
  name: z.ZodString;
@@ -9457,17 +9457,17 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
9457
9457
  }>, z.core.$strip>;
9458
9458
  declare const ConversationApiUpdateSchema: z.ZodObject<{
9459
9459
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9460
+ agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
9460
9461
  title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
9461
9462
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
9462
9463
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
9463
9464
  contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
9464
- agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
9465
- userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
9466
9465
  metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
9466
+ userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
9467
9467
  ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
9468
9468
  type: z.ZodEnum<{
9469
- commit: "commit";
9470
9469
  tag: "tag";
9470
+ commit: "commit";
9471
9471
  branch: "branch";
9472
9472
  }>;
9473
9473
  name: z.ZodString;
@@ -10371,15 +10371,15 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
10371
10371
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
10372
10372
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
10373
10373
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
10374
- content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
10375
10374
  metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
10375
+ content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
10376
+ role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
10376
10377
  fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
10377
10378
  toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
10378
10379
  fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
10379
10380
  toExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
10380
10381
  taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
10381
10382
  a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
10382
- role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
10383
10383
  conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
10384
10384
  fromTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
10385
10385
  toTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
@@ -10486,7 +10486,7 @@ declare const ContextCacheSelectSchema: drizzle_zod3.BuildSchema<"select", {
10486
10486
  dataType: "json";
10487
10487
  columnType: "PgJsonb";
10488
10488
  data: {
10489
- type: "commit" | "tag" | "branch";
10489
+ type: "tag" | "commit" | "branch";
10490
10490
  name: string;
10491
10491
  hash: string;
10492
10492
  };
@@ -10502,7 +10502,7 @@ declare const ContextCacheSelectSchema: drizzle_zod3.BuildSchema<"select", {
10502
10502
  generated: undefined;
10503
10503
  }, {}, {
10504
10504
  $type: {
10505
- type: "commit" | "tag" | "branch";
10505
+ type: "tag" | "commit" | "branch";
10506
10506
  name: string;
10507
10507
  hash: string;
10508
10508
  };
@@ -10736,7 +10736,7 @@ declare const ContextCacheSelectSchema: drizzle_zod3.BuildSchema<"select", {
10736
10736
  dataType: "json";
10737
10737
  columnType: "PgJsonb";
10738
10738
  data: {
10739
- type: "commit" | "tag" | "branch";
10739
+ type: "tag" | "commit" | "branch";
10740
10740
  name: string;
10741
10741
  hash: string;
10742
10742
  };
@@ -10752,7 +10752,7 @@ declare const ContextCacheSelectSchema: drizzle_zod3.BuildSchema<"select", {
10752
10752
  generated: undefined;
10753
10753
  }, {}, {
10754
10754
  $type: {
10755
- type: "commit" | "tag" | "branch";
10755
+ type: "tag" | "commit" | "branch";
10756
10756
  name: string;
10757
10757
  hash: string;
10758
10758
  };
@@ -10904,8 +10904,8 @@ declare const ContextCacheInsertSchema: z.ZodObject<{
10904
10904
  id: z.ZodString;
10905
10905
  ref: z.ZodObject<{
10906
10906
  type: z.ZodEnum<{
10907
- commit: "commit";
10908
10907
  tag: "tag";
10908
+ commit: "commit";
10909
10909
  branch: "branch";
10910
10910
  }>;
10911
10911
  name: z.ZodString;
@@ -10930,8 +10930,8 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
10930
10930
  id: z.ZodOptional<z.ZodString>;
10931
10931
  ref: z.ZodOptional<z.ZodObject<{
10932
10932
  type: z.ZodEnum<{
10933
- commit: "commit";
10934
10933
  tag: "tag";
10934
+ commit: "commit";
10935
10935
  branch: "branch";
10936
10936
  }>;
10937
10937
  name: z.ZodString;
@@ -10948,19 +10948,19 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<OmitProjectScope<{
10948
10948
  contextConfigId: z.ZodString;
10949
10949
  contextVariableKey: z.ZodString;
10950
10950
  ref: z.ZodNullable<z.ZodType<{
10951
- type: "commit" | "tag" | "branch";
10951
+ type: "tag" | "commit" | "branch";
10952
10952
  name: string;
10953
10953
  hash: string;
10954
10954
  }, {
10955
- type: "commit" | "tag" | "branch";
10955
+ type: "tag" | "commit" | "branch";
10956
10956
  name: string;
10957
10957
  hash: string;
10958
10958
  }, z.core.$ZodTypeInternals<{
10959
- type: "commit" | "tag" | "branch";
10959
+ type: "tag" | "commit" | "branch";
10960
10960
  name: string;
10961
10961
  hash: string;
10962
10962
  }, {
10963
- type: "commit" | "tag" | "branch";
10963
+ type: "tag" | "commit" | "branch";
10964
10964
  name: string;
10965
10965
  hash: string;
10966
10966
  }>>>;
@@ -10987,8 +10987,8 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
10987
10987
  id: z.ZodString;
10988
10988
  ref: z.ZodObject<{
10989
10989
  type: z.ZodEnum<{
10990
- commit: "commit";
10991
10990
  tag: "tag";
10991
+ commit: "commit";
10992
10992
  branch: "branch";
10993
10993
  }>;
10994
10994
  name: z.ZodString;
@@ -11003,8 +11003,8 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
11003
11003
  contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11004
11004
  ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
11005
11005
  type: z.ZodEnum<{
11006
- commit: "commit";
11007
11006
  tag: "tag";
11007
+ commit: "commit";
11008
11008
  branch: "branch";
11009
11009
  }>;
11010
11010
  name: z.ZodString;
@@ -11343,15 +11343,15 @@ declare const DatasetRunApiInsertSchema: z.ZodObject<{
11343
11343
  createdAt: z.ZodOptional<z.ZodString>;
11344
11344
  updatedAt: z.ZodOptional<z.ZodString>;
11345
11345
  datasetId: z.ZodString;
11346
- evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11347
11346
  datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11347
+ evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11348
11348
  }, z.core.$strip>;
11349
11349
  declare const DatasetRunApiUpdateSchema: z.ZodObject<{
11350
11350
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
11351
11351
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
11352
11352
  datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11353
- evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
11354
11353
  datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
11354
+ evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
11355
11355
  }, z.core.$strip>;
11356
11356
  declare const DatasetRunConversationRelationSelectSchema: drizzle_zod3.BuildSchema<"select", {
11357
11357
  createdAt: drizzle_orm_pg_core83.PgColumn<{
@@ -12058,16 +12058,16 @@ declare const EvaluationResultApiInsertSchema: z.ZodObject<{
12058
12058
  output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
12059
12059
  createdAt: z.ZodOptional<z.ZodString>;
12060
12060
  updatedAt: z.ZodOptional<z.ZodString>;
12061
- evaluatorId: z.ZodString;
12062
12061
  conversationId: z.ZodString;
12062
+ evaluatorId: z.ZodString;
12063
12063
  evaluationRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12064
12064
  }, z.core.$strip>;
12065
12065
  declare const EvaluationResultApiUpdateSchema: z.ZodObject<{
12066
12066
  output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
12067
12067
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
12068
12068
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
12069
- evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12070
12069
  conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12070
+ evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12071
12071
  evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
12072
12072
  }, z.core.$strip>;
12073
12073
  declare const EvaluationRunSelectSchema: drizzle_zod3.BuildSchema<"select", {
@@ -12359,14 +12359,14 @@ declare const EvaluationRunApiSelectSchema: z.ZodObject<OmitProjectScope<{
12359
12359
  declare const EvaluationRunApiInsertSchema: z.ZodObject<{
12360
12360
  createdAt: z.ZodOptional<z.ZodString>;
12361
12361
  updatedAt: z.ZodOptional<z.ZodString>;
12362
- evaluationRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12363
12362
  evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12363
+ evaluationRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12364
12364
  }, z.core.$strip>;
12365
12365
  declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
12366
12366
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
12367
12367
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
12368
- evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
12369
12368
  evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
12369
+ evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
12370
12370
  }, z.core.$strip>;
12371
12371
  declare const EvaluationRunConfigSelectSchema: drizzle_zod3.BuildSchema<"select", {
12372
12372
  createdAt: drizzle_orm_pg_core83.PgColumn<{
@@ -13753,14 +13753,14 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiSelectSchema: z
13753
13753
  declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiInsertSchema: z.ZodObject<{
13754
13754
  createdAt: z.ZodOptional<z.ZodString>;
13755
13755
  updatedAt: z.ZodOptional<z.ZodString>;
13756
- evaluationSuiteConfigId: z.ZodString;
13757
13756
  evaluationRunConfigId: z.ZodString;
13757
+ evaluationSuiteConfigId: z.ZodString;
13758
13758
  }, z.core.$strip>;
13759
13759
  declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiUpdateSchema: z.ZodObject<{
13760
13760
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
13761
13761
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
13762
- evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13763
13762
  evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13763
+ evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13764
13764
  }, z.core.$strip>;
13765
13765
  declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod3.BuildSchema<"select", {
13766
13766
  createdAt: drizzle_orm_pg_core83.PgColumn<{
@@ -14059,14 +14059,14 @@ declare const EvaluationJobConfigEvaluatorRelationApiSelectSchema: z.ZodObject<O
14059
14059
  declare const EvaluationJobConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
14060
14060
  createdAt: z.ZodOptional<z.ZodString>;
14061
14061
  updatedAt: z.ZodOptional<z.ZodString>;
14062
- evaluatorId: z.ZodString;
14063
14062
  evaluationJobConfigId: z.ZodString;
14063
+ evaluatorId: z.ZodString;
14064
14064
  }, z.core.$strip>;
14065
14065
  declare const EvaluationJobConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
14066
14066
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
14067
14067
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
14068
- evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
14069
14068
  evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
14069
+ evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
14070
14070
  }, z.core.$strip>;
14071
14071
  declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod3.BuildSchema<"select", {
14072
14072
  createdAt: drizzle_orm_pg_core83.PgColumn<{
@@ -14365,14 +14365,14 @@ declare const EvaluationSuiteConfigEvaluatorRelationApiSelectSchema: z.ZodObject
14365
14365
  declare const EvaluationSuiteConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
14366
14366
  createdAt: z.ZodOptional<z.ZodString>;
14367
14367
  updatedAt: z.ZodOptional<z.ZodString>;
14368
- evaluationSuiteConfigId: z.ZodString;
14369
14368
  evaluatorId: z.ZodString;
14369
+ evaluationSuiteConfigId: z.ZodString;
14370
14370
  }, z.core.$strip>;
14371
14371
  declare const EvaluationSuiteConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
14372
14372
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
14373
14373
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
14374
- evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
14375
14374
  evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
14375
+ evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
14376
14376
  }, z.core.$strip>;
14377
14377
  declare const EvaluatorSelectSchema: drizzle_zod3.BuildSchema<"select", {
14378
14378
  createdAt: drizzle_orm_pg_core83.PgColumn<{
@@ -14875,6 +14875,7 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<OmitProjectScope<{
14875
14875
  declare const EvaluatorApiInsertSchema: z.ZodObject<{
14876
14876
  name: z.ZodString;
14877
14877
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14878
+ prompt: z.ZodString;
14878
14879
  model: z.ZodType<{
14879
14880
  model?: string | undefined;
14880
14881
  providerOptions?: Record<string, any> | undefined;
@@ -14890,13 +14891,13 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
14890
14891
  }>>;
14891
14892
  createdAt: z.ZodOptional<z.ZodString>;
14892
14893
  updatedAt: z.ZodOptional<z.ZodString>;
14893
- prompt: z.ZodString;
14894
14894
  schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
14895
14895
  passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
14896
14896
  }, z.core.$strip>;
14897
14897
  declare const EvaluatorApiUpdateSchema: z.ZodObject<{
14898
14898
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
14899
14899
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
14900
+ prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
14900
14901
  model: z.ZodOptional<z.ZodOptional<z.ZodType<{
14901
14902
  model?: string | undefined;
14902
14903
  providerOptions?: Record<string, any> | undefined;
@@ -14912,7 +14913,6 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
14912
14913
  }>>>>;
14913
14914
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
14914
14915
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
14915
- prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
14916
14916
  schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
14917
14917
  passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
14918
14918
  }, z.core.$strip>;
@@ -16592,8 +16592,8 @@ declare const SkillInsertSchema: z.ZodObject<{
16592
16592
  description: z.ZodString;
16593
16593
  tenantId: z.ZodString;
16594
16594
  projectId: z.ZodString;
16595
- content: z.ZodString;
16596
16595
  metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
16596
+ content: z.ZodString;
16597
16597
  }, {
16598
16598
  out: {};
16599
16599
  in: {};
@@ -16602,8 +16602,8 @@ declare const SkillUpdateSchema: z.ZodObject<{
16602
16602
  description: z.ZodOptional<z.ZodString>;
16603
16603
  tenantId: z.ZodOptional<z.ZodString>;
16604
16604
  projectId: z.ZodOptional<z.ZodString>;
16605
- content: z.ZodOptional<z.ZodString>;
16606
16605
  metadata: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
16606
+ content: z.ZodOptional<z.ZodString>;
16607
16607
  }, {
16608
16608
  out: {};
16609
16609
  in: {};
@@ -16624,13 +16624,13 @@ declare const SkillApiInsertSchema: z.ZodObject<OmitProjectScope<{
16624
16624
  description: z.ZodString;
16625
16625
  tenantId: z.ZodString;
16626
16626
  projectId: z.ZodString;
16627
- content: z.ZodString;
16628
16627
  metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
16628
+ content: z.ZodString;
16629
16629
  }>, z.core.$strip>;
16630
16630
  declare const SkillApiUpdateSchema: z.ZodObject<{
16631
16631
  description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
16632
- content: z.ZodOptional<z.ZodOptional<z.ZodString>>;
16633
16632
  metadata: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>>;
16633
+ content: z.ZodOptional<z.ZodOptional<z.ZodString>>;
16634
16634
  }, z.core.$strip>;
16635
16635
  declare const DataComponentSelectSchema: drizzle_zod3.BuildSchema<"select", {
16636
16636
  createdAt: drizzle_orm_pg_core83.PgColumn<{
@@ -17747,7 +17747,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod3.BuildSchema<"inser
17747
17747
  }, {}, {
17748
17748
  length: 256;
17749
17749
  }>;
17750
- }, "id" | "createdAt" | "tenantId" | "projectId" | "agentId" | "subAgentId" | "dataComponentId">, undefined>, undefined>;
17750
+ }, "id" | "tenantId" | "projectId" | "agentId" | "createdAt" | "subAgentId" | "dataComponentId">, undefined>, undefined>;
17751
17751
  declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
17752
17752
  dataComponentId: z.ZodOptional<z.ZodString>;
17753
17753
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -18763,10 +18763,10 @@ declare const SubAgentSkillApiSelectSchema: z.ZodObject<OmitAgentScope<{
18763
18763
  }>, z.core.$strip>;
18764
18764
  declare const SubAgentSkillApiInsertSchema: z.ZodObject<{
18765
18765
  agentId: z.ZodString;
18766
- skillId: z.ZodString;
18767
18766
  index: z.ZodInt;
18768
18767
  alwaysLoaded: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
18769
18768
  subAgentId: z.ZodString;
18769
+ skillId: z.ZodString;
18770
18770
  }, {
18771
18771
  out: {};
18772
18772
  in: {};
@@ -18775,10 +18775,10 @@ declare const SubAgentSkillApiUpdateSchema: z.ZodObject<{
18775
18775
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
18776
18776
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
18777
18777
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
18778
- skillId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
18779
18778
  index: z.ZodOptional<z.ZodOptional<z.ZodInt>>;
18780
18779
  alwaysLoaded: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>>;
18781
18780
  subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
18781
+ skillId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
18782
18782
  }, z.core.$strip>;
18783
18783
  declare const SubAgentSkillWithIndexSchema: z.ZodObject<{
18784
18784
  id: z.ZodString;
@@ -18786,8 +18786,8 @@ declare const SubAgentSkillWithIndexSchema: z.ZodObject<{
18786
18786
  description: z.ZodString;
18787
18787
  createdAt: z.ZodString;
18788
18788
  updatedAt: z.ZodString;
18789
- content: z.ZodString;
18790
18789
  metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
18790
+ content: z.ZodString;
18791
18791
  subAgentSkillId: z.ZodString;
18792
18792
  subAgentId: z.ZodString;
18793
18793
  index: z.ZodInt;
@@ -18863,13 +18863,15 @@ declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
18863
18863
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
18864
18864
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
18865
18865
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
18866
- baseUrl: z.ZodOptional<z.ZodOptional<z.ZodURL>>;
18867
18866
  credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
18867
+ baseUrl: z.ZodOptional<z.ZodOptional<z.ZodURL>>;
18868
18868
  }, z.core.$strip>;
18869
18869
  declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
18870
18870
  id: z.ZodString;
18871
18871
  name: z.ZodString;
18872
18872
  description: z.ZodNullable<z.ZodString>;
18873
+ prompt: z.ZodNullable<z.ZodString>;
18874
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
18873
18875
  models: z.ZodNullable<z.ZodType<{
18874
18876
  base?: {
18875
18877
  model?: string | undefined;
@@ -18934,8 +18936,6 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
18934
18936
  }>>>;
18935
18937
  createdAt: z.ZodString;
18936
18938
  updatedAt: z.ZodString;
18937
- prompt: z.ZodNullable<z.ZodString>;
18938
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
18939
18939
  type: z.ZodLiteral<"internal">;
18940
18940
  }, z.core.$strip>, z.ZodObject<{
18941
18941
  id: z.ZodString;
@@ -18943,8 +18943,8 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
18943
18943
  description: z.ZodNullable<z.ZodString>;
18944
18944
  createdAt: z.ZodString;
18945
18945
  updatedAt: z.ZodString;
18946
- baseUrl: z.ZodString;
18947
18946
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18947
+ baseUrl: z.ZodString;
18948
18948
  type: z.ZodLiteral<"external">;
18949
18949
  }, z.core.$strip>], "type">;
18950
18950
  declare const ApiKeySelectSchema: drizzle_zod3.BuildSchema<"select", {
@@ -19409,8 +19409,8 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
19409
19409
  }>;
19410
19410
  declare const ApiKeyUpdateSchema: z.ZodObject<{
19411
19411
  name: z.ZodOptional<z.ZodString>;
19412
- updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
19413
19412
  agentId: z.ZodOptional<z.ZodString>;
19413
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
19414
19414
  expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
19415
19415
  lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
19416
19416
  }, {
@@ -19420,9 +19420,9 @@ declare const ApiKeyUpdateSchema: z.ZodObject<{
19420
19420
  declare const ApiKeyApiSelectSchema: z.ZodObject<{
19421
19421
  id: z.ZodString;
19422
19422
  name: z.ZodNullable<z.ZodString>;
19423
+ agentId: z.ZodString;
19423
19424
  createdAt: z.ZodString;
19424
19425
  updatedAt: z.ZodString;
19425
- agentId: z.ZodString;
19426
19426
  expiresAt: z.ZodNullable<z.ZodString>;
19427
19427
  publicId: z.ZodString;
19428
19428
  keyPrefix: z.ZodString;
@@ -19436,9 +19436,9 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
19436
19436
  apiKey: z.ZodObject<{
19437
19437
  id: z.ZodString;
19438
19438
  name: z.ZodNullable<z.ZodString>;
19439
+ agentId: z.ZodString;
19439
19440
  createdAt: z.ZodString;
19440
19441
  updatedAt: z.ZodString;
19441
- agentId: z.ZodString;
19442
19442
  expiresAt: z.ZodNullable<z.ZodString>;
19443
19443
  publicId: z.ZodString;
19444
19444
  keyPrefix: z.ZodString;
@@ -19452,9 +19452,9 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
19452
19452
  }, z.core.$strip>;
19453
19453
  declare const ApiKeyApiInsertSchema: z.ZodObject<{
19454
19454
  name: z.ZodString;
19455
+ agentId: z.ZodString;
19455
19456
  createdAt: z.ZodOptional<z.ZodString>;
19456
19457
  updatedAt: z.ZodOptional<z.ZodString>;
19457
- agentId: z.ZodString;
19458
19458
  expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19459
19459
  }, {
19460
19460
  out: {};
@@ -19462,8 +19462,8 @@ declare const ApiKeyApiInsertSchema: z.ZodObject<{
19462
19462
  }>;
19463
19463
  declare const ApiKeyApiUpdateSchema: z.ZodObject<{
19464
19464
  name: z.ZodOptional<z.ZodString>;
19465
- updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
19466
19465
  agentId: z.ZodOptional<z.ZodString>;
19466
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
19467
19467
  expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
19468
19468
  lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
19469
19469
  }, {
@@ -19960,10 +19960,10 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
19960
19960
  name: z.ZodString;
19961
19961
  createdAt: z.ZodString;
19962
19962
  updatedAt: z.ZodString;
19963
- credentialStoreId: z.ZodString;
19964
- retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
19965
19963
  toolId: z.ZodNullable<z.ZodString>;
19966
19964
  userId: z.ZodNullable<z.ZodString>;
19965
+ credentialStoreId: z.ZodString;
19966
+ retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
19967
19967
  createdBy: z.ZodNullable<z.ZodString>;
19968
19968
  type: z.ZodEnum<{
19969
19969
  readonly memory: "memory";
@@ -20551,10 +20551,10 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
20551
20551
  name: z.ZodString;
20552
20552
  createdAt: z.ZodOptional<z.ZodString>;
20553
20553
  updatedAt: z.ZodOptional<z.ZodString>;
20554
- credentialStoreId: z.ZodString;
20555
- retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
20556
20554
  toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20557
20555
  userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20556
+ credentialStoreId: z.ZodString;
20557
+ retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
20558
20558
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20559
20559
  type: z.ZodEnum<{
20560
20560
  readonly memory: "memory";
@@ -20567,10 +20567,10 @@ declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
20567
20567
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
20568
20568
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
20569
20569
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
20570
- credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
20571
- retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
20572
20570
  toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
20573
20571
  userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
20572
+ credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
20573
+ retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
20574
20574
  createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
20575
20575
  type: z.ZodOptional<z.ZodEnum<{
20576
20576
  readonly memory: "memory";
@@ -20696,20 +20696,20 @@ declare const McpToolSchema: z.ZodObject<{
20696
20696
  declare const MCPToolConfigSchema: z.ZodObject<{
20697
20697
  id: z.ZodString;
20698
20698
  name: z.ZodString;
20699
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
20700
+ expiresAt: z.ZodOptional<z.ZodString>;
20699
20701
  createdBy: z.ZodOptional<z.ZodString>;
20700
20702
  credentialScope: z.ZodOptional<z.ZodString>;
20701
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
20702
20703
  imageUrl: z.ZodOptional<z.ZodString>;
20703
20704
  capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
20704
20705
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20705
20706
  isWorkApp: z.ZodOptional<z.ZodBoolean>;
20706
- relationshipId: z.ZodOptional<z.ZodString>;
20707
- expiresAt: z.ZodOptional<z.ZodString>;
20708
20707
  availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
20709
20708
  name: z.ZodString;
20710
20709
  description: z.ZodOptional<z.ZodString>;
20711
20710
  inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
20712
20711
  }, z.core.$strip>>>;
20712
+ relationshipId: z.ZodOptional<z.ZodString>;
20713
20713
  tenantId: z.ZodOptional<z.ZodString>;
20714
20714
  projectId: z.ZodOptional<z.ZodString>;
20715
20715
  description: z.ZodOptional<z.ZodString>;
@@ -20734,10 +20734,10 @@ declare const MCPToolConfigSchema: z.ZodObject<{
20734
20734
  name: z.ZodString;
20735
20735
  createdAt: z.ZodOptional<z.ZodString>;
20736
20736
  updatedAt: z.ZodOptional<z.ZodString>;
20737
- credentialStoreId: z.ZodString;
20738
- retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
20739
20737
  toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20740
20738
  userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20739
+ credentialStoreId: z.ZodString;
20740
+ retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
20741
20741
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20742
20742
  type: z.ZodEnum<{
20743
20743
  readonly memory: "memory";
@@ -20878,7 +20878,7 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
20878
20878
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
20879
20879
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
20880
20880
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
20881
- credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
20881
+ 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>>>>>>>;
20882
20882
  config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
20883
20883
  type: z.ZodLiteral<"mcp">;
20884
20884
  mcp: z.ZodObject<{
@@ -20905,8 +20905,8 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
20905
20905
  prompt: z.ZodOptional<z.ZodString>;
20906
20906
  }, z.core.$strip>;
20907
20907
  }, z.core.$strip>>>;
20908
+ credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
20908
20909
  credentialScope: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
20909
- 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>>>>>>>;
20910
20910
  imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
20911
20911
  capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
20912
20912
  lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
@@ -21277,9 +21277,9 @@ declare const FunctionToolApiSelectSchema: z.ZodObject<{
21277
21277
  id: z.ZodString;
21278
21278
  name: z.ZodString;
21279
21279
  description: z.ZodNullable<z.ZodString>;
21280
+ agentId: z.ZodString;
21280
21281
  createdAt: z.ZodString;
21281
21282
  updatedAt: z.ZodString;
21282
- agentId: z.ZodString;
21283
21283
  functionId: z.ZodString;
21284
21284
  relationshipId: z.ZodOptional<z.ZodString>;
21285
21285
  }, z.core.$strip>;
@@ -21298,9 +21298,9 @@ declare const FunctionToolApiUpdateSchema: z.ZodObject<{
21298
21298
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21299
21299
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21300
21300
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
21301
+ agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21301
21302
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
21302
21303
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
21303
- agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21304
21304
  functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21305
21305
  }, z.core.$strip>;
21306
21306
  declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod3.BuildSchema<"select", {
@@ -21674,8 +21674,8 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<OmitAgent
21674
21674
  id: z.ZodString;
21675
21675
  }>, z.core.$strip>;
21676
21676
  declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
21677
- subAgentId: z.ZodString;
21678
21677
  toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
21678
+ subAgentId: z.ZodString;
21679
21679
  functionToolId: z.ZodString;
21680
21680
  }, {
21681
21681
  out: {};
@@ -22025,8 +22025,8 @@ declare const FunctionApiUpdateSchema: z.ZodObject<{
22025
22025
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
22026
22026
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
22027
22027
  inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>>;
22028
- executeCode: z.ZodOptional<z.ZodOptional<z.ZodString>>;
22029
22028
  dependencies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
22029
+ executeCode: z.ZodOptional<z.ZodOptional<z.ZodString>>;
22030
22030
  }, z.core.$strip>;
22031
22031
  declare const FetchConfigSchema: z.ZodObject<{
22032
22032
  url: z.ZodString;
@@ -22072,10 +22072,10 @@ declare const FetchDefinitionSchema: z.ZodObject<{
22072
22072
  name: z.ZodString;
22073
22073
  createdAt: z.ZodOptional<z.ZodString>;
22074
22074
  updatedAt: z.ZodOptional<z.ZodString>;
22075
- credentialStoreId: z.ZodString;
22076
- retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
22077
22075
  toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22078
22076
  userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22077
+ credentialStoreId: z.ZodString;
22078
+ retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
22079
22079
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22080
22080
  type: z.ZodEnum<{
22081
22081
  readonly memory: "memory";
@@ -22101,9 +22101,9 @@ declare const ContextConfigInsertSchema: z.ZodObject<{
22101
22101
  id: z.ZodOptional<z.ZodString>;
22102
22102
  tenantId: z.ZodString;
22103
22103
  projectId: z.ZodString;
22104
+ agentId: z.ZodString;
22104
22105
  headersSchema: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
22105
22106
  contextVariables: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
22106
- agentId: z.ZodString;
22107
22107
  }, {
22108
22108
  out: {};
22109
22109
  in: {};
@@ -22112,9 +22112,9 @@ declare const ContextConfigUpdateSchema: z.ZodObject<{
22112
22112
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
22113
22113
  tenantId: z.ZodOptional<z.ZodString>;
22114
22114
  projectId: z.ZodOptional<z.ZodString>;
22115
+ agentId: z.ZodOptional<z.ZodString>;
22115
22116
  headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
22116
22117
  contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
22117
- agentId: z.ZodOptional<z.ZodString>;
22118
22118
  }, {
22119
22119
  out: {};
22120
22120
  in: {};
@@ -22626,12 +22626,12 @@ declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
22626
22626
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
22627
22627
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
22628
22628
  toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
22629
- subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
22630
22629
  headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
22631
- selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
22632
22630
  toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
22633
22631
  needsApproval: z.ZodOptional<z.ZodBoolean>;
22634
22632
  }, z.core.$strip>>>>>>;
22633
+ subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
22634
+ selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
22635
22635
  }, z.core.$strip>;
22636
22636
  declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod3.BuildSchema<"select", {
22637
22637
  createdAt: drizzle_orm_pg_core83.PgColumn<{
@@ -23019,9 +23019,9 @@ declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
23019
23019
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
23020
23020
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
23021
23021
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
23022
- subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
23023
23022
  headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
23024
23023
  externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
23024
+ subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
23025
23025
  }, z.core.$strip>;
23026
23026
  declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod3.BuildSchema<"select", {
23027
23027
  createdAt: drizzle_orm_pg_core83.PgColumn<{
@@ -23409,8 +23409,8 @@ declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
23409
23409
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
23410
23410
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
23411
23411
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
23412
- subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
23413
23412
  headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
23413
+ subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
23414
23414
  targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
23415
23415
  }, z.core.$strip>;
23416
23416
  declare const LedgerArtifactSelectSchema: drizzle_zod3.BuildSchema<"select", {
@@ -24754,7 +24754,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod3.BuildSchema<"insert", {
24754
24754
  }, {}, {
24755
24755
  length: 256;
24756
24756
  }>;
24757
- }, "id" | "name" | "description" | "type" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "metadata" | "taskId" | "toolCallId" | "contextId" | "visibility" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
24757
+ }, "id" | "name" | "description" | "tenantId" | "projectId" | "type" | "createdAt" | "updatedAt" | "metadata" | "taskId" | "contextId" | "visibility" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
24758
24758
  declare const LedgerArtifactUpdateSchema: z.ZodObject<{
24759
24759
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
24760
24760
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -24827,9 +24827,9 @@ declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
24827
24827
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
24828
24828
  metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>>>;
24829
24829
  taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
24830
- toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
24831
24830
  contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
24832
24831
  visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
24832
+ toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
24833
24833
  parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>>>;
24834
24834
  summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
24835
24835
  mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>>>;
@@ -24902,6 +24902,7 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
24902
24902
  id: z.ZodString;
24903
24903
  name: z.ZodString;
24904
24904
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24905
+ conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
24905
24906
  models: z.ZodOptional<z.ZodObject<{
24906
24907
  base: z.ZodOptional<z.ZodObject<{
24907
24908
  model: z.ZodOptional<z.ZodString>;
@@ -24918,7 +24919,6 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
24918
24919
  }, z.core.$strip>>;
24919
24920
  createdAt: z.ZodOptional<z.ZodString>;
24920
24921
  updatedAt: z.ZodOptional<z.ZodString>;
24921
- conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
24922
24922
  type: z.ZodLiteral<"internal">;
24923
24923
  canUse: z.ZodArray<z.ZodObject<{
24924
24924
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -24954,15 +24954,16 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
24954
24954
  declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
24955
24955
  name: z.ZodString;
24956
24956
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24957
+ defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24957
24958
  createdAt: z.ZodOptional<z.ZodString>;
24958
24959
  updatedAt: z.ZodOptional<z.ZodString>;
24959
- defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24960
24960
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24961
24961
  id: z.ZodString;
24962
24962
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
24963
24963
  id: z.ZodString;
24964
24964
  name: z.ZodString;
24965
24965
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24966
+ conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
24966
24967
  models: z.ZodOptional<z.ZodObject<{
24967
24968
  base: z.ZodOptional<z.ZodObject<{
24968
24969
  model: z.ZodOptional<z.ZodString>;
@@ -24979,7 +24980,6 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
24979
24980
  }, z.core.$strip>>;
24980
24981
  createdAt: z.ZodOptional<z.ZodString>;
24981
24982
  updatedAt: z.ZodOptional<z.ZodString>;
24982
- conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
24983
24983
  type: z.ZodLiteral<"internal">;
24984
24984
  canUse: z.ZodArray<z.ZodObject<{
24985
24985
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -25223,6 +25223,7 @@ declare const ProjectInsertSchema: z.ZodObject<{
25223
25223
  id: z.ZodString;
25224
25224
  name: z.ZodString;
25225
25225
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25226
+ tenantId: z.ZodString;
25226
25227
  models: z.ZodObject<{
25227
25228
  base: z.ZodObject<{
25228
25229
  model: z.ZodOptional<z.ZodString>;
@@ -25241,7 +25242,6 @@ declare const ProjectInsertSchema: z.ZodObject<{
25241
25242
  transferCountIs: z.ZodOptional<z.ZodNumber>;
25242
25243
  stepCountIs: z.ZodOptional<z.ZodNumber>;
25243
25244
  }, z.core.$strip>>;
25244
- tenantId: z.ZodString;
25245
25245
  }, {
25246
25246
  out: {};
25247
25247
  in: {};
@@ -25375,15 +25375,16 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
25375
25375
  agents: z.ZodRecord<z.ZodString, z.ZodObject<{
25376
25376
  name: z.ZodString;
25377
25377
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25378
+ defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25378
25379
  createdAt: z.ZodOptional<z.ZodString>;
25379
25380
  updatedAt: z.ZodOptional<z.ZodString>;
25380
- defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25381
25381
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25382
25382
  id: z.ZodString;
25383
25383
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
25384
25384
  id: z.ZodString;
25385
25385
  name: z.ZodString;
25386
25386
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25387
+ conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
25387
25388
  models: z.ZodOptional<z.ZodObject<{
25388
25389
  base: z.ZodOptional<z.ZodObject<{
25389
25390
  model: z.ZodOptional<z.ZodString>;
@@ -25400,7 +25401,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
25400
25401
  }, z.core.$strip>>;
25401
25402
  createdAt: z.ZodOptional<z.ZodString>;
25402
25403
  updatedAt: z.ZodOptional<z.ZodString>;
25403
- conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
25404
25404
  type: z.ZodLiteral<"internal">;
25405
25405
  canUse: z.ZodArray<z.ZodObject<{
25406
25406
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -25647,8 +25647,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
25647
25647
  description: z.ZodString;
25648
25648
  tenantId: z.ZodString;
25649
25649
  projectId: z.ZodString;
25650
- content: z.ZodString;
25651
25650
  metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
25651
+ content: z.ZodString;
25652
25652
  }>, z.core.$strip>>>;
25653
25653
  dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
25654
25654
  id: z.ZodString;
@@ -25736,10 +25736,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
25736
25736
  name: z.ZodString;
25737
25737
  createdAt: z.ZodOptional<z.ZodString>;
25738
25738
  updatedAt: z.ZodOptional<z.ZodString>;
25739
- credentialStoreId: z.ZodString;
25740
- retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
25741
25739
  toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25742
25740
  userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25741
+ credentialStoreId: z.ZodString;
25742
+ retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
25743
25743
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25744
25744
  type: z.ZodEnum<{
25745
25745
  readonly memory: "memory";
@@ -25757,6 +25757,7 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
25757
25757
  id: z.ZodString;
25758
25758
  name: z.ZodString;
25759
25759
  description: z.ZodNullable<z.ZodString>;
25760
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
25760
25761
  models: z.ZodNullable<z.ZodType<{
25761
25762
  base?: {
25762
25763
  model?: string | undefined;
@@ -25821,7 +25822,6 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
25821
25822
  }>>>;
25822
25823
  createdAt: z.ZodString;
25823
25824
  updatedAt: z.ZodString;
25824
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
25825
25825
  type: z.ZodLiteral<"internal">;
25826
25826
  canUse: z.ZodArray<z.ZodObject<{
25827
25827
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -25850,6 +25850,7 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
25850
25850
  id: z.ZodString;
25851
25851
  name: z.ZodString;
25852
25852
  description: z.ZodNullable<z.ZodString>;
25853
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
25853
25854
  models: z.ZodNullable<z.ZodType<{
25854
25855
  base?: {
25855
25856
  model?: string | undefined;
@@ -25914,7 +25915,6 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
25914
25915
  }>>>;
25915
25916
  createdAt: z.ZodString;
25916
25917
  updatedAt: z.ZodString;
25917
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
25918
25918
  type: z.ZodLiteral<"internal">;
25919
25919
  canUse: z.ZodArray<z.ZodObject<{
25920
25920
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -25949,14 +25949,15 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
25949
25949
  id: z.ZodString;
25950
25950
  name: z.ZodString;
25951
25951
  description: z.ZodNullable<z.ZodString>;
25952
+ defaultSubAgentId: z.ZodNullable<z.ZodString>;
25952
25953
  createdAt: z.ZodString;
25953
25954
  updatedAt: z.ZodString;
25954
- defaultSubAgentId: z.ZodNullable<z.ZodString>;
25955
25955
  contextConfigId: z.ZodNullable<z.ZodString>;
25956
25956
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
25957
25957
  id: z.ZodString;
25958
25958
  name: z.ZodString;
25959
25959
  description: z.ZodNullable<z.ZodString>;
25960
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
25960
25961
  models: z.ZodNullable<z.ZodType<{
25961
25962
  base?: {
25962
25963
  model?: string | undefined;
@@ -26021,7 +26022,6 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
26021
26022
  }>>>;
26022
26023
  createdAt: z.ZodString;
26023
26024
  updatedAt: z.ZodString;
26024
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
26025
26025
  type: z.ZodLiteral<"internal">;
26026
26026
  canUse: z.ZodArray<z.ZodObject<{
26027
26027
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -26095,9 +26095,9 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
26095
26095
  id: z.ZodString;
26096
26096
  name: z.ZodString;
26097
26097
  description: z.ZodNullable<z.ZodString>;
26098
+ agentId: z.ZodString;
26098
26099
  createdAt: z.ZodString;
26099
26100
  updatedAt: z.ZodString;
26100
- agentId: z.ZodString;
26101
26101
  functionId: z.ZodString;
26102
26102
  relationshipId: z.ZodOptional<z.ZodString>;
26103
26103
  }, z.core.$strip>>>;
@@ -26177,9 +26177,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
26177
26177
  id: z.ZodString;
26178
26178
  name: z.ZodString;
26179
26179
  description: z.ZodNullable<z.ZodString>;
26180
+ defaultSubAgentId: z.ZodNullable<z.ZodString>;
26180
26181
  createdAt: z.ZodString;
26181
26182
  updatedAt: z.ZodString;
26182
- defaultSubAgentId: z.ZodNullable<z.ZodString>;
26183
26183
  contextConfigId: z.ZodNullable<z.ZodString>;
26184
26184
  tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
26185
26185
  createdAt: z.ZodString;
@@ -26230,9 +26230,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
26230
26230
  id: z.ZodString;
26231
26231
  name: z.ZodString;
26232
26232
  description: z.ZodNullable<z.ZodString>;
26233
+ agentId: z.ZodString;
26233
26234
  createdAt: z.ZodString;
26234
26235
  updatedAt: z.ZodString;
26235
- agentId: z.ZodString;
26236
26236
  functionId: z.ZodString;
26237
26237
  relationshipId: z.ZodOptional<z.ZodString>;
26238
26238
  }, z.core.$strip>>>;
@@ -26311,6 +26311,7 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
26311
26311
  id: z.ZodString;
26312
26312
  name: z.ZodString;
26313
26313
  description: z.ZodNullable<z.ZodString>;
26314
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
26314
26315
  models: z.ZodNullable<z.ZodType<{
26315
26316
  base?: {
26316
26317
  model?: string | undefined;
@@ -26375,7 +26376,6 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
26375
26376
  }>>>;
26376
26377
  createdAt: z.ZodString;
26377
26378
  updatedAt: z.ZodString;
26378
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
26379
26379
  type: z.ZodLiteral<"internal">;
26380
26380
  canUse: z.ZodArray<z.ZodObject<{
26381
26381
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -26435,14 +26435,15 @@ declare const FullProjectSelectSchema: z.ZodObject<{
26435
26435
  id: z.ZodString;
26436
26436
  name: z.ZodString;
26437
26437
  description: z.ZodNullable<z.ZodString>;
26438
+ defaultSubAgentId: z.ZodNullable<z.ZodString>;
26438
26439
  createdAt: z.ZodString;
26439
26440
  updatedAt: z.ZodString;
26440
- defaultSubAgentId: z.ZodNullable<z.ZodString>;
26441
26441
  contextConfigId: z.ZodNullable<z.ZodString>;
26442
26442
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
26443
26443
  id: z.ZodString;
26444
26444
  name: z.ZodString;
26445
26445
  description: z.ZodNullable<z.ZodString>;
26446
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
26446
26447
  models: z.ZodNullable<z.ZodType<{
26447
26448
  base?: {
26448
26449
  model?: string | undefined;
@@ -26507,7 +26508,6 @@ declare const FullProjectSelectSchema: z.ZodObject<{
26507
26508
  }>>>;
26508
26509
  createdAt: z.ZodString;
26509
26510
  updatedAt: z.ZodString;
26510
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
26511
26511
  type: z.ZodLiteral<"internal">;
26512
26512
  canUse: z.ZodArray<z.ZodObject<{
26513
26513
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -26581,9 +26581,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
26581
26581
  id: z.ZodString;
26582
26582
  name: z.ZodString;
26583
26583
  description: z.ZodNullable<z.ZodString>;
26584
+ agentId: z.ZodString;
26584
26585
  createdAt: z.ZodString;
26585
26586
  updatedAt: z.ZodString;
26586
- agentId: z.ZodString;
26587
26587
  functionId: z.ZodString;
26588
26588
  relationshipId: z.ZodOptional<z.ZodString>;
26589
26589
  }, z.core.$strip>>>;
@@ -26692,9 +26692,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
26692
26692
  id: z.ZodString;
26693
26693
  name: z.ZodString;
26694
26694
  description: z.ZodNullable<z.ZodString>;
26695
+ agentId: z.ZodString;
26695
26696
  createdAt: z.ZodString;
26696
26697
  updatedAt: z.ZodString;
26697
- agentId: z.ZodString;
26698
26698
  functionId: z.ZodString;
26699
26699
  relationshipId: z.ZodOptional<z.ZodString>;
26700
26700
  }, z.core.$strip>>>;
@@ -26841,10 +26841,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
26841
26841
  name: z.ZodString;
26842
26842
  createdAt: z.ZodString;
26843
26843
  updatedAt: z.ZodString;
26844
- credentialStoreId: z.ZodString;
26845
- retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
26846
26844
  toolId: z.ZodNullable<z.ZodString>;
26847
26845
  userId: z.ZodNullable<z.ZodString>;
26846
+ credentialStoreId: z.ZodString;
26847
+ retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
26848
26848
  createdBy: z.ZodNullable<z.ZodString>;
26849
26849
  type: z.ZodEnum<{
26850
26850
  readonly memory: "memory";
@@ -27488,9 +27488,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
27488
27488
  id: z.ZodString;
27489
27489
  name: z.ZodString;
27490
27490
  description: z.ZodNullable<z.ZodString>;
27491
+ agentId: z.ZodString;
27491
27492
  createdAt: z.ZodString;
27492
27493
  updatedAt: z.ZodString;
27493
- agentId: z.ZodString;
27494
27494
  functionId: z.ZodString;
27495
27495
  relationshipId: z.ZodOptional<z.ZodString>;
27496
27496
  }, z.core.$strip>>>;
@@ -27637,10 +27637,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
27637
27637
  name: z.ZodString;
27638
27638
  createdAt: z.ZodString;
27639
27639
  updatedAt: z.ZodString;
27640
- credentialStoreId: z.ZodString;
27641
- retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
27642
27640
  toolId: z.ZodNullable<z.ZodString>;
27643
27641
  userId: z.ZodNullable<z.ZodString>;
27642
+ credentialStoreId: z.ZodString;
27643
+ retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
27644
27644
  createdBy: z.ZodNullable<z.ZodString>;
27645
27645
  type: z.ZodEnum<{
27646
27646
  readonly memory: "memory";
@@ -28227,9 +28227,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
28227
28227
  id: z.ZodString;
28228
28228
  name: z.ZodString;
28229
28229
  description: z.ZodNullable<z.ZodString>;
28230
+ defaultSubAgentId: z.ZodNullable<z.ZodString>;
28230
28231
  createdAt: z.ZodString;
28231
28232
  updatedAt: z.ZodString;
28232
- defaultSubAgentId: z.ZodNullable<z.ZodString>;
28233
28233
  contextConfigId: z.ZodNullable<z.ZodString>;
28234
28234
  tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
28235
28235
  createdAt: z.ZodString;
@@ -28280,9 +28280,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
28280
28280
  id: z.ZodString;
28281
28281
  name: z.ZodString;
28282
28282
  description: z.ZodNullable<z.ZodString>;
28283
+ agentId: z.ZodString;
28283
28284
  createdAt: z.ZodString;
28284
28285
  updatedAt: z.ZodString;
28285
- agentId: z.ZodString;
28286
28286
  functionId: z.ZodString;
28287
28287
  relationshipId: z.ZodOptional<z.ZodString>;
28288
28288
  }, z.core.$strip>>>;
@@ -28361,6 +28361,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
28361
28361
  id: z.ZodString;
28362
28362
  name: z.ZodString;
28363
28363
  description: z.ZodNullable<z.ZodString>;
28364
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
28364
28365
  models: z.ZodNullable<z.ZodType<{
28365
28366
  base?: {
28366
28367
  model?: string | undefined;
@@ -28425,7 +28426,6 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
28425
28426
  }>>>;
28426
28427
  createdAt: z.ZodString;
28427
28428
  updatedAt: z.ZodString;
28428
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
28429
28429
  type: z.ZodLiteral<"internal">;
28430
28430
  canUse: z.ZodArray<z.ZodObject<{
28431
28431
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -28726,9 +28726,9 @@ declare const ApiKeyResponse: z.ZodObject<{
28726
28726
  data: z.ZodObject<{
28727
28727
  id: z.ZodString;
28728
28728
  name: z.ZodNullable<z.ZodString>;
28729
+ agentId: z.ZodString;
28729
28730
  createdAt: z.ZodString;
28730
28731
  updatedAt: z.ZodString;
28731
- agentId: z.ZodString;
28732
28732
  expiresAt: z.ZodNullable<z.ZodString>;
28733
28733
  publicId: z.ZodString;
28734
28734
  keyPrefix: z.ZodString;
@@ -28744,10 +28744,10 @@ declare const CredentialReferenceResponse: z.ZodObject<{
28744
28744
  name: z.ZodString;
28745
28745
  createdAt: z.ZodString;
28746
28746
  updatedAt: z.ZodString;
28747
- credentialStoreId: z.ZodString;
28748
- retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
28749
28747
  toolId: z.ZodNullable<z.ZodString>;
28750
28748
  userId: z.ZodNullable<z.ZodString>;
28749
+ credentialStoreId: z.ZodString;
28750
+ retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
28751
28751
  createdBy: z.ZodNullable<z.ZodString>;
28752
28752
  type: z.ZodEnum<{
28753
28753
  readonly memory: "memory";
@@ -29348,9 +29348,9 @@ declare const FunctionToolResponse: z.ZodObject<{
29348
29348
  id: z.ZodString;
29349
29349
  name: z.ZodString;
29350
29350
  description: z.ZodNullable<z.ZodString>;
29351
+ agentId: z.ZodString;
29351
29352
  createdAt: z.ZodString;
29352
29353
  updatedAt: z.ZodString;
29353
- agentId: z.ZodString;
29354
29354
  functionId: z.ZodString;
29355
29355
  relationshipId: z.ZodOptional<z.ZodString>;
29356
29356
  }, z.core.$strip>;
@@ -29532,9 +29532,9 @@ declare const TriggerResponse: z.ZodObject<{
29532
29532
  }>;
29533
29533
  signature: z.ZodObject<{
29534
29534
  source: z.ZodEnum<{
29535
- header: "header";
29536
29535
  query: "query";
29537
29536
  body: "body";
29537
+ header: "header";
29538
29538
  }>;
29539
29539
  key: z.ZodString;
29540
29540
  prefix: z.ZodOptional<z.ZodString>;
@@ -29543,8 +29543,8 @@ declare const TriggerResponse: z.ZodObject<{
29543
29543
  signedComponents: z.ZodArray<z.ZodObject<{
29544
29544
  source: z.ZodEnum<{
29545
29545
  literal: "literal";
29546
- header: "header";
29547
29546
  body: "body";
29547
+ header: "header";
29548
29548
  }>;
29549
29549
  key: z.ZodOptional<z.ZodString>;
29550
29550
  value: z.ZodOptional<z.ZodString>;
@@ -29875,9 +29875,9 @@ declare const ApiKeyListResponse: z.ZodObject<{
29875
29875
  data: z.ZodArray<z.ZodObject<{
29876
29876
  id: z.ZodString;
29877
29877
  name: z.ZodNullable<z.ZodString>;
29878
+ agentId: z.ZodString;
29878
29879
  createdAt: z.ZodString;
29879
29880
  updatedAt: z.ZodString;
29880
- agentId: z.ZodString;
29881
29881
  expiresAt: z.ZodNullable<z.ZodString>;
29882
29882
  publicId: z.ZodString;
29883
29883
  keyPrefix: z.ZodString;
@@ -29899,10 +29899,10 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
29899
29899
  name: z.ZodString;
29900
29900
  createdAt: z.ZodString;
29901
29901
  updatedAt: z.ZodString;
29902
- credentialStoreId: z.ZodString;
29903
- retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
29904
29902
  toolId: z.ZodNullable<z.ZodString>;
29905
29903
  userId: z.ZodNullable<z.ZodString>;
29904
+ credentialStoreId: z.ZodString;
29905
+ retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
29906
29906
  createdBy: z.ZodNullable<z.ZodString>;
29907
29907
  type: z.ZodEnum<{
29908
29908
  readonly memory: "memory";
@@ -30515,9 +30515,9 @@ declare const FunctionToolListResponse: z.ZodObject<{
30515
30515
  id: z.ZodString;
30516
30516
  name: z.ZodString;
30517
30517
  description: z.ZodNullable<z.ZodString>;
30518
+ agentId: z.ZodString;
30518
30519
  createdAt: z.ZodString;
30519
30520
  updatedAt: z.ZodString;
30520
- agentId: z.ZodString;
30521
30521
  functionId: z.ZodString;
30522
30522
  relationshipId: z.ZodOptional<z.ZodString>;
30523
30523
  }, z.core.$strip>>;
@@ -30767,9 +30767,9 @@ declare const TriggerListResponse: z.ZodObject<{
30767
30767
  }>;
30768
30768
  signature: z.ZodObject<{
30769
30769
  source: z.ZodEnum<{
30770
- header: "header";
30771
30770
  query: "query";
30772
30771
  body: "body";
30772
+ header: "header";
30773
30773
  }>;
30774
30774
  key: z.ZodString;
30775
30775
  prefix: z.ZodOptional<z.ZodString>;
@@ -30778,8 +30778,8 @@ declare const TriggerListResponse: z.ZodObject<{
30778
30778
  signedComponents: z.ZodArray<z.ZodObject<{
30779
30779
  source: z.ZodEnum<{
30780
30780
  literal: "literal";
30781
- header: "header";
30782
30781
  body: "body";
30782
+ header: "header";
30783
30783
  }>;
30784
30784
  key: z.ZodOptional<z.ZodString>;
30785
30785
  value: z.ZodOptional<z.ZodString>;
@@ -30854,9 +30854,9 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
30854
30854
  }>;
30855
30855
  signature: z.ZodObject<{
30856
30856
  source: z.ZodEnum<{
30857
- header: "header";
30858
30857
  query: "query";
30859
30858
  body: "body";
30859
+ header: "header";
30860
30860
  }>;
30861
30861
  key: z.ZodString;
30862
30862
  prefix: z.ZodOptional<z.ZodString>;
@@ -30865,8 +30865,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
30865
30865
  signedComponents: z.ZodArray<z.ZodObject<{
30866
30866
  source: z.ZodEnum<{
30867
30867
  literal: "literal";
30868
- header: "header";
30869
30868
  body: "body";
30869
+ header: "header";
30870
30870
  }>;
30871
30871
  key: z.ZodOptional<z.ZodString>;
30872
30872
  value: z.ZodOptional<z.ZodString>;
@@ -30915,9 +30915,9 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
30915
30915
  }>;
30916
30916
  signature: z.ZodObject<{
30917
30917
  source: z.ZodEnum<{
30918
- header: "header";
30919
30918
  query: "query";
30920
30919
  body: "body";
30920
+ header: "header";
30921
30921
  }>;
30922
30922
  key: z.ZodString;
30923
30923
  prefix: z.ZodOptional<z.ZodString>;
@@ -30926,8 +30926,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
30926
30926
  signedComponents: z.ZodArray<z.ZodObject<{
30927
30927
  source: z.ZodEnum<{
30928
30928
  literal: "literal";
30929
- header: "header";
30930
30929
  body: "body";
30930
+ header: "header";
30931
30931
  }>;
30932
30932
  key: z.ZodOptional<z.ZodString>;
30933
30933
  value: z.ZodOptional<z.ZodString>;
@@ -31199,8 +31199,8 @@ declare const SubAgentSkillWithIndexArrayResponse: z.ZodObject<{
31199
31199
  description: z.ZodString;
31200
31200
  createdAt: z.ZodString;
31201
31201
  updatedAt: z.ZodString;
31202
- content: z.ZodString;
31203
31202
  metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
31203
+ content: z.ZodString;
31204
31204
  subAgentSkillId: z.ZodString;
31205
31205
  subAgentId: z.ZodString;
31206
31206
  index: z.ZodInt;
@@ -31233,15 +31233,16 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
31233
31233
  agents: z.ZodRecord<z.ZodString, z.ZodObject<{
31234
31234
  name: z.ZodString;
31235
31235
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31236
+ defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31236
31237
  createdAt: z.ZodOptional<z.ZodString>;
31237
31238
  updatedAt: z.ZodOptional<z.ZodString>;
31238
- defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31239
31239
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31240
31240
  id: z.ZodString;
31241
31241
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
31242
31242
  id: z.ZodString;
31243
31243
  name: z.ZodString;
31244
31244
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31245
+ conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
31245
31246
  models: z.ZodOptional<z.ZodObject<{
31246
31247
  base: z.ZodOptional<z.ZodObject<{
31247
31248
  model: z.ZodOptional<z.ZodString>;
@@ -31258,7 +31259,6 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
31258
31259
  }, z.core.$strip>>;
31259
31260
  createdAt: z.ZodOptional<z.ZodString>;
31260
31261
  updatedAt: z.ZodOptional<z.ZodString>;
31261
- conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
31262
31262
  type: z.ZodLiteral<"internal">;
31263
31263
  canUse: z.ZodArray<z.ZodObject<{
31264
31264
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -31505,8 +31505,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
31505
31505
  description: z.ZodString;
31506
31506
  tenantId: z.ZodString;
31507
31507
  projectId: z.ZodString;
31508
- content: z.ZodString;
31509
31508
  metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
31509
+ content: z.ZodString;
31510
31510
  }>, z.core.$strip>>>;
31511
31511
  dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
31512
31512
  id: z.ZodString;
@@ -31594,10 +31594,10 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
31594
31594
  name: z.ZodString;
31595
31595
  createdAt: z.ZodOptional<z.ZodString>;
31596
31596
  updatedAt: z.ZodOptional<z.ZodString>;
31597
- credentialStoreId: z.ZodString;
31598
- retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
31599
31597
  toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31600
31598
  userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31599
+ credentialStoreId: z.ZodString;
31600
+ retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
31601
31601
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31602
31602
  type: z.ZodEnum<{
31603
31603
  readonly memory: "memory";
@@ -31641,14 +31641,15 @@ declare const FullProjectSelectResponse: z.ZodObject<{
31641
31641
  id: z.ZodString;
31642
31642
  name: z.ZodString;
31643
31643
  description: z.ZodNullable<z.ZodString>;
31644
+ defaultSubAgentId: z.ZodNullable<z.ZodString>;
31644
31645
  createdAt: z.ZodString;
31645
31646
  updatedAt: z.ZodString;
31646
- defaultSubAgentId: z.ZodNullable<z.ZodString>;
31647
31647
  contextConfigId: z.ZodNullable<z.ZodString>;
31648
31648
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
31649
31649
  id: z.ZodString;
31650
31650
  name: z.ZodString;
31651
31651
  description: z.ZodNullable<z.ZodString>;
31652
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
31652
31653
  models: z.ZodNullable<z.ZodType<{
31653
31654
  base?: {
31654
31655
  model?: string | undefined;
@@ -31713,7 +31714,6 @@ declare const FullProjectSelectResponse: z.ZodObject<{
31713
31714
  }>>>;
31714
31715
  createdAt: z.ZodString;
31715
31716
  updatedAt: z.ZodString;
31716
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
31717
31717
  type: z.ZodLiteral<"internal">;
31718
31718
  canUse: z.ZodArray<z.ZodObject<{
31719
31719
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -31787,9 +31787,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
31787
31787
  id: z.ZodString;
31788
31788
  name: z.ZodString;
31789
31789
  description: z.ZodNullable<z.ZodString>;
31790
+ agentId: z.ZodString;
31790
31791
  createdAt: z.ZodString;
31791
31792
  updatedAt: z.ZodString;
31792
- agentId: z.ZodString;
31793
31793
  functionId: z.ZodString;
31794
31794
  relationshipId: z.ZodOptional<z.ZodString>;
31795
31795
  }, z.core.$strip>>>;
@@ -31898,9 +31898,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
31898
31898
  id: z.ZodString;
31899
31899
  name: z.ZodString;
31900
31900
  description: z.ZodNullable<z.ZodString>;
31901
+ agentId: z.ZodString;
31901
31902
  createdAt: z.ZodString;
31902
31903
  updatedAt: z.ZodString;
31903
- agentId: z.ZodString;
31904
31904
  functionId: z.ZodString;
31905
31905
  relationshipId: z.ZodOptional<z.ZodString>;
31906
31906
  }, z.core.$strip>>>;
@@ -32047,10 +32047,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
32047
32047
  name: z.ZodString;
32048
32048
  createdAt: z.ZodString;
32049
32049
  updatedAt: z.ZodString;
32050
- credentialStoreId: z.ZodString;
32051
- retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
32052
32050
  toolId: z.ZodNullable<z.ZodString>;
32053
32051
  userId: z.ZodNullable<z.ZodString>;
32052
+ credentialStoreId: z.ZodString;
32053
+ retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
32054
32054
  createdBy: z.ZodNullable<z.ZodString>;
32055
32055
  type: z.ZodEnum<{
32056
32056
  readonly memory: "memory";
@@ -32696,9 +32696,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
32696
32696
  id: z.ZodString;
32697
32697
  name: z.ZodString;
32698
32698
  description: z.ZodNullable<z.ZodString>;
32699
+ agentId: z.ZodString;
32699
32700
  createdAt: z.ZodString;
32700
32701
  updatedAt: z.ZodString;
32701
- agentId: z.ZodString;
32702
32702
  functionId: z.ZodString;
32703
32703
  relationshipId: z.ZodOptional<z.ZodString>;
32704
32704
  }, z.core.$strip>>>;
@@ -32845,10 +32845,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
32845
32845
  name: z.ZodString;
32846
32846
  createdAt: z.ZodString;
32847
32847
  updatedAt: z.ZodString;
32848
- credentialStoreId: z.ZodString;
32849
- retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
32850
32848
  toolId: z.ZodNullable<z.ZodString>;
32851
32849
  userId: z.ZodNullable<z.ZodString>;
32850
+ credentialStoreId: z.ZodString;
32851
+ retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
32852
32852
  createdBy: z.ZodNullable<z.ZodString>;
32853
32853
  type: z.ZodEnum<{
32854
32854
  readonly memory: "memory";
@@ -33435,9 +33435,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
33435
33435
  id: z.ZodString;
33436
33436
  name: z.ZodString;
33437
33437
  description: z.ZodNullable<z.ZodString>;
33438
+ defaultSubAgentId: z.ZodNullable<z.ZodString>;
33438
33439
  createdAt: z.ZodString;
33439
33440
  updatedAt: z.ZodString;
33440
- defaultSubAgentId: z.ZodNullable<z.ZodString>;
33441
33441
  contextConfigId: z.ZodNullable<z.ZodString>;
33442
33442
  tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
33443
33443
  createdAt: z.ZodString;
@@ -33488,9 +33488,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
33488
33488
  id: z.ZodString;
33489
33489
  name: z.ZodString;
33490
33490
  description: z.ZodNullable<z.ZodString>;
33491
+ agentId: z.ZodString;
33491
33492
  createdAt: z.ZodString;
33492
33493
  updatedAt: z.ZodString;
33493
- agentId: z.ZodString;
33494
33494
  functionId: z.ZodString;
33495
33495
  relationshipId: z.ZodOptional<z.ZodString>;
33496
33496
  }, z.core.$strip>>>;
@@ -33569,6 +33569,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
33569
33569
  id: z.ZodString;
33570
33570
  name: z.ZodString;
33571
33571
  description: z.ZodNullable<z.ZodString>;
33572
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
33572
33573
  models: z.ZodNullable<z.ZodType<{
33573
33574
  base?: {
33574
33575
  model?: string | undefined;
@@ -33633,7 +33634,6 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
33633
33634
  }>>>;
33634
33635
  createdAt: z.ZodString;
33635
33636
  updatedAt: z.ZodString;
33636
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
33637
33637
  type: z.ZodLiteral<"internal">;
33638
33638
  canUse: z.ZodArray<z.ZodObject<{
33639
33639
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -33674,15 +33674,16 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
33674
33674
  data: z.ZodObject<{
33675
33675
  name: z.ZodString;
33676
33676
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33677
+ defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33677
33678
  createdAt: z.ZodOptional<z.ZodString>;
33678
33679
  updatedAt: z.ZodOptional<z.ZodString>;
33679
- defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33680
33680
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33681
33681
  id: z.ZodString;
33682
33682
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
33683
33683
  id: z.ZodString;
33684
33684
  name: z.ZodString;
33685
33685
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33686
+ conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
33686
33687
  models: z.ZodOptional<z.ZodObject<{
33687
33688
  base: z.ZodOptional<z.ZodObject<{
33688
33689
  model: z.ZodOptional<z.ZodString>;
@@ -33699,7 +33700,6 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
33699
33700
  }, z.core.$strip>>;
33700
33701
  createdAt: z.ZodOptional<z.ZodString>;
33701
33702
  updatedAt: z.ZodOptional<z.ZodString>;
33702
- conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
33703
33703
  type: z.ZodLiteral<"internal">;
33704
33704
  canUse: z.ZodArray<z.ZodObject<{
33705
33705
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -33886,14 +33886,15 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
33886
33886
  id: z.ZodString;
33887
33887
  name: z.ZodString;
33888
33888
  description: z.ZodNullable<z.ZodString>;
33889
+ defaultSubAgentId: z.ZodNullable<z.ZodString>;
33889
33890
  createdAt: z.ZodString;
33890
33891
  updatedAt: z.ZodString;
33891
- defaultSubAgentId: z.ZodNullable<z.ZodString>;
33892
33892
  contextConfigId: z.ZodNullable<z.ZodString>;
33893
33893
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
33894
33894
  id: z.ZodString;
33895
33895
  name: z.ZodString;
33896
33896
  description: z.ZodNullable<z.ZodString>;
33897
+ conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
33897
33898
  models: z.ZodNullable<z.ZodType<{
33898
33899
  base?: {
33899
33900
  model?: string | undefined;
@@ -33958,7 +33959,6 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
33958
33959
  }>>>;
33959
33960
  createdAt: z.ZodString;
33960
33961
  updatedAt: z.ZodString;
33961
- conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
33962
33962
  type: z.ZodLiteral<"internal">;
33963
33963
  canUse: z.ZodArray<z.ZodObject<{
33964
33964
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -34032,9 +34032,9 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
34032
34032
  id: z.ZodString;
34033
34033
  name: z.ZodString;
34034
34034
  description: z.ZodNullable<z.ZodString>;
34035
+ agentId: z.ZodString;
34035
34036
  createdAt: z.ZodString;
34036
34037
  updatedAt: z.ZodString;
34037
- agentId: z.ZodString;
34038
34038
  functionId: z.ZodString;
34039
34039
  relationshipId: z.ZodOptional<z.ZodString>;
34040
34040
  }, z.core.$strip>>>;
@@ -34744,8 +34744,8 @@ declare const WorkAppGitHubInstallationStatusSchema: z.ZodEnum<{
34744
34744
  disconnected: "disconnected";
34745
34745
  }>;
34746
34746
  declare const WorkAppGitHubAccountTypeSchema: z.ZodEnum<{
34747
- Organization: "Organization";
34748
34747
  User: "User";
34748
+ Organization: "Organization";
34749
34749
  }>;
34750
34750
  declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod3.BuildSchema<"select", {
34751
34751
  createdAt: drizzle_orm_pg_core83.PgColumn<{
@@ -34840,7 +34840,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod3.BuildSchema<"s
34840
34840
  tableName: "work_app_github_installations";
34841
34841
  dataType: "string";
34842
34842
  columnType: "PgVarchar";
34843
- data: "Organization" | "User";
34843
+ data: "User" | "Organization";
34844
34844
  driverParam: string;
34845
34845
  notNull: true;
34846
34846
  hasDefault: false;
@@ -34853,7 +34853,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod3.BuildSchema<"s
34853
34853
  generated: undefined;
34854
34854
  }, {}, {
34855
34855
  length: 20;
34856
- $type: "Organization" | "User";
34856
+ $type: "User" | "Organization";
34857
34857
  }>;
34858
34858
  status: drizzle_orm_pg_core83.PgColumn<{
34859
34859
  name: "status";
@@ -35006,7 +35006,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod3.BuildSchema<"s
35006
35006
  tableName: "work_app_github_installations";
35007
35007
  dataType: "string";
35008
35008
  columnType: "PgVarchar";
35009
- data: "Organization" | "User";
35009
+ data: "User" | "Organization";
35010
35010
  driverParam: string;
35011
35011
  notNull: true;
35012
35012
  hasDefault: false;
@@ -35019,7 +35019,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod3.BuildSchema<"s
35019
35019
  generated: undefined;
35020
35020
  }, {}, {
35021
35021
  length: 20;
35022
- $type: "Organization" | "User";
35022
+ $type: "User" | "Organization";
35023
35023
  }>;
35024
35024
  status: drizzle_orm_pg_core83.PgColumn<{
35025
35025
  name: "status";
@@ -35087,8 +35087,8 @@ declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
35087
35087
  installationId: z.ZodString;
35088
35088
  accountLogin: z.ZodString;
35089
35089
  accountType: z.ZodEnum<{
35090
- Organization: "Organization";
35091
35090
  User: "User";
35091
+ Organization: "Organization";
35092
35092
  }>;
35093
35093
  status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
35094
35094
  pending: "pending";
@@ -35118,8 +35118,8 @@ declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<OmitGenerate
35118
35118
  installationId: z.ZodString;
35119
35119
  accountLogin: z.ZodString;
35120
35120
  accountType: z.ZodEnum<{
35121
- Organization: "Organization";
35122
35121
  User: "User";
35122
+ Organization: "Organization";
35123
35123
  }>;
35124
35124
  status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
35125
35125
  pending: "pending";