@inkeep/agents-core 0.0.0-dev-20260127214229 → 0.0.0-dev-20260128035734

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.
@@ -4936,7 +4936,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert",
4936
4936
  }, {}, {
4937
4937
  length: 256;
4938
4938
  }>;
4939
- }, "tenantId" | "projectId" | "id" | "agentId" | "createdAt" | "status" | "triggerId" | "conversationId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
4939
+ }, "tenantId" | "projectId" | "id" | "agentId" | "createdAt" | "status" | "conversationId" | "triggerId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
4940
4940
  declare const TriggerInvocationUpdateSchema: z.ZodObject<{
4941
4941
  triggerId: z.ZodOptional<z.ZodString>;
4942
4942
  conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -4969,8 +4969,8 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<OmitAgentScope<{
4969
4969
  declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
4970
4970
  createdAt: z.ZodOptional<z.ZodString>;
4971
4971
  status: z.ZodOptional<z.ZodString>;
4972
- triggerId: z.ZodString;
4973
4972
  conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4973
+ triggerId: z.ZodString;
4974
4974
  requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
4975
4975
  transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
4976
4976
  errorMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4980,8 +4980,8 @@ declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
4980
4980
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4981
4981
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
4982
4982
  status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
4983
- triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4984
4983
  conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
4984
+ triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4985
4985
  requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
4986
4986
  transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
4987
4987
  errorMessage: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
@@ -5046,7 +5046,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
5046
5046
  dataType: "json";
5047
5047
  columnType: "PgJsonb";
5048
5048
  data: {
5049
- type: "commit" | "tag" | "branch";
5049
+ type: "tag" | "commit" | "branch";
5050
5050
  name: string;
5051
5051
  hash: string;
5052
5052
  };
@@ -5062,7 +5062,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
5062
5062
  generated: undefined;
5063
5063
  }, {}, {
5064
5064
  $type: {
5065
- type: "commit" | "tag" | "branch";
5065
+ type: "tag" | "commit" | "branch";
5066
5066
  name: string;
5067
5067
  hash: string;
5068
5068
  };
@@ -5260,7 +5260,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
5260
5260
  dataType: "json";
5261
5261
  columnType: "PgJsonb";
5262
5262
  data: {
5263
- type: "commit" | "tag" | "branch";
5263
+ type: "tag" | "commit" | "branch";
5264
5264
  name: string;
5265
5265
  hash: string;
5266
5266
  };
@@ -5276,7 +5276,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
5276
5276
  generated: undefined;
5277
5277
  }, {}, {
5278
5278
  $type: {
5279
- type: "commit" | "tag" | "branch";
5279
+ type: "tag" | "commit" | "branch";
5280
5280
  name: string;
5281
5281
  hash: string;
5282
5282
  };
@@ -5429,8 +5429,8 @@ declare const TaskInsertSchema: z.ZodObject<{
5429
5429
  conversationId: z.ZodOptional<z.ZodString>;
5430
5430
  ref: z.ZodObject<{
5431
5431
  type: z.ZodEnum<{
5432
- commit: "commit";
5433
5432
  tag: "tag";
5433
+ commit: "commit";
5434
5434
  branch: "branch";
5435
5435
  }>;
5436
5436
  name: z.ZodString;
@@ -5454,8 +5454,8 @@ declare const TaskUpdateSchema: z.ZodObject<{
5454
5454
  conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5455
5455
  ref: z.ZodOptional<z.ZodObject<{
5456
5456
  type: z.ZodEnum<{
5457
- commit: "commit";
5458
5457
  tag: "tag";
5458
+ commit: "commit";
5459
5459
  branch: "branch";
5460
5460
  }>;
5461
5461
  name: z.ZodString;
@@ -5470,19 +5470,19 @@ declare const TaskApiSelectSchema: z.ZodObject<OmitProjectScope<{
5470
5470
  updatedAt: z.ZodString;
5471
5471
  contextId: z.ZodString;
5472
5472
  ref: z.ZodNullable<z.ZodType<{
5473
- type: "commit" | "tag" | "branch";
5473
+ type: "tag" | "commit" | "branch";
5474
5474
  name: string;
5475
5475
  hash: string;
5476
5476
  }, {
5477
- type: "commit" | "tag" | "branch";
5477
+ type: "tag" | "commit" | "branch";
5478
5478
  name: string;
5479
5479
  hash: string;
5480
5480
  }, z.core.$ZodTypeInternals<{
5481
- type: "commit" | "tag" | "branch";
5481
+ type: "tag" | "commit" | "branch";
5482
5482
  name: string;
5483
5483
  hash: string;
5484
5484
  }, {
5485
- type: "commit" | "tag" | "branch";
5485
+ type: "tag" | "commit" | "branch";
5486
5486
  name: string;
5487
5487
  hash: string;
5488
5488
  }>>>;
@@ -5508,8 +5508,8 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
5508
5508
  conversationId: z.ZodOptional<z.ZodString>;
5509
5509
  ref: z.ZodObject<{
5510
5510
  type: z.ZodEnum<{
5511
- commit: "commit";
5512
5511
  tag: "tag";
5512
+ commit: "commit";
5513
5513
  branch: "branch";
5514
5514
  }>;
5515
5515
  name: z.ZodString;
@@ -5522,19 +5522,19 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
5522
5522
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5523
5523
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5524
5524
  metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
5525
+ subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5525
5526
  ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
5526
5527
  type: z.ZodEnum<{
5527
- commit: "commit";
5528
5528
  tag: "tag";
5529
+ commit: "commit";
5529
5530
  branch: "branch";
5530
5531
  }>;
5531
5532
  name: z.ZodString;
5532
5533
  hash: z.ZodString;
5533
5534
  }, z.core.$strip>>>;
5534
5535
  status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5535
- conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5536
- subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5537
5536
  contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5537
+ conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5538
5538
  }, z.core.$strip>;
5539
5539
  declare const TaskRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
5540
5540
  createdAt: drizzle_orm_pg_core664.PgColumn<{
@@ -6580,7 +6580,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
6580
6580
  dataType: "json";
6581
6581
  columnType: "PgJsonb";
6582
6582
  data: {
6583
- type: "commit" | "tag" | "branch";
6583
+ type: "tag" | "commit" | "branch";
6584
6584
  name: string;
6585
6585
  hash: string;
6586
6586
  };
@@ -6596,7 +6596,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
6596
6596
  generated: undefined;
6597
6597
  }, {}, {
6598
6598
  $type: {
6599
- type: "commit" | "tag" | "branch";
6599
+ type: "tag" | "commit" | "branch";
6600
6600
  name: string;
6601
6601
  hash: string;
6602
6602
  };
@@ -6809,7 +6809,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
6809
6809
  dataType: "json";
6810
6810
  columnType: "PgJsonb";
6811
6811
  data: {
6812
- type: "commit" | "tag" | "branch";
6812
+ type: "tag" | "commit" | "branch";
6813
6813
  name: string;
6814
6814
  hash: string;
6815
6815
  };
@@ -6825,7 +6825,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
6825
6825
  generated: undefined;
6826
6826
  }, {}, {
6827
6827
  $type: {
6828
- type: "commit" | "tag" | "branch";
6828
+ type: "tag" | "commit" | "branch";
6829
6829
  name: string;
6830
6830
  hash: string;
6831
6831
  };
@@ -6956,8 +6956,8 @@ declare const ConversationInsertSchema: z.ZodObject<{
6956
6956
  contextConfigId: z.ZodOptional<z.ZodString>;
6957
6957
  ref: z.ZodObject<{
6958
6958
  type: z.ZodEnum<{
6959
- commit: "commit";
6960
6959
  tag: "tag";
6960
+ commit: "commit";
6961
6961
  branch: "branch";
6962
6962
  }>;
6963
6963
  name: z.ZodString;
@@ -6982,8 +6982,8 @@ declare const ConversationUpdateSchema: z.ZodObject<{
6982
6982
  contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6983
6983
  ref: z.ZodOptional<z.ZodObject<{
6984
6984
  type: z.ZodEnum<{
6985
- commit: "commit";
6986
6985
  tag: "tag";
6986
+ commit: "commit";
6987
6987
  branch: "branch";
6988
6988
  }>;
6989
6989
  name: z.ZodString;
@@ -7000,19 +7000,19 @@ declare const ConversationApiSelectSchema: z.ZodObject<OmitProjectScope<{
7000
7000
  agentId: z.ZodNullable<z.ZodString>;
7001
7001
  activeSubAgentId: z.ZodString;
7002
7002
  ref: z.ZodNullable<z.ZodType<{
7003
- type: "commit" | "tag" | "branch";
7003
+ type: "tag" | "commit" | "branch";
7004
7004
  name: string;
7005
7005
  hash: string;
7006
7006
  }, {
7007
- type: "commit" | "tag" | "branch";
7007
+ type: "tag" | "commit" | "branch";
7008
7008
  name: string;
7009
7009
  hash: string;
7010
7010
  }, z.core.$ZodTypeInternals<{
7011
- type: "commit" | "tag" | "branch";
7011
+ type: "tag" | "commit" | "branch";
7012
7012
  name: string;
7013
7013
  hash: string;
7014
7014
  }, {
7015
- type: "commit" | "tag" | "branch";
7015
+ type: "tag" | "commit" | "branch";
7016
7016
  name: string;
7017
7017
  hash: string;
7018
7018
  }>>>;
@@ -7038,8 +7038,8 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
7038
7038
  contextConfigId: z.ZodOptional<z.ZodString>;
7039
7039
  ref: z.ZodObject<{
7040
7040
  type: z.ZodEnum<{
7041
- commit: "commit";
7042
7041
  tag: "tag";
7042
+ commit: "commit";
7043
7043
  branch: "branch";
7044
7044
  }>;
7045
7045
  name: z.ZodString;
@@ -7057,8 +7057,8 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
7057
7057
  contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
7058
7058
  ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
7059
7059
  type: z.ZodEnum<{
7060
- commit: "commit";
7061
7060
  tag: "tag";
7061
+ commit: "commit";
7062
7062
  branch: "branch";
7063
7063
  }>;
7064
7064
  name: z.ZodString;
@@ -8077,7 +8077,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
8077
8077
  dataType: "json";
8078
8078
  columnType: "PgJsonb";
8079
8079
  data: {
8080
- type: "commit" | "tag" | "branch";
8080
+ type: "tag" | "commit" | "branch";
8081
8081
  name: string;
8082
8082
  hash: string;
8083
8083
  };
@@ -8093,7 +8093,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
8093
8093
  generated: undefined;
8094
8094
  }, {}, {
8095
8095
  $type: {
8096
- type: "commit" | "tag" | "branch";
8096
+ type: "tag" | "commit" | "branch";
8097
8097
  name: string;
8098
8098
  hash: string;
8099
8099
  };
@@ -8327,7 +8327,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
8327
8327
  dataType: "json";
8328
8328
  columnType: "PgJsonb";
8329
8329
  data: {
8330
- type: "commit" | "tag" | "branch";
8330
+ type: "tag" | "commit" | "branch";
8331
8331
  name: string;
8332
8332
  hash: string;
8333
8333
  };
@@ -8343,7 +8343,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
8343
8343
  generated: undefined;
8344
8344
  }, {}, {
8345
8345
  $type: {
8346
- type: "commit" | "tag" | "branch";
8346
+ type: "tag" | "commit" | "branch";
8347
8347
  name: string;
8348
8348
  hash: string;
8349
8349
  };
@@ -8495,8 +8495,8 @@ declare const ContextCacheInsertSchema: z.ZodObject<{
8495
8495
  id: z.ZodString;
8496
8496
  ref: z.ZodObject<{
8497
8497
  type: z.ZodEnum<{
8498
- commit: "commit";
8499
8498
  tag: "tag";
8499
+ commit: "commit";
8500
8500
  branch: "branch";
8501
8501
  }>;
8502
8502
  name: z.ZodString;
@@ -8521,8 +8521,8 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
8521
8521
  id: z.ZodOptional<z.ZodString>;
8522
8522
  ref: z.ZodOptional<z.ZodObject<{
8523
8523
  type: z.ZodEnum<{
8524
- commit: "commit";
8525
8524
  tag: "tag";
8525
+ commit: "commit";
8526
8526
  branch: "branch";
8527
8527
  }>;
8528
8528
  name: z.ZodString;
@@ -8539,19 +8539,19 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<OmitProjectScope<{
8539
8539
  contextConfigId: z.ZodString;
8540
8540
  contextVariableKey: z.ZodString;
8541
8541
  ref: z.ZodNullable<z.ZodType<{
8542
- type: "commit" | "tag" | "branch";
8542
+ type: "tag" | "commit" | "branch";
8543
8543
  name: string;
8544
8544
  hash: string;
8545
8545
  }, {
8546
- type: "commit" | "tag" | "branch";
8546
+ type: "tag" | "commit" | "branch";
8547
8547
  name: string;
8548
8548
  hash: string;
8549
8549
  }, z.core.$ZodTypeInternals<{
8550
- type: "commit" | "tag" | "branch";
8550
+ type: "tag" | "commit" | "branch";
8551
8551
  name: string;
8552
8552
  hash: string;
8553
8553
  }, {
8554
- type: "commit" | "tag" | "branch";
8554
+ type: "tag" | "commit" | "branch";
8555
8555
  name: string;
8556
8556
  hash: string;
8557
8557
  }>>>;
@@ -8578,8 +8578,8 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
8578
8578
  id: z.ZodString;
8579
8579
  ref: z.ZodObject<{
8580
8580
  type: z.ZodEnum<{
8581
- commit: "commit";
8582
8581
  tag: "tag";
8582
+ commit: "commit";
8583
8583
  branch: "branch";
8584
8584
  }>;
8585
8585
  name: z.ZodString;
@@ -8594,8 +8594,8 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
8594
8594
  contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8595
8595
  ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
8596
8596
  type: z.ZodEnum<{
8597
- commit: "commit";
8598
8597
  tag: "tag";
8598
+ commit: "commit";
8599
8599
  branch: "branch";
8600
8600
  }>;
8601
8601
  name: z.ZodString;
@@ -8934,15 +8934,15 @@ declare const DatasetRunApiInsertSchema: z.ZodObject<{
8934
8934
  createdAt: z.ZodOptional<z.ZodString>;
8935
8935
  updatedAt: z.ZodOptional<z.ZodString>;
8936
8936
  datasetId: z.ZodString;
8937
- evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8938
8937
  datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8938
+ evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8939
8939
  }, z.core.$strip>;
8940
8940
  declare const DatasetRunApiUpdateSchema: z.ZodObject<{
8941
8941
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
8942
8942
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
8943
8943
  datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8944
- evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
8945
8944
  datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
8945
+ evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
8946
8946
  }, z.core.$strip>;
8947
8947
  declare const DatasetRunConversationRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
8948
8948
  createdAt: drizzle_orm_pg_core664.PgColumn<{
@@ -9649,16 +9649,16 @@ declare const EvaluationResultApiInsertSchema: z.ZodObject<{
9649
9649
  output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
9650
9650
  createdAt: z.ZodOptional<z.ZodString>;
9651
9651
  updatedAt: z.ZodOptional<z.ZodString>;
9652
- conversationId: z.ZodString;
9653
9652
  evaluatorId: z.ZodString;
9653
+ conversationId: z.ZodString;
9654
9654
  evaluationRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9655
9655
  }, z.core.$strip>;
9656
9656
  declare const EvaluationResultApiUpdateSchema: z.ZodObject<{
9657
9657
  output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
9658
9658
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
9659
9659
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
9660
- conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9661
9660
  evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9661
+ conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9662
9662
  evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
9663
9663
  }, z.core.$strip>;
9664
9664
  declare const EvaluationRunSelectSchema: drizzle_zod19.BuildSchema<"select", {
@@ -11086,7 +11086,7 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: driz
11086
11086
  name: "evaluation_run_config_id";
11087
11087
  tableName: "evaluation_run_config_evaluation_suite_config_relations";
11088
11088
  dataType: "string";
11089
- columnType: "PgText";
11089
+ columnType: "PgVarchar";
11090
11090
  data: string;
11091
11091
  driverParam: string;
11092
11092
  notNull: true;
@@ -11098,12 +11098,14 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: driz
11098
11098
  baseColumn: never;
11099
11099
  identity: undefined;
11100
11100
  generated: undefined;
11101
- }, {}, {}>;
11101
+ }, {}, {
11102
+ length: 256;
11103
+ }>;
11102
11104
  evaluationSuiteConfigId: drizzle_orm_pg_core664.PgColumn<{
11103
11105
  name: "evaluation_suite_config_id";
11104
11106
  tableName: "evaluation_run_config_evaluation_suite_config_relations";
11105
11107
  dataType: "string";
11106
- columnType: "PgText";
11108
+ columnType: "PgVarchar";
11107
11109
  data: string;
11108
11110
  driverParam: string;
11109
11111
  notNull: true;
@@ -11115,7 +11117,9 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: driz
11115
11117
  baseColumn: never;
11116
11118
  identity: undefined;
11117
11119
  generated: undefined;
11118
- }, {}, {}>;
11120
+ }, {}, {
11121
+ length: 256;
11122
+ }>;
11119
11123
  projectId: drizzle_orm_pg_core664.PgColumn<{
11120
11124
  name: "project_id";
11121
11125
  tableName: "evaluation_run_config_evaluation_suite_config_relations";
@@ -11212,7 +11216,7 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: driz
11212
11216
  name: "evaluation_run_config_id";
11213
11217
  tableName: "evaluation_run_config_evaluation_suite_config_relations";
11214
11218
  dataType: "string";
11215
- columnType: "PgText";
11219
+ columnType: "PgVarchar";
11216
11220
  data: string;
11217
11221
  driverParam: string;
11218
11222
  notNull: true;
@@ -11224,12 +11228,14 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: driz
11224
11228
  baseColumn: never;
11225
11229
  identity: undefined;
11226
11230
  generated: undefined;
11227
- }, {}, {}>;
11231
+ }, {}, {
11232
+ length: 256;
11233
+ }>;
11228
11234
  evaluationSuiteConfigId: drizzle_orm_pg_core664.PgColumn<{
11229
11235
  name: "evaluation_suite_config_id";
11230
11236
  tableName: "evaluation_run_config_evaluation_suite_config_relations";
11231
11237
  dataType: "string";
11232
- columnType: "PgText";
11238
+ columnType: "PgVarchar";
11233
11239
  data: string;
11234
11240
  driverParam: string;
11235
11241
  notNull: true;
@@ -11241,7 +11247,9 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: driz
11241
11247
  baseColumn: never;
11242
11248
  identity: undefined;
11243
11249
  generated: undefined;
11244
- }, {}, {}>;
11250
+ }, {}, {
11251
+ length: 256;
11252
+ }>;
11245
11253
  projectId: drizzle_orm_pg_core664.PgColumn<{
11246
11254
  name: "project_id";
11247
11255
  tableName: "evaluation_run_config_evaluation_suite_config_relations";
@@ -11384,7 +11392,7 @@ declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod19.Bu
11384
11392
  name: "evaluation_job_config_id";
11385
11393
  tableName: "evaluation_job_config_evaluator_relations";
11386
11394
  dataType: "string";
11387
- columnType: "PgText";
11395
+ columnType: "PgVarchar";
11388
11396
  data: string;
11389
11397
  driverParam: string;
11390
11398
  notNull: true;
@@ -11396,12 +11404,14 @@ declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod19.Bu
11396
11404
  baseColumn: never;
11397
11405
  identity: undefined;
11398
11406
  generated: undefined;
11399
- }, {}, {}>;
11407
+ }, {}, {
11408
+ length: 256;
11409
+ }>;
11400
11410
  evaluatorId: drizzle_orm_pg_core664.PgColumn<{
11401
11411
  name: "evaluator_id";
11402
11412
  tableName: "evaluation_job_config_evaluator_relations";
11403
11413
  dataType: "string";
11404
- columnType: "PgText";
11414
+ columnType: "PgVarchar";
11405
11415
  data: string;
11406
11416
  driverParam: string;
11407
11417
  notNull: true;
@@ -11413,7 +11423,9 @@ declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod19.Bu
11413
11423
  baseColumn: never;
11414
11424
  identity: undefined;
11415
11425
  generated: undefined;
11416
- }, {}, {}>;
11426
+ }, {}, {
11427
+ length: 256;
11428
+ }>;
11417
11429
  projectId: drizzle_orm_pg_core664.PgColumn<{
11418
11430
  name: "project_id";
11419
11431
  tableName: "evaluation_job_config_evaluator_relations";
@@ -11510,7 +11522,7 @@ declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod19.Bu
11510
11522
  name: "evaluation_job_config_id";
11511
11523
  tableName: "evaluation_job_config_evaluator_relations";
11512
11524
  dataType: "string";
11513
- columnType: "PgText";
11525
+ columnType: "PgVarchar";
11514
11526
  data: string;
11515
11527
  driverParam: string;
11516
11528
  notNull: true;
@@ -11522,12 +11534,14 @@ declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod19.Bu
11522
11534
  baseColumn: never;
11523
11535
  identity: undefined;
11524
11536
  generated: undefined;
11525
- }, {}, {}>;
11537
+ }, {}, {
11538
+ length: 256;
11539
+ }>;
11526
11540
  evaluatorId: drizzle_orm_pg_core664.PgColumn<{
11527
11541
  name: "evaluator_id";
11528
11542
  tableName: "evaluation_job_config_evaluator_relations";
11529
11543
  dataType: "string";
11530
- columnType: "PgText";
11544
+ columnType: "PgVarchar";
11531
11545
  data: string;
11532
11546
  driverParam: string;
11533
11547
  notNull: true;
@@ -11539,7 +11553,9 @@ declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod19.Bu
11539
11553
  baseColumn: never;
11540
11554
  identity: undefined;
11541
11555
  generated: undefined;
11542
- }, {}, {}>;
11556
+ }, {}, {
11557
+ length: 256;
11558
+ }>;
11543
11559
  projectId: drizzle_orm_pg_core664.PgColumn<{
11544
11560
  name: "project_id";
11545
11561
  tableName: "evaluation_job_config_evaluator_relations";
@@ -11682,7 +11698,7 @@ declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod19.
11682
11698
  name: "evaluation_suite_config_id";
11683
11699
  tableName: "evaluation_suite_config_evaluator_relations";
11684
11700
  dataType: "string";
11685
- columnType: "PgText";
11701
+ columnType: "PgVarchar";
11686
11702
  data: string;
11687
11703
  driverParam: string;
11688
11704
  notNull: true;
@@ -11694,12 +11710,14 @@ declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod19.
11694
11710
  baseColumn: never;
11695
11711
  identity: undefined;
11696
11712
  generated: undefined;
11697
- }, {}, {}>;
11713
+ }, {}, {
11714
+ length: 256;
11715
+ }>;
11698
11716
  evaluatorId: drizzle_orm_pg_core664.PgColumn<{
11699
11717
  name: "evaluator_id";
11700
11718
  tableName: "evaluation_suite_config_evaluator_relations";
11701
11719
  dataType: "string";
11702
- columnType: "PgText";
11720
+ columnType: "PgVarchar";
11703
11721
  data: string;
11704
11722
  driverParam: string;
11705
11723
  notNull: true;
@@ -11711,7 +11729,9 @@ declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod19.
11711
11729
  baseColumn: never;
11712
11730
  identity: undefined;
11713
11731
  generated: undefined;
11714
- }, {}, {}>;
11732
+ }, {}, {
11733
+ length: 256;
11734
+ }>;
11715
11735
  projectId: drizzle_orm_pg_core664.PgColumn<{
11716
11736
  name: "project_id";
11717
11737
  tableName: "evaluation_suite_config_evaluator_relations";
@@ -11808,7 +11828,7 @@ declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod19.
11808
11828
  name: "evaluation_suite_config_id";
11809
11829
  tableName: "evaluation_suite_config_evaluator_relations";
11810
11830
  dataType: "string";
11811
- columnType: "PgText";
11831
+ columnType: "PgVarchar";
11812
11832
  data: string;
11813
11833
  driverParam: string;
11814
11834
  notNull: true;
@@ -11820,12 +11840,14 @@ declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod19.
11820
11840
  baseColumn: never;
11821
11841
  identity: undefined;
11822
11842
  generated: undefined;
11823
- }, {}, {}>;
11843
+ }, {}, {
11844
+ length: 256;
11845
+ }>;
11824
11846
  evaluatorId: drizzle_orm_pg_core664.PgColumn<{
11825
11847
  name: "evaluator_id";
11826
11848
  tableName: "evaluation_suite_config_evaluator_relations";
11827
11849
  dataType: "string";
11828
- columnType: "PgText";
11850
+ columnType: "PgVarchar";
11829
11851
  data: string;
11830
11852
  driverParam: string;
11831
11853
  notNull: true;
@@ -11837,7 +11859,9 @@ declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod19.
11837
11859
  baseColumn: never;
11838
11860
  identity: undefined;
11839
11861
  generated: undefined;
11840
- }, {}, {}>;
11862
+ }, {}, {
11863
+ length: 256;
11864
+ }>;
11841
11865
  projectId: drizzle_orm_pg_core664.PgColumn<{
11842
11866
  name: "project_id";
11843
11867
  tableName: "evaluation_suite_config_evaluator_relations";
@@ -12785,7 +12809,7 @@ declare const DatasetItemSelectSchema: drizzle_zod19.BuildSchema<"select", {
12785
12809
  name: "dataset_id";
12786
12810
  tableName: "dataset_item";
12787
12811
  dataType: "string";
12788
- columnType: "PgText";
12812
+ columnType: "PgVarchar";
12789
12813
  data: string;
12790
12814
  driverParam: string;
12791
12815
  notNull: true;
@@ -12797,7 +12821,9 @@ declare const DatasetItemSelectSchema: drizzle_zod19.BuildSchema<"select", {
12797
12821
  baseColumn: never;
12798
12822
  identity: undefined;
12799
12823
  generated: undefined;
12800
- }, {}, {}>;
12824
+ }, {}, {
12825
+ length: 256;
12826
+ }>;
12801
12827
  input: drizzle_orm_pg_core664.PgColumn<{
12802
12828
  name: "input";
12803
12829
  tableName: "dataset_item";
@@ -12971,7 +12997,7 @@ declare const DatasetItemSelectSchema: drizzle_zod19.BuildSchema<"select", {
12971
12997
  name: "dataset_id";
12972
12998
  tableName: "dataset_item";
12973
12999
  dataType: "string";
12974
- columnType: "PgText";
13000
+ columnType: "PgVarchar";
12975
13001
  data: string;
12976
13002
  driverParam: string;
12977
13003
  notNull: true;
@@ -12983,7 +13009,9 @@ declare const DatasetItemSelectSchema: drizzle_zod19.BuildSchema<"select", {
12983
13009
  baseColumn: never;
12984
13010
  identity: undefined;
12985
13011
  generated: undefined;
12986
- }, {}, {}>;
13012
+ }, {}, {
13013
+ length: 256;
13014
+ }>;
12987
13015
  input: drizzle_orm_pg_core664.PgColumn<{
12988
13016
  name: "input";
12989
13017
  tableName: "dataset_item";
@@ -13373,8 +13401,8 @@ declare const DatasetItemApiUpdateSchema: z.ZodObject<{
13373
13401
  }>>>>>>;
13374
13402
  }, z.core.$strip>;
13375
13403
  declare const DatasetRunItemSchema: z.ZodObject<{
13376
- input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
13377
13404
  id: z.ZodOptional<z.ZodString>;
13405
+ input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
13378
13406
  expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
13379
13407
  simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
13380
13408
  prompt: string;
@@ -13422,8 +13450,8 @@ declare const DatasetRunItemSchema: z.ZodObject<{
13422
13450
  declare const TriggerDatasetRunSchema: z.ZodObject<{
13423
13451
  datasetRunId: z.ZodString;
13424
13452
  items: z.ZodArray<z.ZodObject<{
13425
- input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
13426
13453
  id: z.ZodOptional<z.ZodString>;
13454
+ input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
13427
13455
  expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
13428
13456
  simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
13429
13457
  prompt: string;
@@ -13540,7 +13568,7 @@ declare const DatasetRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select",
13540
13568
  name: "dataset_id";
13541
13569
  tableName: "dataset_run_config";
13542
13570
  dataType: "string";
13543
- columnType: "PgText";
13571
+ columnType: "PgVarchar";
13544
13572
  data: string;
13545
13573
  driverParam: string;
13546
13574
  notNull: true;
@@ -13552,7 +13580,9 @@ declare const DatasetRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select",
13552
13580
  baseColumn: never;
13553
13581
  identity: undefined;
13554
13582
  generated: undefined;
13555
- }, {}, {}>;
13583
+ }, {}, {
13584
+ length: 256;
13585
+ }>;
13556
13586
  name: drizzle_orm_pg_core664.PgColumn<{
13557
13587
  name: "name";
13558
13588
  tableName: "dataset_run_config";
@@ -13685,7 +13715,7 @@ declare const DatasetRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select",
13685
13715
  name: "dataset_id";
13686
13716
  tableName: "dataset_run_config";
13687
13717
  dataType: "string";
13688
- columnType: "PgText";
13718
+ columnType: "PgVarchar";
13689
13719
  data: string;
13690
13720
  driverParam: string;
13691
13721
  notNull: true;
@@ -13697,7 +13727,9 @@ declare const DatasetRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select",
13697
13727
  baseColumn: never;
13698
13728
  identity: undefined;
13699
13729
  generated: undefined;
13700
- }, {}, {}>;
13730
+ }, {}, {
13731
+ length: 256;
13732
+ }>;
13701
13733
  name: drizzle_orm_pg_core664.PgColumn<{
13702
13734
  name: "name";
13703
13735
  tableName: "dataset_run_config";
@@ -13881,7 +13913,7 @@ declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSche
13881
13913
  name: "dataset_run_config_id";
13882
13914
  tableName: "dataset_run_config_agent_relations";
13883
13915
  dataType: "string";
13884
- columnType: "PgText";
13916
+ columnType: "PgVarchar";
13885
13917
  data: string;
13886
13918
  driverParam: string;
13887
13919
  notNull: true;
@@ -13893,12 +13925,14 @@ declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSche
13893
13925
  baseColumn: never;
13894
13926
  identity: undefined;
13895
13927
  generated: undefined;
13896
- }, {}, {}>;
13928
+ }, {}, {
13929
+ length: 256;
13930
+ }>;
13897
13931
  agentId: drizzle_orm_pg_core664.PgColumn<{
13898
13932
  name: "agent_id";
13899
13933
  tableName: "dataset_run_config_agent_relations";
13900
13934
  dataType: "string";
13901
- columnType: "PgText";
13935
+ columnType: "PgVarchar";
13902
13936
  data: string;
13903
13937
  driverParam: string;
13904
13938
  notNull: true;
@@ -13910,7 +13944,9 @@ declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSche
13910
13944
  baseColumn: never;
13911
13945
  identity: undefined;
13912
13946
  generated: undefined;
13913
- }, {}, {}>;
13947
+ }, {}, {
13948
+ length: 256;
13949
+ }>;
13914
13950
  projectId: drizzle_orm_pg_core664.PgColumn<{
13915
13951
  name: "project_id";
13916
13952
  tableName: "dataset_run_config_agent_relations";
@@ -14007,7 +14043,7 @@ declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSche
14007
14043
  name: "dataset_run_config_id";
14008
14044
  tableName: "dataset_run_config_agent_relations";
14009
14045
  dataType: "string";
14010
- columnType: "PgText";
14046
+ columnType: "PgVarchar";
14011
14047
  data: string;
14012
14048
  driverParam: string;
14013
14049
  notNull: true;
@@ -14019,12 +14055,14 @@ declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSche
14019
14055
  baseColumn: never;
14020
14056
  identity: undefined;
14021
14057
  generated: undefined;
14022
- }, {}, {}>;
14058
+ }, {}, {
14059
+ length: 256;
14060
+ }>;
14023
14061
  agentId: drizzle_orm_pg_core664.PgColumn<{
14024
14062
  name: "agent_id";
14025
14063
  tableName: "dataset_run_config_agent_relations";
14026
14064
  dataType: "string";
14027
- columnType: "PgText";
14065
+ columnType: "PgVarchar";
14028
14066
  data: string;
14029
14067
  driverParam: string;
14030
14068
  notNull: true;
@@ -14036,7 +14074,9 @@ declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSche
14036
14074
  baseColumn: never;
14037
14075
  identity: undefined;
14038
14076
  generated: undefined;
14039
- }, {}, {}>;
14077
+ }, {}, {
14078
+ length: 256;
14079
+ }>;
14040
14080
  projectId: drizzle_orm_pg_core664.PgColumn<{
14041
14081
  name: "project_id";
14042
14082
  tableName: "dataset_run_config_agent_relations";
@@ -17839,11 +17879,11 @@ declare const MCPToolConfigSchema: z.ZodObject<{
17839
17879
  expiresAt: z.ZodOptional<z.ZodString>;
17840
17880
  createdBy: z.ZodOptional<z.ZodString>;
17841
17881
  headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
17882
+ relationshipId: z.ZodOptional<z.ZodString>;
17842
17883
  credentialScope: z.ZodOptional<z.ZodString>;
17843
17884
  imageUrl: z.ZodOptional<z.ZodString>;
17844
17885
  capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
17845
17886
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17846
- relationshipId: z.ZodOptional<z.ZodString>;
17847
17887
  availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
17848
17888
  name: z.ZodString;
17849
17889
  description: z.ZodOptional<z.ZodString>;
@@ -18810,8 +18850,8 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<OmitAgent
18810
18850
  }>, z.core.$strip>;
18811
18851
  declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
18812
18852
  toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
18813
- subAgentId: z.ZodString;
18814
18853
  functionToolId: z.ZodString;
18854
+ subAgentId: z.ZodString;
18815
18855
  }, {
18816
18856
  out: {};
18817
18857
  in: {};
@@ -21891,7 +21931,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
21891
21931
  }, {}, {
21892
21932
  length: 256;
21893
21933
  }>;
21894
- }, "type" | "tenantId" | "projectId" | "id" | "name" | "description" | "createdAt" | "updatedAt" | "metadata" | "contextId" | "visibility" | "taskId" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
21934
+ }, "tenantId" | "projectId" | "id" | "type" | "name" | "description" | "createdAt" | "updatedAt" | "metadata" | "contextId" | "visibility" | "taskId" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
21895
21935
  declare const LedgerArtifactUpdateSchema: z.ZodObject<{
21896
21936
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21897
21937
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -21956,8 +21996,8 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<OmitProjectScope<{
21956
21996
  id: z.ZodString;
21957
21997
  }>, z.core.$strip>;
21958
21998
  declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
21959
- type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
21960
21999
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
22000
+ type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
21961
22001
  name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
21962
22002
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
21963
22003
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
@@ -26269,19 +26309,19 @@ declare const ConversationResponse: z.ZodObject<{
26269
26309
  agentId: z.ZodNullable<z.ZodString>;
26270
26310
  activeSubAgentId: z.ZodString;
26271
26311
  ref: z.ZodNullable<z.ZodType<{
26272
- type: "commit" | "tag" | "branch";
26312
+ type: "tag" | "commit" | "branch";
26273
26313
  name: string;
26274
26314
  hash: string;
26275
26315
  }, {
26276
- type: "commit" | "tag" | "branch";
26316
+ type: "tag" | "commit" | "branch";
26277
26317
  name: string;
26278
26318
  hash: string;
26279
26319
  }, z.core.$ZodTypeInternals<{
26280
- type: "commit" | "tag" | "branch";
26320
+ type: "tag" | "commit" | "branch";
26281
26321
  name: string;
26282
26322
  hash: string;
26283
26323
  }, {
26284
- type: "commit" | "tag" | "branch";
26324
+ type: "tag" | "commit" | "branch";
26285
26325
  name: string;
26286
26326
  hash: string;
26287
26327
  }>>>;
@@ -27475,19 +27515,19 @@ declare const ConversationListResponse: z.ZodObject<{
27475
27515
  agentId: z.ZodNullable<z.ZodString>;
27476
27516
  activeSubAgentId: z.ZodString;
27477
27517
  ref: z.ZodNullable<z.ZodType<{
27478
- type: "commit" | "tag" | "branch";
27518
+ type: "tag" | "commit" | "branch";
27479
27519
  name: string;
27480
27520
  hash: string;
27481
27521
  }, {
27482
- type: "commit" | "tag" | "branch";
27522
+ type: "tag" | "commit" | "branch";
27483
27523
  name: string;
27484
27524
  hash: string;
27485
27525
  }, z.core.$ZodTypeInternals<{
27486
- type: "commit" | "tag" | "branch";
27526
+ type: "tag" | "commit" | "branch";
27487
27527
  name: string;
27488
27528
  hash: string;
27489
27529
  }, {
27490
- type: "commit" | "tag" | "branch";
27530
+ type: "tag" | "commit" | "branch";
27491
27531
  name: string;
27492
27532
  hash: string;
27493
27533
  }>>>;