@inkeep/agents-core 0.6.6 → 0.7.1

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.
@@ -2594,7 +2594,6 @@ declare const ToolStatusSchema: z.ZodEnum<{
2594
2594
  unknown: "unknown";
2595
2595
  healthy: "healthy";
2596
2596
  unhealthy: "unhealthy";
2597
- disabled: "disabled";
2598
2597
  needs_auth: "needs_auth";
2599
2598
  }>;
2600
2599
  declare const McpToolDefinitionSchema: z.ZodObject<{
@@ -2780,44 +2779,6 @@ declare const ToolSelectSchema: drizzle_zod.BuildSchema<"select", {
2780
2779
  }, {}, {
2781
2780
  $type: ToolServerCapabilities;
2782
2781
  }>;
2783
- status: drizzle_orm_sqlite_core.SQLiteColumn<{
2784
- name: "status";
2785
- tableName: "tools";
2786
- dataType: "string";
2787
- columnType: "SQLiteText";
2788
- data: string;
2789
- driverParam: string;
2790
- notNull: true;
2791
- hasDefault: true;
2792
- isPrimaryKey: false;
2793
- isAutoincrement: false;
2794
- hasRuntimeDefault: false;
2795
- enumValues: [string, ...string[]];
2796
- baseColumn: never;
2797
- identity: undefined;
2798
- generated: undefined;
2799
- }, {}, {
2800
- length: number | undefined;
2801
- }>;
2802
- lastHealthCheck: drizzle_orm_sqlite_core.SQLiteColumn<{
2803
- name: "last_health_check";
2804
- tableName: "tools";
2805
- dataType: "string";
2806
- columnType: "SQLiteText";
2807
- data: string;
2808
- driverParam: string;
2809
- notNull: false;
2810
- hasDefault: false;
2811
- isPrimaryKey: false;
2812
- isAutoincrement: false;
2813
- hasRuntimeDefault: false;
2814
- enumValues: [string, ...string[]];
2815
- baseColumn: never;
2816
- identity: undefined;
2817
- generated: undefined;
2818
- }, {}, {
2819
- length: number | undefined;
2820
- }>;
2821
2782
  lastError: drizzle_orm_sqlite_core.SQLiteColumn<{
2822
2783
  name: "last_error";
2823
2784
  tableName: "tools";
@@ -2837,44 +2798,6 @@ declare const ToolSelectSchema: drizzle_zod.BuildSchema<"select", {
2837
2798
  }, {}, {
2838
2799
  length: number | undefined;
2839
2800
  }>;
2840
- availableTools: drizzle_orm_sqlite_core.SQLiteColumn<{
2841
- name: "available_tools";
2842
- tableName: "tools";
2843
- dataType: "json";
2844
- columnType: "SQLiteBlobJson";
2845
- data: McpToolDefinition[];
2846
- driverParam: Buffer<ArrayBufferLike>;
2847
- notNull: false;
2848
- hasDefault: false;
2849
- isPrimaryKey: false;
2850
- isAutoincrement: false;
2851
- hasRuntimeDefault: false;
2852
- enumValues: undefined;
2853
- baseColumn: never;
2854
- identity: undefined;
2855
- generated: undefined;
2856
- }, {}, {
2857
- $type: McpToolDefinition[];
2858
- }>;
2859
- lastToolsSync: drizzle_orm_sqlite_core.SQLiteColumn<{
2860
- name: "last_tools_sync";
2861
- tableName: "tools";
2862
- dataType: "string";
2863
- columnType: "SQLiteText";
2864
- data: string;
2865
- driverParam: string;
2866
- notNull: false;
2867
- hasDefault: false;
2868
- isPrimaryKey: false;
2869
- isAutoincrement: false;
2870
- hasRuntimeDefault: false;
2871
- enumValues: [string, ...string[]];
2872
- baseColumn: never;
2873
- identity: undefined;
2874
- generated: undefined;
2875
- }, {}, {
2876
- length: number | undefined;
2877
- }>;
2878
2801
  createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
2879
2802
  name: "created_at";
2880
2803
  tableName: "tools";
@@ -2934,11 +2857,7 @@ declare const ToolInsertSchema: z.ZodObject<{
2934
2857
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2935
2858
  headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
2936
2859
  capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
2937
- status: z.ZodOptional<z.ZodString>;
2938
- lastHealthCheck: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2939
2860
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2940
- availableTools: z.ZodOptional<z.ZodNullable<z.ZodType<McpToolDefinition[], McpToolDefinition[], z.core.$ZodTypeInternals<McpToolDefinition[], McpToolDefinition[]>>>>;
2941
- lastToolsSync: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2942
2861
  createdAt: z.ZodOptional<z.ZodString>;
2943
2862
  updatedAt: z.ZodOptional<z.ZodString>;
2944
2863
  id: z.ZodString;
@@ -5688,6 +5607,242 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
5688
5607
  readonly keychain: "keychain";
5689
5608
  readonly nango: "nango";
5690
5609
  }>;
5610
+ tools: z.ZodOptional<z.ZodArray<drizzle_zod.BuildSchema<"select", {
5611
+ tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
5612
+ name: "tenant_id";
5613
+ tableName: "tools";
5614
+ dataType: "string";
5615
+ columnType: "SQLiteText";
5616
+ data: string;
5617
+ driverParam: string;
5618
+ notNull: true;
5619
+ hasDefault: false;
5620
+ isPrimaryKey: false;
5621
+ isAutoincrement: false;
5622
+ hasRuntimeDefault: false;
5623
+ enumValues: [string, ...string[]];
5624
+ baseColumn: never;
5625
+ identity: undefined;
5626
+ generated: undefined;
5627
+ }, {}, {
5628
+ length: number | undefined;
5629
+ }>;
5630
+ projectId: drizzle_orm_sqlite_core.SQLiteColumn<{
5631
+ name: "project_id";
5632
+ tableName: "tools";
5633
+ dataType: "string";
5634
+ columnType: "SQLiteText";
5635
+ data: string;
5636
+ driverParam: string;
5637
+ notNull: true;
5638
+ hasDefault: false;
5639
+ isPrimaryKey: false;
5640
+ isAutoincrement: false;
5641
+ hasRuntimeDefault: false;
5642
+ enumValues: [string, ...string[]];
5643
+ baseColumn: never;
5644
+ identity: undefined;
5645
+ generated: undefined;
5646
+ }, {}, {
5647
+ length: number | undefined;
5648
+ }>;
5649
+ id: drizzle_orm_sqlite_core.SQLiteColumn<{
5650
+ name: "id";
5651
+ tableName: "tools";
5652
+ dataType: "string";
5653
+ columnType: "SQLiteText";
5654
+ data: string;
5655
+ driverParam: string;
5656
+ notNull: true;
5657
+ hasDefault: false;
5658
+ isPrimaryKey: false;
5659
+ isAutoincrement: false;
5660
+ hasRuntimeDefault: false;
5661
+ enumValues: [string, ...string[]];
5662
+ baseColumn: never;
5663
+ identity: undefined;
5664
+ generated: undefined;
5665
+ }, {}, {
5666
+ length: number | undefined;
5667
+ }>;
5668
+ name: drizzle_orm_sqlite_core.SQLiteColumn<{
5669
+ name: "name";
5670
+ tableName: "tools";
5671
+ dataType: "string";
5672
+ columnType: "SQLiteText";
5673
+ data: string;
5674
+ driverParam: string;
5675
+ notNull: true;
5676
+ hasDefault: false;
5677
+ isPrimaryKey: false;
5678
+ isAutoincrement: false;
5679
+ hasRuntimeDefault: false;
5680
+ enumValues: [string, ...string[]];
5681
+ baseColumn: never;
5682
+ identity: undefined;
5683
+ generated: undefined;
5684
+ }, {}, {
5685
+ length: number | undefined;
5686
+ }>;
5687
+ config: drizzle_orm_sqlite_core.SQLiteColumn<{
5688
+ name: "config";
5689
+ tableName: "tools";
5690
+ dataType: "json";
5691
+ columnType: "SQLiteBlobJson";
5692
+ data: {
5693
+ type: "mcp";
5694
+ mcp: ToolMcpConfig;
5695
+ };
5696
+ driverParam: Buffer<ArrayBufferLike>;
5697
+ notNull: true;
5698
+ hasDefault: false;
5699
+ isPrimaryKey: false;
5700
+ isAutoincrement: false;
5701
+ hasRuntimeDefault: false;
5702
+ enumValues: undefined;
5703
+ baseColumn: never;
5704
+ identity: undefined;
5705
+ generated: undefined;
5706
+ }, {}, {
5707
+ $type: {
5708
+ type: "mcp";
5709
+ mcp: ToolMcpConfig;
5710
+ };
5711
+ }>;
5712
+ credentialReferenceId: drizzle_orm_sqlite_core.SQLiteColumn<{
5713
+ name: "credential_reference_id";
5714
+ tableName: "tools";
5715
+ dataType: "string";
5716
+ columnType: "SQLiteText";
5717
+ data: string;
5718
+ driverParam: string;
5719
+ notNull: false;
5720
+ hasDefault: false;
5721
+ isPrimaryKey: false;
5722
+ isAutoincrement: false;
5723
+ hasRuntimeDefault: false;
5724
+ enumValues: [string, ...string[]];
5725
+ baseColumn: never;
5726
+ identity: undefined;
5727
+ generated: undefined;
5728
+ }, {}, {
5729
+ length: number | undefined;
5730
+ }>;
5731
+ headers: drizzle_orm_sqlite_core.SQLiteColumn<{
5732
+ name: "headers";
5733
+ tableName: "tools";
5734
+ dataType: "json";
5735
+ columnType: "SQLiteBlobJson";
5736
+ data: Record<string, string>;
5737
+ driverParam: Buffer<ArrayBufferLike>;
5738
+ notNull: false;
5739
+ hasDefault: false;
5740
+ isPrimaryKey: false;
5741
+ isAutoincrement: false;
5742
+ hasRuntimeDefault: false;
5743
+ enumValues: undefined;
5744
+ baseColumn: never;
5745
+ identity: undefined;
5746
+ generated: undefined;
5747
+ }, {}, {
5748
+ $type: Record<string, string>;
5749
+ }>;
5750
+ imageUrl: drizzle_orm_sqlite_core.SQLiteColumn<{
5751
+ name: "image_url";
5752
+ tableName: "tools";
5753
+ dataType: "string";
5754
+ columnType: "SQLiteText";
5755
+ data: string;
5756
+ driverParam: string;
5757
+ notNull: false;
5758
+ hasDefault: false;
5759
+ isPrimaryKey: false;
5760
+ isAutoincrement: false;
5761
+ hasRuntimeDefault: false;
5762
+ enumValues: [string, ...string[]];
5763
+ baseColumn: never;
5764
+ identity: undefined;
5765
+ generated: undefined;
5766
+ }, {}, {
5767
+ length: number | undefined;
5768
+ }>;
5769
+ capabilities: drizzle_orm_sqlite_core.SQLiteColumn<{
5770
+ name: "capabilities";
5771
+ tableName: "tools";
5772
+ dataType: "json";
5773
+ columnType: "SQLiteBlobJson";
5774
+ data: ToolServerCapabilities;
5775
+ driverParam: Buffer<ArrayBufferLike>;
5776
+ notNull: false;
5777
+ hasDefault: false;
5778
+ isPrimaryKey: false;
5779
+ isAutoincrement: false;
5780
+ hasRuntimeDefault: false;
5781
+ enumValues: undefined;
5782
+ baseColumn: never;
5783
+ identity: undefined;
5784
+ generated: undefined;
5785
+ }, {}, {
5786
+ $type: ToolServerCapabilities;
5787
+ }>;
5788
+ lastError: drizzle_orm_sqlite_core.SQLiteColumn<{
5789
+ name: "last_error";
5790
+ tableName: "tools";
5791
+ dataType: "string";
5792
+ columnType: "SQLiteText";
5793
+ data: string;
5794
+ driverParam: string;
5795
+ notNull: false;
5796
+ hasDefault: false;
5797
+ isPrimaryKey: false;
5798
+ isAutoincrement: false;
5799
+ hasRuntimeDefault: false;
5800
+ enumValues: [string, ...string[]];
5801
+ baseColumn: never;
5802
+ identity: undefined;
5803
+ generated: undefined;
5804
+ }, {}, {
5805
+ length: number | undefined;
5806
+ }>;
5807
+ createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
5808
+ name: "created_at";
5809
+ tableName: "tools";
5810
+ dataType: "string";
5811
+ columnType: "SQLiteText";
5812
+ data: string;
5813
+ driverParam: string;
5814
+ notNull: true;
5815
+ hasDefault: true;
5816
+ isPrimaryKey: false;
5817
+ isAutoincrement: false;
5818
+ hasRuntimeDefault: false;
5819
+ enumValues: [string, ...string[]];
5820
+ baseColumn: never;
5821
+ identity: undefined;
5822
+ generated: undefined;
5823
+ }, {}, {
5824
+ length: number | undefined;
5825
+ }>;
5826
+ updatedAt: drizzle_orm_sqlite_core.SQLiteColumn<{
5827
+ name: "updated_at";
5828
+ tableName: "tools";
5829
+ dataType: "string";
5830
+ columnType: "SQLiteText";
5831
+ data: string;
5832
+ driverParam: string;
5833
+ notNull: true;
5834
+ hasDefault: true;
5835
+ isPrimaryKey: false;
5836
+ isAutoincrement: false;
5837
+ hasRuntimeDefault: false;
5838
+ enumValues: [string, ...string[]];
5839
+ baseColumn: never;
5840
+ identity: undefined;
5841
+ generated: undefined;
5842
+ }, {}, {
5843
+ length: number | undefined;
5844
+ }>;
5845
+ }, undefined, undefined>>>;
5691
5846
  }, z.core.$strip>;
5692
5847
  declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
5693
5848
  id: z.ZodString;
@@ -5734,18 +5889,19 @@ declare const McpToolSchema: z.ZodObject<{
5734
5889
  headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
5735
5890
  capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
5736
5891
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5737
- availableTools: z.ZodOptional<z.ZodNullable<z.ZodType<McpToolDefinition[], McpToolDefinition[], z.core.$ZodTypeInternals<McpToolDefinition[], McpToolDefinition[]>>>>;
5738
5892
  id: z.ZodString;
5739
5893
  imageUrl: z.ZodOptional<z.ZodString>;
5894
+ availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
5895
+ name: z.ZodString;
5896
+ description: z.ZodOptional<z.ZodString>;
5897
+ inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
5898
+ }, z.core.$strip>>>;
5740
5899
  status: z.ZodDefault<z.ZodEnum<{
5741
5900
  unknown: "unknown";
5742
5901
  healthy: "healthy";
5743
5902
  unhealthy: "unhealthy";
5744
- disabled: "disabled";
5745
5903
  needs_auth: "needs_auth";
5746
5904
  }>>;
5747
- lastHealthCheck: z.ZodOptional<z.ZodDate>;
5748
- lastToolsSync: z.ZodOptional<z.ZodDate>;
5749
5905
  version: z.ZodOptional<z.ZodString>;
5750
5906
  createdAt: z.ZodDate;
5751
5907
  updatedAt: z.ZodDate;
@@ -5760,7 +5916,11 @@ declare const MCPToolConfigSchema: z.ZodObject<{
5760
5916
  capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
5761
5917
  imageUrl: z.ZodOptional<z.ZodString>;
5762
5918
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5763
- availableTools: z.ZodOptional<z.ZodNullable<z.ZodType<McpToolDefinition[], McpToolDefinition[], z.core.$ZodTypeInternals<McpToolDefinition[], McpToolDefinition[]>>>>;
5919
+ availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
5920
+ name: z.ZodString;
5921
+ description: z.ZodOptional<z.ZodString>;
5922
+ inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
5923
+ }, z.core.$strip>>>;
5764
5924
  tenantId: z.ZodOptional<z.ZodString>;
5765
5925
  projectId: z.ZodOptional<z.ZodString>;
5766
5926
  description: z.ZodOptional<z.ZodString>;
@@ -5816,11 +5976,7 @@ declare const ToolUpdateSchema: z.ZodObject<{
5816
5976
  credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
5817
5977
  headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>;
5818
5978
  capabilities: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>;
5819
- status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5820
- lastHealthCheck: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
5821
5979
  lastError: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
5822
- availableTools: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<McpToolDefinition[], McpToolDefinition[], z.core.$ZodTypeInternals<McpToolDefinition[], McpToolDefinition[]>>>>>;
5823
- lastToolsSync: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
5824
5980
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5825
5981
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5826
5982
  id: z.ZodOptional<z.ZodString>;
@@ -5849,13 +6005,9 @@ declare const ToolApiSelectSchema: z.ZodObject<{
5849
6005
  createdAt: z.ZodString;
5850
6006
  updatedAt: z.ZodString;
5851
6007
  headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
5852
- status: z.ZodString;
5853
6008
  capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
5854
6009
  imageUrl: z.ZodNullable<z.ZodString>;
5855
- lastHealthCheck: z.ZodNullable<z.ZodString>;
5856
6010
  lastError: z.ZodNullable<z.ZodString>;
5857
- availableTools: z.ZodNullable<z.ZodType<McpToolDefinition[], McpToolDefinition[], z.core.$ZodTypeInternals<McpToolDefinition[], McpToolDefinition[]>>>;
5858
- lastToolsSync: z.ZodNullable<z.ZodString>;
5859
6011
  }, z.core.$strip>;
5860
6012
  declare const ToolApiInsertSchema: z.ZodObject<{
5861
6013
  id: z.ZodString;
@@ -5877,13 +6029,9 @@ declare const ToolApiInsertSchema: z.ZodObject<{
5877
6029
  createdAt: z.ZodOptional<z.ZodString>;
5878
6030
  updatedAt: z.ZodOptional<z.ZodString>;
5879
6031
  headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
5880
- status: z.ZodOptional<z.ZodString>;
5881
6032
  capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
5882
6033
  imageUrl: z.ZodOptional<z.ZodString>;
5883
- lastHealthCheck: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5884
6034
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5885
- availableTools: z.ZodOptional<z.ZodNullable<z.ZodType<McpToolDefinition[], McpToolDefinition[], z.core.$ZodTypeInternals<McpToolDefinition[], McpToolDefinition[]>>>>;
5886
- lastToolsSync: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5887
6035
  }, z.core.$strip>;
5888
6036
  declare const ToolApiUpdateSchema: z.ZodObject<{
5889
6037
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -5905,13 +6053,9 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
5905
6053
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5906
6054
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5907
6055
  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>>>>>>>;
5908
- status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5909
6056
  capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
5910
6057
  imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5911
- lastHealthCheck: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
5912
6058
  lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
5913
- availableTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<McpToolDefinition[], McpToolDefinition[], z.core.$ZodTypeInternals<McpToolDefinition[], McpToolDefinition[]>>>>>>;
5914
- lastToolsSync: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
5915
6059
  }, z.core.$strip>;
5916
6060
  declare const FetchConfigSchema: z.ZodObject<{
5917
6061
  url: z.ZodString;
@@ -7850,13 +7994,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
7850
7994
  createdAt: z.ZodOptional<z.ZodString>;
7851
7995
  updatedAt: z.ZodOptional<z.ZodString>;
7852
7996
  headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
7853
- status: z.ZodOptional<z.ZodString>;
7854
7997
  capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
7855
7998
  imageUrl: z.ZodOptional<z.ZodString>;
7856
- lastHealthCheck: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7857
7999
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7858
- availableTools: z.ZodOptional<z.ZodNullable<z.ZodType<McpToolDefinition[], McpToolDefinition[], z.core.$ZodTypeInternals<McpToolDefinition[], McpToolDefinition[]>>>>;
7859
- lastToolsSync: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7860
8000
  }, z.core.$strip>>;
7861
8001
  dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
7862
8002
  id: z.ZodString;
@@ -8283,8 +8423,7 @@ interface ProjectResourceCounts {
8283
8423
  contextConfigs: number;
8284
8424
  externalAgents: number;
8285
8425
  }
8286
- type toolStatus = 'healthy' | 'unhealthy' | 'unknown';
8287
- declare const TOOL_STATUS_VALUES: readonly ["healthy", "unhealthy", "unknown", "disabled", "needs_auth"];
8426
+ declare const TOOL_STATUS_VALUES: readonly ["healthy", "unhealthy", "unknown", "needs_auth"];
8288
8427
  declare const VALID_RELATION_TYPES: readonly ["transfer", "delegate"];
8289
8428
  declare const MCPTransportType: {
8290
8429
  readonly streamableHttp: "streamable_http";
@@ -8299,7 +8438,6 @@ declare const CredentialStoreType: {
8299
8438
  readonly keychain: "keychain";
8300
8439
  readonly nango: "nango";
8301
8440
  };
8302
- type McpToolStatus = (typeof TOOL_STATUS_VALUES)[number];
8303
8441
  interface CreateApiKeyParams {
8304
8442
  tenantId: string;
8305
8443
  projectId: string;
@@ -8332,4 +8470,4 @@ interface ExecutionContext {
8332
8470
  agentId?: string;
8333
8471
  }
8334
8472
 
8335
- export { type CredentialReferenceInsert as $, AgentStopWhenSchema as A, type AgentSelect as B, type ConversationHistoryConfig as C, type ApiKeySelect as D, type ExternalAgentRelationInsert as E, FullGraphAgentInsertSchema as F, GraphStopWhenSchema as G, type ApiKeyInsert as H, type ApiKeyUpdate as I, type CreateApiKeyParams as J, type ApiKeyCreateResult as K, type ArtifactComponentSelect as L, MCPTransportType as M, type ArtifactComponentInsert as N, type ArtifactComponentUpdate as O, type Part as P, type ContextCacheSelect as Q, type ContextCacheInsert as R, StopWhenSchema as S, type TaskMetadataConfig as T, type ContextConfigInsert as U, type ContextConfigUpdate as V, type ConversationSelect as W, type ConversationInsert as X, type ConversationUpdate as Y, type CredentialReferenceSelect as Z, type ToolSelect as _, type StopWhen as a, type ContentTypeNotSupportedError as a$, type CredentialReferenceUpdate as a0, type DataComponentSelect as a1, type DataComponentInsert as a2, type DataComponentUpdate as a3, type ExternalAgentInsert as a4, type ExternalAgentSelect as a5, type ExternalAgentUpdate as a6, type Artifact as a7, type LedgerArtifactSelect as a8, type MessageVisibility as a9, type AgentSkill as aA, type SecuritySchemeBase as aB, type APIKeySecurityScheme as aC, type HTTPAuthSecurityScheme as aD, type OAuthFlows as aE, type AuthorizationCodeOAuthFlow as aF, type ClientCredentialsOAuthFlow as aG, type ImplicitOAuthFlow as aH, type PasswordOAuthFlow as aI, type OAuth2SecurityScheme as aJ, type OpenIdConnectSecurityScheme as aK, type SecurityScheme as aL, type AgentCard as aM, type Message as aN, type TaskStatus as aO, type Task as aP, type TaskStatusUpdateEvent as aQ, type TaskArtifactUpdateEvent as aR, type JSONParseError as aS, type InvalidRequestError as aT, type MethodNotFoundError as aU, type InvalidParamsError as aV, type InternalError as aW, type TaskNotFoundError as aX, type TaskNotCancelableError as aY, type PushNotificationNotSupportedError as aZ, type UnsupportedOperationError as a_, type MessageInsert as aa, type MessageUpdate as ab, type FullProjectDefinition as ac, type ProjectInfo as ad, type ProjectSelect as ae, type PaginationResult as af, type ProjectResourceCounts as ag, type ProjectInsert as ah, type ProjectUpdate as ai, type TaskInsert as aj, type TaskSelect as ak, type McpTool as al, type McpToolStatus as am, type ToolInsert as an, type ToolUpdate as ao, type ExecutionContext as ap, type PartBase as aq, type TextPart as ar, type FileBase as as, type FileWithBytes as at, type FileWithUri as au, type FilePart as av, type DataPart as aw, TaskState as ax, type AgentCapabilities as ay, type AgentProvider as az, type GraphStopWhen as b, type ConversationApiSelect as b$, type InvalidAgentResponseError as b0, type A2AError as b1, type PushNotificationAuthenticationInfo as b2, type PushNotificationConfig as b3, type TaskPushNotificationConfig as b4, type TaskIdParams as b5, type TaskQueryParams as b6, type MessageSendConfiguration as b7, type MessageSendParams as b8, type JSONRPCMessage as b9, type TaskArtifact as bA, type AgentApiSelect as bB, type AgentApiInsert as bC, type AgentApiUpdate as bD, type AgentRelationSelect as bE, type AgentRelationApiSelect as bF, type AgentRelationApiInsert as bG, type AgentRelationApiUpdate as bH, type AgentRelationQuery as bI, type ExternalAgentRelationApiInsert as bJ, type AgentGraphSelect as bK, type AgentGraphApiSelect as bL, type AgentGraphApiInsert as bM, type AgentGraphApiUpdate as bN, type TaskUpdate as bO, type TaskApiSelect as bP, type TaskApiInsert as bQ, type TaskApiUpdate as bR, type TaskRelationSelect as bS, type TaskRelationInsert as bT, type TaskRelationUpdate as bU, type TaskRelationApiSelect as bV, type TaskRelationApiInsert as bW, type TaskRelationApiUpdate as bX, type ToolApiSelect as bY, type ToolApiInsert as bZ, type ToolApiUpdate as b_, type JSONRPCRequest as ba, type JSONRPCError as bb, type JSONRPCResult as bc, type JSONRPCErrorResponse as bd, type SendMessageRequest as be, type SendStreamingMessageRequest as bf, type GetTaskRequest as bg, type CancelTaskRequest as bh, type SetTaskPushNotificationConfigRequest as bi, type GetTaskPushNotificationConfigRequest as bj, type TaskResubscriptionRequest as bk, type SendMessageSuccessResponse as bl, type SendMessageResponse as bm, type SendStreamingMessageSuccessResponse as bn, type SendStreamingMessageResponse as bo, type GetTaskSuccessResponse as bp, type GetTaskResponse as bq, type CancelTaskSuccessResponse as br, type CancelTaskResponse as bs, type SetTaskPushNotificationConfigSuccessResponse as bt, type SetTaskPushNotificationConfigResponse as bu, type GetTaskPushNotificationConfigSuccessResponse as bv, type GetTaskPushNotificationConfigResponse as bw, type A2ARequest as bx, type A2AResponse as by, type MessagePart as bz, type AgentStopWhen as c, type MessageType as c$, type ConversationApiInsert as c0, type ConversationApiUpdate as c1, type MessageSelect as c2, type MessageApiSelect as c3, type MessageApiInsert as c4, type MessageApiUpdate as c5, type ContextConfigApiSelect as c6, type ContextConfigApiInsert as c7, type ContextConfigApiUpdate as c8, type FetchDefinition as c9, type AllAgentSelect as cA, type ApiKeyApiSelect as cB, type ApiKeyApiInsert as cC, type ApiKeyApiUpdate as cD, type ApiKeyApiCreationResponse as cE, type CredentialReferenceApiSelect as cF, type CredentialReferenceApiUpdate as cG, type AgentToolRelationSelect as cH, type AgentToolRelationInsert as cI, type AgentToolRelationApiSelect as cJ, type AgentToolRelationApiInsert as cK, type AgentToolRelationApiUpdate as cL, type LedgerArtifactInsert as cM, type LedgerArtifactUpdate as cN, type LedgerArtifactApiSelect as cO, type LedgerArtifactApiInsert as cP, type LedgerArtifactApiUpdate as cQ, type FullGraphAgentInsert as cR, type CanUseItem as cS, type InternalAgentDefinition as cT, type AgentDefinition as cU, type ToolDefinition as cV, type ProjectApiSelect as cW, type ProjectApiInsert as cX, type ProjectApiUpdate as cY, type Pagination as cZ, type SummaryEvent as c_, type FetchConfig as ca, type ContextCacheUpdate as cb, type ContextCacheApiSelect as cc, type ContextCacheApiInsert as cd, type ContextCacheApiUpdate as ce, type DataComponentApiSelect as cf, type DataComponentApiInsert as cg, type DataComponentApiUpdate as ch, type AgentDataComponentSelect as ci, type AgentDataComponentInsert as cj, type AgentDataComponentUpdate as ck, type AgentDataComponentApiSelect as cl, type AgentDataComponentApiInsert as cm, type AgentDataComponentApiUpdate as cn, type ArtifactComponentApiSelect as co, type ArtifactComponentApiInsert as cp, type ArtifactComponentApiUpdate as cq, type AgentArtifactComponentSelect as cr, type AgentArtifactComponentInsert as cs, type AgentArtifactComponentUpdate as ct, type AgentArtifactComponentApiSelect as cu, type AgentArtifactComponentApiInsert as cv, type AgentArtifactComponentApiUpdate as cw, type ExternalAgentApiSelect as cx, type ExternalAgentApiInsert as cy, type ExternalAgentApiUpdate as cz, CredentialStoreType as d, ToolInsertSchema as d$, type MessageRole as d0, type MessageMode as d1, type Models as d2, type ProjectModels as d3, type ModelSettings as d4, type StatusUpdateSettings as d5, type StatusComponent as d6, type ConversationScopeOptions as d7, type AgentConversationHistoryConfig as d8, type ContextCacheEntry as d9, AgentRelationApiInsertSchema as dA, AgentRelationApiUpdateSchema as dB, AgentRelationQuerySchema as dC, ExternalAgentRelationInsertSchema as dD, ExternalAgentRelationApiInsertSchema as dE, AgentGraphSelectSchema as dF, AgentGraphInsertSchema as dG, AgentGraphUpdateSchema as dH, AgentGraphApiSelectSchema as dI, AgentGraphApiInsertSchema as dJ, AgentGraphApiUpdateSchema as dK, TaskSelectSchema as dL, TaskInsertSchema as dM, TaskUpdateSchema as dN, TaskApiSelectSchema as dO, TaskApiInsertSchema as dP, TaskApiUpdateSchema as dQ, TaskRelationSelectSchema as dR, TaskRelationInsertSchema as dS, TaskRelationUpdateSchema as dT, TaskRelationApiSelectSchema as dU, TaskRelationApiInsertSchema as dV, TaskRelationApiUpdateSchema as dW, McpTransportConfigSchema as dX, ToolStatusSchema as dY, McpToolDefinitionSchema as dZ, ToolSelectSchema as d_, type McpAuthType as da, type McpServerAuth as db, type McpTransportConfig as dc, type McpServerCapabilities as dd, type toolStatus as de, TOOL_STATUS_VALUES as df, VALID_RELATION_TYPES as dg, MCPServerType as dh, MIN_ID_LENGTH as di, MAX_ID_LENGTH as dj, URL_SAFE_ID_PATTERN as dk, resourceIdSchema as dl, ModelSettingsSchema as dm, ModelSchema as dn, ProjectModelSchema as dp, AgentSelectSchema as dq, AgentInsertSchema as dr, AgentUpdateSchema as ds, AgentApiSelectSchema as dt, AgentApiInsertSchema as du, AgentApiUpdateSchema as dv, AgentRelationSelectSchema as dw, AgentRelationInsertSchema as dx, AgentRelationUpdateSchema as dy, AgentRelationApiSelectSchema as dz, type ContextFetchDefinition as e, McpToolSchema as e$, ConversationSelectSchema as e0, ConversationInsertSchema as e1, ConversationUpdateSchema as e2, ConversationApiSelectSchema as e3, ConversationApiInsertSchema as e4, ConversationApiUpdateSchema as e5, MessageSelectSchema as e6, MessageInsertSchema as e7, MessageUpdateSchema as e8, MessageApiSelectSchema as e9, ArtifactComponentApiUpdateSchema as eA, AgentArtifactComponentSelectSchema as eB, AgentArtifactComponentInsertSchema as eC, AgentArtifactComponentUpdateSchema as eD, AgentArtifactComponentApiSelectSchema as eE, AgentArtifactComponentApiInsertSchema as eF, AgentArtifactComponentApiUpdateSchema as eG, ExternalAgentSelectSchema as eH, ExternalAgentInsertSchema as eI, ExternalAgentUpdateSchema as eJ, ExternalAgentApiSelectSchema as eK, ExternalAgentApiInsertSchema as eL, ExternalAgentApiUpdateSchema as eM, AllAgentSchema as eN, ApiKeySelectSchema as eO, ApiKeyInsertSchema as eP, ApiKeyUpdateSchema as eQ, ApiKeyApiSelectSchema as eR, ApiKeyApiCreationResponseSchema as eS, ApiKeyApiInsertSchema as eT, ApiKeyApiUpdateSchema as eU, CredentialReferenceSelectSchema as eV, CredentialReferenceInsertSchema as eW, CredentialReferenceUpdateSchema as eX, CredentialReferenceApiSelectSchema as eY, CredentialReferenceApiInsertSchema as eZ, CredentialReferenceApiUpdateSchema as e_, MessageApiInsertSchema as ea, MessageApiUpdateSchema as eb, ContextCacheSelectSchema as ec, ContextCacheInsertSchema as ed, ContextCacheUpdateSchema as ee, ContextCacheApiSelectSchema as ef, ContextCacheApiInsertSchema as eg, ContextCacheApiUpdateSchema as eh, DataComponentSelectSchema as ei, DataComponentInsertSchema as ej, DataComponentBaseSchema as ek, DataComponentUpdateSchema as el, DataComponentApiSelectSchema as em, DataComponentApiInsertSchema as en, DataComponentApiUpdateSchema as eo, AgentDataComponentSelectSchema as ep, AgentDataComponentInsertSchema as eq, AgentDataComponentUpdateSchema as er, AgentDataComponentApiSelectSchema as es, AgentDataComponentApiInsertSchema as et, AgentDataComponentApiUpdateSchema as eu, ArtifactComponentSelectSchema as ev, ArtifactComponentInsertSchema as ew, ArtifactComponentUpdateSchema as ex, ArtifactComponentApiSelectSchema as ey, ArtifactComponentApiInsertSchema as ez, type ToolMcpConfig as f, MCPToolConfigSchema as f0, ToolUpdateSchema as f1, ToolApiSelectSchema as f2, ToolApiInsertSchema as f3, ToolApiUpdateSchema as f4, FetchConfigSchema as f5, FetchDefinitionSchema as f6, ContextConfigSelectSchema as f7, ContextConfigInsertSchema as f8, ContextConfigUpdateSchema as f9, ProjectSelectSchema as fA, ProjectInsertSchema as fB, ProjectUpdateSchema as fC, ProjectApiSelectSchema as fD, ProjectApiInsertSchema as fE, ProjectApiUpdateSchema as fF, FullProjectDefinitionSchema as fG, HeadersScopeSchema as fH, TenantParamsSchema as fI, TenantProjectParamsSchema as fJ, TenantProjectGraphParamsSchema as fK, TenantProjectGraphIdParamsSchema as fL, TenantProjectIdParamsSchema as fM, TenantIdParamsSchema as fN, IdParamsSchema as fO, PaginationQueryParamsSchema as fP, ContextConfigApiSelectSchema as fa, ContextConfigApiInsertSchema as fb, ContextConfigApiUpdateSchema as fc, AgentToolRelationSelectSchema as fd, AgentToolRelationInsertSchema as fe, AgentToolRelationUpdateSchema as ff, AgentToolRelationApiSelectSchema as fg, AgentToolRelationApiInsertSchema as fh, AgentToolRelationApiUpdateSchema as fi, LedgerArtifactSelectSchema as fj, LedgerArtifactInsertSchema as fk, LedgerArtifactUpdateSchema as fl, LedgerArtifactApiSelectSchema as fm, LedgerArtifactApiInsertSchema as fn, LedgerArtifactApiUpdateSchema as fo, StatusComponentSchema as fp, StatusUpdateSchema as fq, CanUseItemSchema as fr, FullGraphDefinitionSchema as fs, GraphWithinContextOfProjectSchema as ft, PaginationSchema as fu, ListResponseSchema as fv, SingleResponseSchema as fw, ErrorResponseSchema as fx, ExistsResponseSchema as fy, RemovedResponseSchema as fz, type ToolServerCapabilities as g, type McpToolDefinition as h, type ConversationMetadata as i, type MessageContent as j, type MessageMetadata as k, type CredentialReferenceApiInsert as l, type ContextConfigSelect as m, type MCPToolConfig as n, type GraphScopeConfig as o, type ProjectScopeConfig as p, type PaginationConfig as q, type AgentGraphInsert as r, type AgentGraphUpdate as s, type FullGraphDefinition as t, type AgentScopeConfig as u, type AgentRelationInsert as v, type AgentRelationUpdate as w, type AgentToolRelationUpdate as x, type AgentInsert as y, type AgentUpdate as z };
8473
+ export { type CredentialReferenceUpdate as $, AgentStopWhenSchema as A, type ApiKeySelect as B, type ConversationHistoryConfig as C, type ApiKeyInsert as D, type ExternalAgentRelationInsert as E, FullGraphAgentInsertSchema as F, GraphStopWhenSchema as G, type ApiKeyUpdate as H, type CreateApiKeyParams as I, type ApiKeyCreateResult as J, type ArtifactComponentSelect as K, type ArtifactComponentInsert as L, MCPTransportType as M, type ArtifactComponentUpdate as N, type ContextCacheSelect as O, type Part as P, type ContextCacheInsert as Q, type ContextConfigInsert as R, StopWhenSchema as S, type TaskMetadataConfig as T, type ContextConfigUpdate as U, type ConversationSelect as V, type ConversationInsert as W, type ConversationUpdate as X, type CredentialReferenceSelect as Y, type ToolSelect as Z, type CredentialReferenceInsert as _, type StopWhen as a, type A2AError as a$, type DataComponentSelect as a0, type DataComponentInsert as a1, type DataComponentUpdate as a2, type ExternalAgentInsert as a3, type ExternalAgentSelect as a4, type ExternalAgentUpdate as a5, type Artifact as a6, type LedgerArtifactSelect as a7, type MessageVisibility as a8, type MessageInsert as a9, type APIKeySecurityScheme as aA, type HTTPAuthSecurityScheme as aB, type OAuthFlows as aC, type AuthorizationCodeOAuthFlow as aD, type ClientCredentialsOAuthFlow as aE, type ImplicitOAuthFlow as aF, type PasswordOAuthFlow as aG, type OAuth2SecurityScheme as aH, type OpenIdConnectSecurityScheme as aI, type SecurityScheme as aJ, type AgentCard as aK, type Message as aL, type TaskStatus as aM, type Task as aN, type TaskStatusUpdateEvent as aO, type TaskArtifactUpdateEvent as aP, type JSONParseError as aQ, type InvalidRequestError as aR, type MethodNotFoundError as aS, type InvalidParamsError as aT, type InternalError as aU, type TaskNotFoundError as aV, type TaskNotCancelableError as aW, type PushNotificationNotSupportedError as aX, type UnsupportedOperationError as aY, type ContentTypeNotSupportedError as aZ, type InvalidAgentResponseError as a_, type MessageUpdate as aa, type FullProjectDefinition as ab, type ProjectInfo as ac, type ProjectSelect as ad, type PaginationResult as ae, type ProjectResourceCounts as af, type ProjectInsert as ag, type ProjectUpdate as ah, type TaskInsert as ai, type TaskSelect as aj, type McpTool as ak, type ToolInsert as al, type ToolUpdate as am, type ExecutionContext as an, type PartBase as ao, type TextPart as ap, type FileBase as aq, type FileWithBytes as ar, type FileWithUri as as, type FilePart as at, type DataPart as au, TaskState as av, type AgentCapabilities as aw, type AgentProvider as ax, type AgentSkill as ay, type SecuritySchemeBase as az, type GraphStopWhen as b, type ConversationApiUpdate as b$, type PushNotificationAuthenticationInfo as b0, type PushNotificationConfig as b1, type TaskPushNotificationConfig as b2, type TaskIdParams as b3, type TaskQueryParams as b4, type MessageSendConfiguration as b5, type MessageSendParams as b6, type JSONRPCMessage as b7, type JSONRPCRequest as b8, type JSONRPCError as b9, type AgentApiInsert as bA, type AgentApiUpdate as bB, type AgentRelationSelect as bC, type AgentRelationApiSelect as bD, type AgentRelationApiInsert as bE, type AgentRelationApiUpdate as bF, type AgentRelationQuery as bG, type ExternalAgentRelationApiInsert as bH, type AgentGraphSelect as bI, type AgentGraphApiSelect as bJ, type AgentGraphApiInsert as bK, type AgentGraphApiUpdate as bL, type TaskUpdate as bM, type TaskApiSelect as bN, type TaskApiInsert as bO, type TaskApiUpdate as bP, type TaskRelationSelect as bQ, type TaskRelationInsert as bR, type TaskRelationUpdate as bS, type TaskRelationApiSelect as bT, type TaskRelationApiInsert as bU, type TaskRelationApiUpdate as bV, type ToolApiSelect as bW, type ToolApiInsert as bX, type ToolApiUpdate as bY, type ConversationApiSelect as bZ, type ConversationApiInsert as b_, type JSONRPCResult as ba, type JSONRPCErrorResponse as bb, type SendMessageRequest as bc, type SendStreamingMessageRequest as bd, type GetTaskRequest as be, type CancelTaskRequest as bf, type SetTaskPushNotificationConfigRequest as bg, type GetTaskPushNotificationConfigRequest as bh, type TaskResubscriptionRequest as bi, type SendMessageSuccessResponse as bj, type SendMessageResponse as bk, type SendStreamingMessageSuccessResponse as bl, type SendStreamingMessageResponse as bm, type GetTaskSuccessResponse as bn, type GetTaskResponse as bo, type CancelTaskSuccessResponse as bp, type CancelTaskResponse as bq, type SetTaskPushNotificationConfigSuccessResponse as br, type SetTaskPushNotificationConfigResponse as bs, type GetTaskPushNotificationConfigSuccessResponse as bt, type GetTaskPushNotificationConfigResponse as bu, type A2ARequest as bv, type A2AResponse as bw, type MessagePart as bx, type TaskArtifact as by, type AgentApiSelect as bz, type AgentStopWhen as c, type MessageMode as c$, type MessageSelect as c0, type MessageApiSelect as c1, type MessageApiInsert as c2, type MessageApiUpdate as c3, type ContextConfigApiSelect as c4, type ContextConfigApiInsert as c5, type ContextConfigApiUpdate as c6, type FetchDefinition as c7, type FetchConfig as c8, type ContextCacheUpdate as c9, type ApiKeyApiInsert as cA, type ApiKeyApiUpdate as cB, type ApiKeyApiCreationResponse as cC, type CredentialReferenceApiSelect as cD, type CredentialReferenceApiUpdate as cE, type AgentToolRelationSelect as cF, type AgentToolRelationInsert as cG, type AgentToolRelationApiSelect as cH, type AgentToolRelationApiInsert as cI, type AgentToolRelationApiUpdate as cJ, type LedgerArtifactInsert as cK, type LedgerArtifactUpdate as cL, type LedgerArtifactApiSelect as cM, type LedgerArtifactApiInsert as cN, type LedgerArtifactApiUpdate as cO, type FullGraphAgentInsert as cP, type CanUseItem as cQ, type InternalAgentDefinition as cR, type AgentDefinition as cS, type ToolDefinition as cT, type ProjectApiSelect as cU, type ProjectApiInsert as cV, type ProjectApiUpdate as cW, type Pagination as cX, type SummaryEvent as cY, type MessageType as cZ, type MessageRole as c_, type ContextCacheApiSelect as ca, type ContextCacheApiInsert as cb, type ContextCacheApiUpdate as cc, type DataComponentApiSelect as cd, type DataComponentApiInsert as ce, type DataComponentApiUpdate as cf, type AgentDataComponentSelect as cg, type AgentDataComponentInsert as ch, type AgentDataComponentUpdate as ci, type AgentDataComponentApiSelect as cj, type AgentDataComponentApiInsert as ck, type AgentDataComponentApiUpdate as cl, type ArtifactComponentApiSelect as cm, type ArtifactComponentApiInsert as cn, type ArtifactComponentApiUpdate as co, type AgentArtifactComponentSelect as cp, type AgentArtifactComponentInsert as cq, type AgentArtifactComponentUpdate as cr, type AgentArtifactComponentApiSelect as cs, type AgentArtifactComponentApiInsert as ct, type AgentArtifactComponentApiUpdate as cu, type ExternalAgentApiSelect as cv, type ExternalAgentApiInsert as cw, type ExternalAgentApiUpdate as cx, type AllAgentSelect as cy, type ApiKeyApiSelect as cz, CredentialStoreType as d, ConversationInsertSchema as d$, type Models as d0, type ProjectModels as d1, type ModelSettings as d2, type StatusUpdateSettings as d3, type StatusComponent as d4, type ConversationScopeOptions as d5, type AgentConversationHistoryConfig as d6, type ContextCacheEntry as d7, type McpAuthType as d8, type McpServerAuth as d9, AgentRelationQuerySchema as dA, ExternalAgentRelationInsertSchema as dB, ExternalAgentRelationApiInsertSchema as dC, AgentGraphSelectSchema as dD, AgentGraphInsertSchema as dE, AgentGraphUpdateSchema as dF, AgentGraphApiSelectSchema as dG, AgentGraphApiInsertSchema as dH, AgentGraphApiUpdateSchema as dI, TaskSelectSchema as dJ, TaskInsertSchema as dK, TaskUpdateSchema as dL, TaskApiSelectSchema as dM, TaskApiInsertSchema as dN, TaskApiUpdateSchema as dO, TaskRelationSelectSchema as dP, TaskRelationInsertSchema as dQ, TaskRelationUpdateSchema as dR, TaskRelationApiSelectSchema as dS, TaskRelationApiInsertSchema as dT, TaskRelationApiUpdateSchema as dU, McpTransportConfigSchema as dV, ToolStatusSchema as dW, McpToolDefinitionSchema as dX, ToolSelectSchema as dY, ToolInsertSchema as dZ, ConversationSelectSchema as d_, type McpTransportConfig as da, type McpServerCapabilities as db, type McpToolDefinition as dc, TOOL_STATUS_VALUES as dd, VALID_RELATION_TYPES as de, MCPServerType as df, MIN_ID_LENGTH as dg, MAX_ID_LENGTH as dh, URL_SAFE_ID_PATTERN as di, resourceIdSchema as dj, ModelSettingsSchema as dk, ModelSchema as dl, ProjectModelSchema as dm, AgentSelectSchema as dn, AgentInsertSchema as dp, AgentUpdateSchema as dq, AgentApiSelectSchema as dr, AgentApiInsertSchema as ds, AgentApiUpdateSchema as dt, AgentRelationSelectSchema as du, AgentRelationInsertSchema as dv, AgentRelationUpdateSchema as dw, AgentRelationApiSelectSchema as dx, AgentRelationApiInsertSchema as dy, AgentRelationApiUpdateSchema as dz, type ContextFetchDefinition as e, ToolUpdateSchema as e$, ConversationUpdateSchema as e0, ConversationApiSelectSchema as e1, ConversationApiInsertSchema as e2, ConversationApiUpdateSchema as e3, MessageSelectSchema as e4, MessageInsertSchema as e5, MessageUpdateSchema as e6, MessageApiSelectSchema as e7, MessageApiInsertSchema as e8, MessageApiUpdateSchema as e9, AgentArtifactComponentInsertSchema as eA, AgentArtifactComponentUpdateSchema as eB, AgentArtifactComponentApiSelectSchema as eC, AgentArtifactComponentApiInsertSchema as eD, AgentArtifactComponentApiUpdateSchema as eE, ExternalAgentSelectSchema as eF, ExternalAgentInsertSchema as eG, ExternalAgentUpdateSchema as eH, ExternalAgentApiSelectSchema as eI, ExternalAgentApiInsertSchema as eJ, ExternalAgentApiUpdateSchema as eK, AllAgentSchema as eL, ApiKeySelectSchema as eM, ApiKeyInsertSchema as eN, ApiKeyUpdateSchema as eO, ApiKeyApiSelectSchema as eP, ApiKeyApiCreationResponseSchema as eQ, ApiKeyApiInsertSchema as eR, ApiKeyApiUpdateSchema as eS, CredentialReferenceSelectSchema as eT, CredentialReferenceInsertSchema as eU, CredentialReferenceUpdateSchema as eV, CredentialReferenceApiSelectSchema as eW, CredentialReferenceApiInsertSchema as eX, CredentialReferenceApiUpdateSchema as eY, McpToolSchema as eZ, MCPToolConfigSchema as e_, ContextCacheSelectSchema as ea, ContextCacheInsertSchema as eb, ContextCacheUpdateSchema as ec, ContextCacheApiSelectSchema as ed, ContextCacheApiInsertSchema as ee, ContextCacheApiUpdateSchema as ef, DataComponentSelectSchema as eg, DataComponentInsertSchema as eh, DataComponentBaseSchema as ei, DataComponentUpdateSchema as ej, DataComponentApiSelectSchema as ek, DataComponentApiInsertSchema as el, DataComponentApiUpdateSchema as em, AgentDataComponentSelectSchema as en, AgentDataComponentInsertSchema as eo, AgentDataComponentUpdateSchema as ep, AgentDataComponentApiSelectSchema as eq, AgentDataComponentApiInsertSchema as er, AgentDataComponentApiUpdateSchema as es, ArtifactComponentSelectSchema as et, ArtifactComponentInsertSchema as eu, ArtifactComponentUpdateSchema as ev, ArtifactComponentApiSelectSchema as ew, ArtifactComponentApiInsertSchema as ex, ArtifactComponentApiUpdateSchema as ey, AgentArtifactComponentSelectSchema as ez, type ToolMcpConfig as f, ToolApiSelectSchema as f0, ToolApiInsertSchema as f1, ToolApiUpdateSchema as f2, FetchConfigSchema as f3, FetchDefinitionSchema as f4, ContextConfigSelectSchema as f5, ContextConfigInsertSchema as f6, ContextConfigUpdateSchema as f7, ContextConfigApiSelectSchema as f8, ContextConfigApiInsertSchema as f9, ProjectUpdateSchema as fA, ProjectApiSelectSchema as fB, ProjectApiInsertSchema as fC, ProjectApiUpdateSchema as fD, FullProjectDefinitionSchema as fE, HeadersScopeSchema as fF, TenantParamsSchema as fG, TenantProjectParamsSchema as fH, TenantProjectGraphParamsSchema as fI, TenantProjectGraphIdParamsSchema as fJ, TenantProjectIdParamsSchema as fK, TenantIdParamsSchema as fL, IdParamsSchema as fM, PaginationQueryParamsSchema as fN, ContextConfigApiUpdateSchema as fa, AgentToolRelationSelectSchema as fb, AgentToolRelationInsertSchema as fc, AgentToolRelationUpdateSchema as fd, AgentToolRelationApiSelectSchema as fe, AgentToolRelationApiInsertSchema as ff, AgentToolRelationApiUpdateSchema as fg, LedgerArtifactSelectSchema as fh, LedgerArtifactInsertSchema as fi, LedgerArtifactUpdateSchema as fj, LedgerArtifactApiSelectSchema as fk, LedgerArtifactApiInsertSchema as fl, LedgerArtifactApiUpdateSchema as fm, StatusComponentSchema as fn, StatusUpdateSchema as fo, CanUseItemSchema as fp, FullGraphDefinitionSchema as fq, GraphWithinContextOfProjectSchema as fr, PaginationSchema as fs, ListResponseSchema as ft, SingleResponseSchema as fu, ErrorResponseSchema as fv, ExistsResponseSchema as fw, RemovedResponseSchema as fx, ProjectSelectSchema as fy, ProjectInsertSchema as fz, type ToolServerCapabilities as g, type ConversationMetadata as h, type MessageContent as i, type MessageMetadata as j, type CredentialReferenceApiInsert as k, type ContextConfigSelect as l, type MCPToolConfig as m, type GraphScopeConfig as n, type ProjectScopeConfig as o, type PaginationConfig as p, type AgentGraphInsert as q, type AgentGraphUpdate as r, type FullGraphDefinition as s, type AgentScopeConfig as t, type AgentRelationInsert as u, type AgentRelationUpdate as v, type AgentToolRelationUpdate as w, type AgentInsert as x, type AgentUpdate as y, type AgentSelect as z };