@inkeep/agents-core 0.0.0-dev-20251010175818 → 0.0.0-dev-20251010183741

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.
@@ -2735,13 +2735,6 @@ declare const ToolSelectSchema: drizzle_zod.BuildSchema<"select", {
2735
2735
  data: {
2736
2736
  type: "mcp";
2737
2737
  mcp: ToolMcpConfig;
2738
- } | {
2739
- type: "function";
2740
- function?: {
2741
- inputSchema: Record<string, unknown>;
2742
- executeCode: string;
2743
- dependencies: Record<string, unknown>;
2744
- };
2745
2738
  };
2746
2739
  driverParam: Buffer<ArrayBufferLike>;
2747
2740
  notNull: true;
@@ -2757,34 +2750,8 @@ declare const ToolSelectSchema: drizzle_zod.BuildSchema<"select", {
2757
2750
  $type: {
2758
2751
  type: "mcp";
2759
2752
  mcp: ToolMcpConfig;
2760
- } | {
2761
- type: "function";
2762
- function?: {
2763
- inputSchema: Record<string, unknown>;
2764
- executeCode: string;
2765
- dependencies: Record<string, unknown>;
2766
- };
2767
2753
  };
2768
2754
  }>;
2769
- functionId: drizzle_orm_sqlite_core.SQLiteColumn<{
2770
- name: "function_id";
2771
- tableName: "tools";
2772
- dataType: "string";
2773
- columnType: "SQLiteText";
2774
- data: string;
2775
- driverParam: string;
2776
- notNull: false;
2777
- hasDefault: false;
2778
- isPrimaryKey: false;
2779
- isAutoincrement: false;
2780
- hasRuntimeDefault: false;
2781
- enumValues: [string, ...string[]];
2782
- baseColumn: never;
2783
- identity: undefined;
2784
- generated: undefined;
2785
- }, {}, {
2786
- length: number | undefined;
2787
- }>;
2788
2755
  credentialReferenceId: drizzle_orm_sqlite_core.SQLiteColumn<{
2789
2756
  name: "credential_reference_id";
2790
2757
  tableName: "tools";
@@ -2951,8 +2918,7 @@ declare const ToolInsertSchema: z.ZodObject<{
2951
2918
  tenantId: z.ZodString;
2952
2919
  id: z.ZodString;
2953
2920
  imageUrl: z.ZodOptional<z.ZodString>;
2954
- functionId: z.ZodOptional<z.ZodString>;
2955
- config: z.ZodDiscriminatedUnion<[z.ZodObject<{
2921
+ config: z.ZodObject<{
2956
2922
  type: z.ZodLiteral<"mcp">;
2957
2923
  mcp: z.ZodObject<{
2958
2924
  server: z.ZodObject<{
@@ -2970,9 +2936,7 @@ declare const ToolInsertSchema: z.ZodObject<{
2970
2936
  }, z.core.$strip>>;
2971
2937
  activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
2972
2938
  }, z.core.$strip>;
2973
- }, z.core.$strip>, z.ZodObject<{
2974
- type: z.ZodLiteral<"function">;
2975
- }, z.core.$strip>], "type">;
2939
+ }, z.core.$strip>;
2976
2940
  }, {
2977
2941
  out: {};
2978
2942
  in: {};
@@ -5755,13 +5719,6 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
5755
5719
  data: {
5756
5720
  type: "mcp";
5757
5721
  mcp: ToolMcpConfig;
5758
- } | {
5759
- type: "function";
5760
- function?: {
5761
- inputSchema: Record<string, unknown>;
5762
- executeCode: string;
5763
- dependencies: Record<string, unknown>;
5764
- };
5765
5722
  };
5766
5723
  driverParam: Buffer<ArrayBufferLike>;
5767
5724
  notNull: true;
@@ -5777,34 +5734,8 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
5777
5734
  $type: {
5778
5735
  type: "mcp";
5779
5736
  mcp: ToolMcpConfig;
5780
- } | {
5781
- type: "function";
5782
- function?: {
5783
- inputSchema: Record<string, unknown>;
5784
- executeCode: string;
5785
- dependencies: Record<string, unknown>;
5786
- };
5787
5737
  };
5788
5738
  }>;
5789
- functionId: drizzle_orm_sqlite_core.SQLiteColumn<{
5790
- name: "function_id";
5791
- tableName: "tools";
5792
- dataType: "string";
5793
- columnType: "SQLiteText";
5794
- data: string;
5795
- driverParam: string;
5796
- notNull: false;
5797
- hasDefault: false;
5798
- isPrimaryKey: false;
5799
- isAutoincrement: false;
5800
- hasRuntimeDefault: false;
5801
- enumValues: [string, ...string[]];
5802
- baseColumn: never;
5803
- identity: undefined;
5804
- generated: undefined;
5805
- }, {}, {
5806
- length: number | undefined;
5807
- }>;
5808
5739
  credentialReferenceId: drizzle_orm_sqlite_core.SQLiteColumn<{
5809
5740
  name: "credential_reference_id";
5810
5741
  tableName: "tools";
@@ -5993,8 +5924,7 @@ declare const McpToolSchema: z.ZodObject<{
5993
5924
  projectId: z.ZodString;
5994
5925
  tenantId: z.ZodString;
5995
5926
  id: z.ZodString;
5996
- functionId: z.ZodOptional<z.ZodString>;
5997
- config: z.ZodDiscriminatedUnion<[z.ZodObject<{
5927
+ config: z.ZodObject<{
5998
5928
  type: z.ZodLiteral<"mcp">;
5999
5929
  mcp: z.ZodObject<{
6000
5930
  server: z.ZodObject<{
@@ -6012,9 +5942,7 @@ declare const McpToolSchema: z.ZodObject<{
6012
5942
  }, z.core.$strip>>;
6013
5943
  activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
6014
5944
  }, z.core.$strip>;
6015
- }, z.core.$strip>, z.ZodObject<{
6016
- type: z.ZodLiteral<"function">;
6017
- }, z.core.$strip>], "type">;
5945
+ }, z.core.$strip>;
6018
5946
  imageUrl: z.ZodOptional<z.ZodString>;
6019
5947
  availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
6020
5948
  name: z.ZodString;
@@ -6039,7 +5967,6 @@ declare const MCPToolConfigSchema: z.ZodObject<{
6039
5967
  name: z.ZodString;
6040
5968
  headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
6041
5969
  capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
6042
- functionId: z.ZodOptional<z.ZodString>;
6043
5970
  imageUrl: z.ZodOptional<z.ZodString>;
6044
5971
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6045
5972
  availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -6095,8 +6022,7 @@ declare const ToolUpdateSchema: z.ZodObject<{
6095
6022
  tenantId: z.ZodOptional<z.ZodString>;
6096
6023
  id: z.ZodOptional<z.ZodString>;
6097
6024
  imageUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6098
- functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6099
- config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
6025
+ config: z.ZodOptional<z.ZodObject<{
6100
6026
  type: z.ZodLiteral<"mcp">;
6101
6027
  mcp: z.ZodObject<{
6102
6028
  server: z.ZodObject<{
@@ -6114,9 +6040,7 @@ declare const ToolUpdateSchema: z.ZodObject<{
6114
6040
  }, z.core.$strip>>;
6115
6041
  activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
6116
6042
  }, z.core.$strip>;
6117
- }, z.core.$strip>, z.ZodObject<{
6118
- type: z.ZodLiteral<"function">;
6119
- }, z.core.$strip>], "type">>;
6043
+ }, z.core.$strip>>;
6120
6044
  }, {
6121
6045
  out: {};
6122
6046
  in: {};
@@ -6128,50 +6052,21 @@ declare const ToolApiSelectSchema: z.ZodObject<{
6128
6052
  config: z.ZodType<{
6129
6053
  type: "mcp";
6130
6054
  mcp: ToolMcpConfig;
6131
- } | {
6132
- type: "function";
6133
- function?: {
6134
- inputSchema: Record<string, unknown>;
6135
- executeCode: string;
6136
- dependencies: Record<string, unknown>;
6137
- };
6138
6055
  }, {
6139
6056
  type: "mcp";
6140
6057
  mcp: ToolMcpConfig;
6141
- } | {
6142
- type: "function";
6143
- function?: {
6144
- inputSchema: Record<string, unknown>;
6145
- executeCode: string;
6146
- dependencies: Record<string, unknown>;
6147
- };
6148
6058
  }, z.core.$ZodTypeInternals<{
6149
6059
  type: "mcp";
6150
6060
  mcp: ToolMcpConfig;
6151
- } | {
6152
- type: "function";
6153
- function?: {
6154
- inputSchema: Record<string, unknown>;
6155
- executeCode: string;
6156
- dependencies: Record<string, unknown>;
6157
- };
6158
6061
  }, {
6159
6062
  type: "mcp";
6160
6063
  mcp: ToolMcpConfig;
6161
- } | {
6162
- type: "function";
6163
- function?: {
6164
- inputSchema: Record<string, unknown>;
6165
- executeCode: string;
6166
- dependencies: Record<string, unknown>;
6167
- };
6168
6064
  }>>;
6169
6065
  credentialReferenceId: z.ZodNullable<z.ZodString>;
6170
6066
  createdAt: z.ZodString;
6171
6067
  updatedAt: z.ZodString;
6172
6068
  headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
6173
6069
  capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
6174
- functionId: z.ZodNullable<z.ZodString>;
6175
6070
  imageUrl: z.ZodNullable<z.ZodString>;
6176
6071
  lastError: z.ZodNullable<z.ZodString>;
6177
6072
  }, z.core.$strip>;
@@ -6179,7 +6074,7 @@ declare const ToolApiInsertSchema: z.ZodObject<{
6179
6074
  id: z.ZodString;
6180
6075
  name: z.ZodString;
6181
6076
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6182
- config: z.ZodDiscriminatedUnion<[z.ZodObject<{
6077
+ config: z.ZodObject<{
6183
6078
  type: z.ZodLiteral<"mcp">;
6184
6079
  mcp: z.ZodObject<{
6185
6080
  server: z.ZodObject<{
@@ -6197,15 +6092,12 @@ declare const ToolApiInsertSchema: z.ZodObject<{
6197
6092
  }, z.core.$strip>>;
6198
6093
  activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
6199
6094
  }, z.core.$strip>;
6200
- }, z.core.$strip>, z.ZodObject<{
6201
- type: z.ZodLiteral<"function">;
6202
- }, z.core.$strip>], "type">;
6095
+ }, z.core.$strip>;
6203
6096
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6204
6097
  createdAt: z.ZodOptional<z.ZodString>;
6205
6098
  updatedAt: z.ZodOptional<z.ZodString>;
6206
6099
  headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
6207
6100
  capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
6208
- functionId: z.ZodOptional<z.ZodString>;
6209
6101
  imageUrl: z.ZodOptional<z.ZodString>;
6210
6102
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6211
6103
  }, z.core.$strip>;
@@ -6213,7 +6105,7 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
6213
6105
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6214
6106
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6215
6107
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
6216
- config: z.ZodOptional<z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
6108
+ config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
6217
6109
  type: z.ZodLiteral<"mcp">;
6218
6110
  mcp: z.ZodObject<{
6219
6111
  server: z.ZodObject<{
@@ -6231,18 +6123,242 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
6231
6123
  }, z.core.$strip>>;
6232
6124
  activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
6233
6125
  }, z.core.$strip>;
6234
- }, z.core.$strip>, z.ZodObject<{
6235
- type: z.ZodLiteral<"function">;
6236
- }, z.core.$strip>], "type">>>;
6126
+ }, z.core.$strip>>>;
6237
6127
  credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
6238
6128
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
6239
6129
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
6240
6130
  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>>>>>>>;
6241
6131
  capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
6242
- functionId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
6243
6132
  imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
6244
6133
  lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
6245
6134
  }, z.core.$strip>;
6135
+ declare const FunctionToolSelectSchema: drizzle_zod.BuildSchema<"select", {
6136
+ createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
6137
+ name: "created_at";
6138
+ tableName: "function_tools";
6139
+ dataType: "string";
6140
+ columnType: "SQLiteText";
6141
+ data: string;
6142
+ driverParam: string;
6143
+ notNull: true;
6144
+ hasDefault: true;
6145
+ isPrimaryKey: false;
6146
+ isAutoincrement: false;
6147
+ hasRuntimeDefault: false;
6148
+ enumValues: [string, ...string[]];
6149
+ baseColumn: never;
6150
+ identity: undefined;
6151
+ generated: undefined;
6152
+ }, {}, {
6153
+ length: number | undefined;
6154
+ }>;
6155
+ updatedAt: drizzle_orm_sqlite_core.SQLiteColumn<{
6156
+ name: "updated_at";
6157
+ tableName: "function_tools";
6158
+ dataType: "string";
6159
+ columnType: "SQLiteText";
6160
+ data: string;
6161
+ driverParam: string;
6162
+ notNull: true;
6163
+ hasDefault: true;
6164
+ isPrimaryKey: false;
6165
+ isAutoincrement: false;
6166
+ hasRuntimeDefault: false;
6167
+ enumValues: [string, ...string[]];
6168
+ baseColumn: never;
6169
+ identity: undefined;
6170
+ generated: undefined;
6171
+ }, {}, {
6172
+ length: number | undefined;
6173
+ }>;
6174
+ name: drizzle_orm_sqlite_core.SQLiteColumn<{
6175
+ name: "name";
6176
+ tableName: "function_tools";
6177
+ dataType: "string";
6178
+ columnType: "SQLiteText";
6179
+ data: string;
6180
+ driverParam: string;
6181
+ notNull: true;
6182
+ hasDefault: false;
6183
+ isPrimaryKey: false;
6184
+ isAutoincrement: false;
6185
+ hasRuntimeDefault: false;
6186
+ enumValues: [string, ...string[]];
6187
+ baseColumn: never;
6188
+ identity: undefined;
6189
+ generated: undefined;
6190
+ }, {}, {
6191
+ length: number | undefined;
6192
+ }>;
6193
+ description: drizzle_orm_sqlite_core.SQLiteColumn<{
6194
+ name: "description";
6195
+ tableName: "function_tools";
6196
+ dataType: "string";
6197
+ columnType: "SQLiteText";
6198
+ data: string;
6199
+ driverParam: string;
6200
+ notNull: false;
6201
+ hasDefault: false;
6202
+ isPrimaryKey: false;
6203
+ isAutoincrement: false;
6204
+ hasRuntimeDefault: false;
6205
+ enumValues: [string, ...string[]];
6206
+ baseColumn: never;
6207
+ identity: undefined;
6208
+ generated: undefined;
6209
+ }, {}, {
6210
+ length: number | undefined;
6211
+ }>;
6212
+ functionId: drizzle_orm_sqlite_core.SQLiteColumn<{
6213
+ name: "function_id";
6214
+ tableName: "function_tools";
6215
+ dataType: "string";
6216
+ columnType: "SQLiteText";
6217
+ data: string;
6218
+ driverParam: string;
6219
+ notNull: true;
6220
+ hasDefault: false;
6221
+ isPrimaryKey: false;
6222
+ isAutoincrement: false;
6223
+ hasRuntimeDefault: false;
6224
+ enumValues: [string, ...string[]];
6225
+ baseColumn: never;
6226
+ identity: undefined;
6227
+ generated: undefined;
6228
+ }, {}, {
6229
+ length: number | undefined;
6230
+ }>;
6231
+ graphId: drizzle_orm_sqlite_core.SQLiteColumn<{
6232
+ name: "graph_id";
6233
+ tableName: "function_tools";
6234
+ dataType: "string";
6235
+ columnType: "SQLiteText";
6236
+ data: string;
6237
+ driverParam: string;
6238
+ notNull: true;
6239
+ hasDefault: false;
6240
+ isPrimaryKey: false;
6241
+ isAutoincrement: false;
6242
+ hasRuntimeDefault: false;
6243
+ enumValues: [string, ...string[]];
6244
+ baseColumn: never;
6245
+ identity: undefined;
6246
+ generated: undefined;
6247
+ }, {}, {
6248
+ length: number | undefined;
6249
+ }>;
6250
+ projectId: drizzle_orm_sqlite_core.SQLiteColumn<{
6251
+ name: "project_id";
6252
+ tableName: "function_tools";
6253
+ dataType: "string";
6254
+ columnType: "SQLiteText";
6255
+ data: string;
6256
+ driverParam: string;
6257
+ notNull: true;
6258
+ hasDefault: false;
6259
+ isPrimaryKey: false;
6260
+ isAutoincrement: false;
6261
+ hasRuntimeDefault: false;
6262
+ enumValues: [string, ...string[]];
6263
+ baseColumn: never;
6264
+ identity: undefined;
6265
+ generated: undefined;
6266
+ }, {}, {
6267
+ length: number | undefined;
6268
+ }>;
6269
+ tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
6270
+ name: "tenant_id";
6271
+ tableName: "function_tools";
6272
+ dataType: "string";
6273
+ columnType: "SQLiteText";
6274
+ data: string;
6275
+ driverParam: string;
6276
+ notNull: true;
6277
+ hasDefault: false;
6278
+ isPrimaryKey: false;
6279
+ isAutoincrement: false;
6280
+ hasRuntimeDefault: false;
6281
+ enumValues: [string, ...string[]];
6282
+ baseColumn: never;
6283
+ identity: undefined;
6284
+ generated: undefined;
6285
+ }, {}, {
6286
+ length: number | undefined;
6287
+ }>;
6288
+ id: drizzle_orm_sqlite_core.SQLiteColumn<{
6289
+ name: "id";
6290
+ tableName: "function_tools";
6291
+ dataType: "string";
6292
+ columnType: "SQLiteText";
6293
+ data: string;
6294
+ driverParam: string;
6295
+ notNull: true;
6296
+ hasDefault: false;
6297
+ isPrimaryKey: false;
6298
+ isAutoincrement: false;
6299
+ hasRuntimeDefault: false;
6300
+ enumValues: [string, ...string[]];
6301
+ baseColumn: never;
6302
+ identity: undefined;
6303
+ generated: undefined;
6304
+ }, {}, {
6305
+ length: number | undefined;
6306
+ }>;
6307
+ }, undefined, undefined>;
6308
+ declare const FunctionToolInsertSchema: z.ZodObject<{
6309
+ createdAt: z.ZodOptional<z.ZodString>;
6310
+ updatedAt: z.ZodOptional<z.ZodString>;
6311
+ name: z.ZodString;
6312
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6313
+ functionId: z.ZodString;
6314
+ graphId: z.ZodString;
6315
+ projectId: z.ZodString;
6316
+ tenantId: z.ZodString;
6317
+ id: z.ZodString;
6318
+ }, {
6319
+ out: {};
6320
+ in: {};
6321
+ }>;
6322
+ declare const FunctionToolUpdateSchema: z.ZodObject<{
6323
+ createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6324
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6325
+ name: z.ZodOptional<z.ZodString>;
6326
+ description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
6327
+ functionId: z.ZodOptional<z.ZodString>;
6328
+ graphId: z.ZodOptional<z.ZodString>;
6329
+ projectId: z.ZodOptional<z.ZodString>;
6330
+ tenantId: z.ZodOptional<z.ZodString>;
6331
+ id: z.ZodOptional<z.ZodString>;
6332
+ }, {
6333
+ out: {};
6334
+ in: {};
6335
+ }>;
6336
+ declare const FunctionToolApiSelectSchema: z.ZodObject<{
6337
+ id: z.ZodString;
6338
+ name: z.ZodString;
6339
+ description: z.ZodNullable<z.ZodString>;
6340
+ graphId: z.ZodString;
6341
+ createdAt: z.ZodString;
6342
+ updatedAt: z.ZodString;
6343
+ functionId: z.ZodString;
6344
+ }, z.core.$strip>;
6345
+ declare const FunctionToolApiInsertSchema: z.ZodObject<{
6346
+ id: z.ZodString;
6347
+ name: z.ZodString;
6348
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6349
+ createdAt: z.ZodOptional<z.ZodString>;
6350
+ updatedAt: z.ZodOptional<z.ZodString>;
6351
+ functionId: z.ZodString;
6352
+ }, z.core.$strip>;
6353
+ declare const FunctionToolApiUpdateSchema: z.ZodObject<{
6354
+ id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6355
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6356
+ description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
6357
+ graphId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6358
+ createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
6359
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
6360
+ functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6361
+ }, z.core.$strip>;
6246
6362
  declare const FunctionSelectSchema: drizzle_zod.BuildSchema<"select", {
6247
6363
  createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
6248
6364
  name: "created_at";
@@ -7636,6 +7752,152 @@ declare const FullGraphAgentInsertSchema: z.ZodObject<{
7636
7752
  canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
7637
7753
  canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
7638
7754
  }, z.core.$strip>;
7755
+ declare const FullGraphDefinitionSchema: z.ZodObject<{
7756
+ name: z.ZodString;
7757
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7758
+ createdAt: z.ZodOptional<z.ZodString>;
7759
+ updatedAt: z.ZodOptional<z.ZodString>;
7760
+ defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7761
+ contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7762
+ id: z.ZodString;
7763
+ subAgents: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
7764
+ id: z.ZodString;
7765
+ name: z.ZodString;
7766
+ description: z.ZodString;
7767
+ prompt: z.ZodString;
7768
+ createdAt: z.ZodOptional<z.ZodString>;
7769
+ updatedAt: z.ZodOptional<z.ZodString>;
7770
+ models: z.ZodOptional<z.ZodObject<{
7771
+ base: z.ZodOptional<z.ZodObject<{
7772
+ model: z.ZodOptional<z.ZodString>;
7773
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
7774
+ }, z.core.$strip>>;
7775
+ structuredOutput: z.ZodOptional<z.ZodObject<{
7776
+ model: z.ZodOptional<z.ZodString>;
7777
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
7778
+ }, z.core.$strip>>;
7779
+ summarizer: z.ZodOptional<z.ZodObject<{
7780
+ model: z.ZodOptional<z.ZodString>;
7781
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
7782
+ }, z.core.$strip>>;
7783
+ }, z.core.$strip>>;
7784
+ stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
7785
+ stepCountIs?: number | undefined;
7786
+ }, {
7787
+ stepCountIs?: number | undefined;
7788
+ }, z.core.$ZodTypeInternals<{
7789
+ stepCountIs?: number | undefined;
7790
+ }, {
7791
+ stepCountIs?: number | undefined;
7792
+ }>>>>;
7793
+ conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
7794
+ type: z.ZodLiteral<"internal">;
7795
+ canUse: z.ZodArray<z.ZodObject<{
7796
+ agentToolRelationId: z.ZodOptional<z.ZodString>;
7797
+ toolId: z.ZodString;
7798
+ toolSelection: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
7799
+ headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
7800
+ }, z.core.$strip>>;
7801
+ dataComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
7802
+ artifactComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
7803
+ canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
7804
+ canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
7805
+ }, z.core.$strip>, z.ZodObject<{
7806
+ id: z.ZodString;
7807
+ name: z.ZodString;
7808
+ description: z.ZodString;
7809
+ credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7810
+ createdAt: z.ZodOptional<z.ZodString>;
7811
+ updatedAt: z.ZodOptional<z.ZodString>;
7812
+ baseUrl: z.ZodString;
7813
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
7814
+ }, z.core.$strip>]>>;
7815
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
7816
+ id: z.ZodString;
7817
+ name: z.ZodString;
7818
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7819
+ config: z.ZodObject<{
7820
+ type: z.ZodLiteral<"mcp">;
7821
+ mcp: z.ZodObject<{
7822
+ server: z.ZodObject<{
7823
+ url: z.ZodString;
7824
+ }, z.core.$strip>;
7825
+ transport: z.ZodOptional<z.ZodObject<{
7826
+ type: z.ZodEnum<{
7827
+ readonly streamableHttp: "streamable_http";
7828
+ readonly sse: "sse";
7829
+ }>;
7830
+ requestInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
7831
+ eventSourceInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
7832
+ reconnectionOptions: z.ZodOptional<z.ZodCustom<StreamableHTTPReconnectionOptions, StreamableHTTPReconnectionOptions>>;
7833
+ sessionId: z.ZodOptional<z.ZodString>;
7834
+ }, z.core.$strip>>;
7835
+ activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
7836
+ }, z.core.$strip>;
7837
+ }, z.core.$strip>;
7838
+ credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7839
+ createdAt: z.ZodOptional<z.ZodString>;
7840
+ updatedAt: z.ZodOptional<z.ZodString>;
7841
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
7842
+ capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
7843
+ imageUrl: z.ZodOptional<z.ZodString>;
7844
+ lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7845
+ }, z.core.$strip>>>;
7846
+ functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
7847
+ id: z.ZodString;
7848
+ name: z.ZodString;
7849
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7850
+ createdAt: z.ZodOptional<z.ZodString>;
7851
+ updatedAt: z.ZodOptional<z.ZodString>;
7852
+ functionId: z.ZodString;
7853
+ }, z.core.$strip>>>;
7854
+ functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
7855
+ id: z.ZodString;
7856
+ createdAt: z.ZodOptional<z.ZodString>;
7857
+ updatedAt: z.ZodOptional<z.ZodString>;
7858
+ inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
7859
+ executeCode: z.ZodString;
7860
+ dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
7861
+ }, z.core.$strip>>>;
7862
+ contextConfig: z.ZodOptional<z.ZodObject<{
7863
+ id: z.ZodOptional<z.ZodString>;
7864
+ headersSchema: z.ZodOptional<z.ZodUnknown>;
7865
+ contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
7866
+ }, z.core.$strip>>;
7867
+ statusUpdates: z.ZodOptional<z.ZodObject<{
7868
+ enabled: z.ZodOptional<z.ZodBoolean>;
7869
+ numEvents: z.ZodOptional<z.ZodNumber>;
7870
+ timeInSeconds: z.ZodOptional<z.ZodNumber>;
7871
+ prompt: z.ZodOptional<z.ZodString>;
7872
+ statusComponents: z.ZodOptional<z.ZodArray<z.ZodObject<{
7873
+ type: z.ZodString;
7874
+ description: z.ZodOptional<z.ZodString>;
7875
+ detailsSchema: z.ZodOptional<z.ZodObject<{
7876
+ type: z.ZodLiteral<"object">;
7877
+ properties: z.ZodRecord<z.ZodString, z.ZodAny>;
7878
+ required: z.ZodOptional<z.ZodArray<z.ZodString>>;
7879
+ }, z.core.$strip>>;
7880
+ }, z.core.$strip>>>;
7881
+ }, z.core.$strip>>;
7882
+ models: z.ZodOptional<z.ZodObject<{
7883
+ base: z.ZodOptional<z.ZodObject<{
7884
+ model: z.ZodOptional<z.ZodString>;
7885
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
7886
+ }, z.core.$strip>>;
7887
+ structuredOutput: z.ZodOptional<z.ZodObject<{
7888
+ model: z.ZodOptional<z.ZodString>;
7889
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
7890
+ }, z.core.$strip>>;
7891
+ summarizer: z.ZodOptional<z.ZodObject<{
7892
+ model: z.ZodOptional<z.ZodString>;
7893
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
7894
+ }, z.core.$strip>>;
7895
+ }, z.core.$strip>>;
7896
+ stopWhen: z.ZodOptional<z.ZodObject<{
7897
+ transferCountIs: z.ZodOptional<z.ZodNumber>;
7898
+ }, z.core.$strip>>;
7899
+ graphPrompt: z.ZodOptional<z.ZodString>;
7900
+ }, z.core.$strip>;
7639
7901
  declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
7640
7902
  name: z.ZodString;
7641
7903
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -7701,7 +7963,7 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
7701
7963
  id: z.ZodString;
7702
7964
  name: z.ZodString;
7703
7965
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7704
- config: z.ZodDiscriminatedUnion<[z.ZodObject<{
7966
+ config: z.ZodObject<{
7705
7967
  type: z.ZodLiteral<"mcp">;
7706
7968
  mcp: z.ZodObject<{
7707
7969
  server: z.ZodObject<{
@@ -7719,18 +7981,23 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
7719
7981
  }, z.core.$strip>>;
7720
7982
  activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
7721
7983
  }, z.core.$strip>;
7722
- }, z.core.$strip>, z.ZodObject<{
7723
- type: z.ZodLiteral<"function">;
7724
- }, z.core.$strip>], "type">;
7984
+ }, z.core.$strip>;
7725
7985
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7726
7986
  createdAt: z.ZodOptional<z.ZodString>;
7727
7987
  updatedAt: z.ZodOptional<z.ZodString>;
7728
7988
  headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
7729
7989
  capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
7730
- functionId: z.ZodOptional<z.ZodString>;
7731
7990
  imageUrl: z.ZodOptional<z.ZodString>;
7732
7991
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7733
7992
  }, z.core.$strip>>>;
7993
+ functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
7994
+ id: z.ZodString;
7995
+ name: z.ZodString;
7996
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7997
+ createdAt: z.ZodOptional<z.ZodString>;
7998
+ updatedAt: z.ZodOptional<z.ZodString>;
7999
+ functionId: z.ZodString;
8000
+ }, z.core.$strip>>>;
7734
8001
  functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
7735
8002
  id: z.ZodString;
7736
8003
  createdAt: z.ZodOptional<z.ZodString>;
@@ -8373,7 +8640,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
8373
8640
  id: z.ZodString;
8374
8641
  name: z.ZodString;
8375
8642
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8376
- config: z.ZodDiscriminatedUnion<[z.ZodObject<{
8643
+ config: z.ZodObject<{
8377
8644
  type: z.ZodLiteral<"mcp">;
8378
8645
  mcp: z.ZodObject<{
8379
8646
  server: z.ZodObject<{
@@ -8391,18 +8658,23 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
8391
8658
  }, z.core.$strip>>;
8392
8659
  activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
8393
8660
  }, z.core.$strip>;
8394
- }, z.core.$strip>, z.ZodObject<{
8395
- type: z.ZodLiteral<"function">;
8396
- }, z.core.$strip>], "type">;
8661
+ }, z.core.$strip>;
8397
8662
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8398
8663
  createdAt: z.ZodOptional<z.ZodString>;
8399
8664
  updatedAt: z.ZodOptional<z.ZodString>;
8400
8665
  headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
8401
8666
  capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
8402
- functionId: z.ZodOptional<z.ZodString>;
8403
8667
  imageUrl: z.ZodOptional<z.ZodString>;
8404
8668
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8405
8669
  }, z.core.$strip>>>;
8670
+ functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
8671
+ id: z.ZodString;
8672
+ name: z.ZodString;
8673
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8674
+ createdAt: z.ZodOptional<z.ZodString>;
8675
+ updatedAt: z.ZodOptional<z.ZodString>;
8676
+ functionId: z.ZodString;
8677
+ }, z.core.$strip>>>;
8406
8678
  functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
8407
8679
  id: z.ZodString;
8408
8680
  createdAt: z.ZodOptional<z.ZodString>;
@@ -8454,7 +8726,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
8454
8726
  id: z.ZodString;
8455
8727
  name: z.ZodString;
8456
8728
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8457
- config: z.ZodDiscriminatedUnion<[z.ZodObject<{
8729
+ config: z.ZodObject<{
8458
8730
  type: z.ZodLiteral<"mcp">;
8459
8731
  mcp: z.ZodObject<{
8460
8732
  server: z.ZodObject<{
@@ -8472,15 +8744,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
8472
8744
  }, z.core.$strip>>;
8473
8745
  activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
8474
8746
  }, z.core.$strip>;
8475
- }, z.core.$strip>, z.ZodObject<{
8476
- type: z.ZodLiteral<"function">;
8477
- }, z.core.$strip>], "type">;
8747
+ }, z.core.$strip>;
8478
8748
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8479
8749
  createdAt: z.ZodOptional<z.ZodString>;
8480
8750
  updatedAt: z.ZodOptional<z.ZodString>;
8481
8751
  headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
8482
8752
  capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
8483
- functionId: z.ZodOptional<z.ZodString>;
8484
8753
  imageUrl: z.ZodOptional<z.ZodString>;
8485
8754
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8486
8755
  }, z.core.$strip>>;
@@ -8639,6 +8908,9 @@ type FunctionUpdate = z$1.infer<typeof FunctionUpdateSchema>;
8639
8908
  type FunctionApiSelect = z$1.infer<typeof FunctionApiSelectSchema>;
8640
8909
  type FunctionApiInsert = z$1.infer<typeof FunctionApiInsertSchema>;
8641
8910
  type FunctionApiUpdate = z$1.infer<typeof FunctionApiUpdateSchema>;
8911
+ type FunctionToolApiSelect = z$1.infer<typeof FunctionToolApiSelectSchema>;
8912
+ type FunctionToolApiInsert = z$1.infer<typeof FunctionToolApiInsertSchema>;
8913
+ type FunctionToolApiUpdate = z$1.infer<typeof FunctionToolApiUpdateSchema>;
8642
8914
  type ConversationSelect = z$1.infer<typeof ConversationSelectSchema>;
8643
8915
  type ConversationInsert = z$1.infer<typeof ConversationInsertSchema>;
8644
8916
  type ConversationUpdate = z$1.infer<typeof ConversationUpdateSchema>;
@@ -8970,4 +9242,4 @@ interface ExecutionContext {
8970
9242
  subAgentId?: string;
8971
9243
  }
8972
9244
 
8973
- export { type CredentialReferenceUpdate as $, ApiKeyApiUpdateSchema as A, type ApiKeySelect as B, type ConversationHistoryConfig as C, type ApiKeyInsert as D, type ApiKeyUpdate as E, FunctionApiInsertSchema as F, GraphStopWhenSchema as G, type CreateApiKeyParams as H, type ApiKeyCreateResult as I, type ArtifactComponentSelect as J, type ArtifactComponentInsert as K, type ArtifactComponentUpdate as L, ModelSettingsSchema as M, type AgentScopeConfig 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 _, FullGraphAgentInsertSchema as a, type InvalidParamsError 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 FunctionApiInsert as a6, type Artifact as a7, type LedgerArtifactSelect as a8, type MessageVisibility as a9, type FileWithUri as aA, type FilePart as aB, type DataPart as aC, TaskState as aD, type AgentCapabilities as aE, type AgentProvider as aF, type AgentSkill as aG, type SecuritySchemeBase as aH, type APIKeySecurityScheme as aI, type HTTPAuthSecurityScheme as aJ, type OAuthFlows as aK, type AuthorizationCodeOAuthFlow as aL, type ClientCredentialsOAuthFlow as aM, type ImplicitOAuthFlow as aN, type PasswordOAuthFlow as aO, type OAuth2SecurityScheme as aP, type OpenIdConnectSecurityScheme as aQ, type SecurityScheme as aR, type AgentCard as aS, type Message as aT, type TaskStatus as aU, type Task as aV, type TaskStatusUpdateEvent as aW, type TaskArtifactUpdateEvent as aX, type JSONParseError as aY, type InvalidRequestError as aZ, type MethodNotFoundError 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 SubAgentRelationInsert as aj, type ExternalSubAgentRelationInsert as ak, type SubAgentRelationUpdate as al, type SubAgentToolRelationUpdate as am, type SubAgentInsert as an, type SubAgentUpdate as ao, type SubAgentSelect as ap, type TaskInsert as aq, type TaskSelect as ar, type McpTool as as, type ToolInsert as at, type ToolUpdate as au, type ExecutionContext as av, type PartBase as aw, type TextPart as ax, type FileBase as ay, type FileWithBytes as az, SubAgentStopWhenSchema as b, type TaskRelationApiSelect as b$, type InternalError as b0, type TaskNotFoundError as b1, type TaskNotCancelableError as b2, type PushNotificationNotSupportedError as b3, type UnsupportedOperationError as b4, type ContentTypeNotSupportedError as b5, type InvalidAgentResponseError as b6, type A2AError as b7, type PushNotificationAuthenticationInfo as b8, type PushNotificationConfig as b9, type SetTaskPushNotificationConfigResponse as bA, type GetTaskPushNotificationConfigSuccessResponse as bB, type GetTaskPushNotificationConfigResponse as bC, type A2ARequest as bD, type A2AResponse as bE, type MessagePart as bF, type TaskArtifact as bG, type SubAgentApiSelect as bH, type SubAgentApiInsert as bI, type SubAgentApiUpdate as bJ, type SubAgentRelationSelect as bK, type SubAgentRelationApiSelect as bL, type SubAgentRelationApiInsert as bM, type SubAgentRelationApiUpdate as bN, type SubAgentRelationQuery as bO, type ExternalSubAgentRelationApiInsert as bP, type AgentGraphSelect as bQ, type AgentGraphApiSelect as bR, type AgentGraphApiInsert as bS, type AgentGraphApiUpdate as bT, type TaskUpdate as bU, type TaskApiSelect as bV, type TaskApiInsert as bW, type TaskApiUpdate as bX, type TaskRelationSelect as bY, type TaskRelationInsert as bZ, type TaskRelationUpdate as b_, type TaskPushNotificationConfig as ba, type TaskIdParams as bb, type TaskQueryParams as bc, type MessageSendConfiguration as bd, type MessageSendParams as be, type JSONRPCMessage as bf, type JSONRPCRequest as bg, type JSONRPCError as bh, type JSONRPCResult as bi, type JSONRPCErrorResponse as bj, type SendMessageRequest as bk, type SendStreamingMessageRequest as bl, type GetTaskRequest as bm, type CancelTaskRequest as bn, type SetTaskPushNotificationConfigRequest as bo, type GetTaskPushNotificationConfigRequest as bp, type TaskResubscriptionRequest as bq, type SendMessageSuccessResponse as br, type SendMessageResponse as bs, type SendStreamingMessageSuccessResponse as bt, type SendStreamingMessageResponse as bu, type GetTaskSuccessResponse as bv, type GetTaskResponse as bw, type CancelTaskSuccessResponse as bx, type CancelTaskResponse as by, type SetTaskPushNotificationConfigSuccessResponse as bz, type StopWhen as c, type LedgerArtifactApiUpdate as c$, type TaskRelationApiInsert as c0, type TaskRelationApiUpdate as c1, type ToolApiSelect as c2, type ToolApiInsert as c3, type ToolApiUpdate as c4, type FunctionSelect as c5, type FunctionInsert as c6, type FunctionUpdate as c7, type FunctionApiSelect as c8, type FunctionApiUpdate as c9, type ArtifactComponentApiInsert as cA, type ArtifactComponentApiUpdate as cB, type SubAgentArtifactComponentSelect as cC, type SubAgentArtifactComponentInsert as cD, type SubAgentArtifactComponentUpdate as cE, type SubAgentArtifactComponentApiSelect as cF, type SubAgentArtifactComponentApiInsert as cG, type SubAgentArtifactComponentApiUpdate as cH, type ExternalAgentApiSelect as cI, type ExternalAgentApiInsert as cJ, type ExternalAgentApiUpdate as cK, type AllAgentSelect as cL, type ApiKeyApiSelect as cM, type ApiKeyApiInsert as cN, type ApiKeyApiUpdate as cO, type ApiKeyApiCreationResponse as cP, type CredentialReferenceApiSelect as cQ, type CredentialReferenceApiUpdate as cR, type SubAgentToolRelationSelect as cS, type SubAgentToolRelationInsert as cT, type SubAgentToolRelationApiSelect as cU, type SubAgentToolRelationApiInsert as cV, type SubAgentToolRelationApiUpdate as cW, type LedgerArtifactInsert as cX, type LedgerArtifactUpdate as cY, type LedgerArtifactApiSelect as cZ, type LedgerArtifactApiInsert as c_, type ConversationApiSelect as ca, type ConversationApiInsert as cb, type ConversationApiUpdate as cc, type MessageSelect as cd, type MessageApiSelect as ce, type MessageApiInsert as cf, type MessageApiUpdate as cg, type ContextConfigApiSelect as ch, type ContextConfigApiInsert as ci, type ContextConfigApiUpdate as cj, type FetchDefinition as ck, type FetchConfig as cl, type ContextCacheUpdate as cm, type ContextCacheApiSelect as cn, type ContextCacheApiInsert as co, type ContextCacheApiUpdate as cp, type DataComponentApiSelect as cq, type DataComponentApiInsert as cr, type DataComponentApiUpdate as cs, type SubAgentDataComponentSelect as ct, type SubAgentDataComponentInsert as cu, type SubAgentDataComponentUpdate as cv, type SubAgentDataComponentApiSelect as cw, type SubAgentDataComponentApiInsert as cx, type SubAgentDataComponentApiUpdate as cy, type ArtifactComponentApiSelect as cz, type GraphStopWhen as d, TaskApiInsertSchema as d$, type FullGraphAgentInsert as d0, type CanUseItem as d1, type InternalAgentDefinition as d2, type AgentDefinition as d3, type ToolDefinition as d4, type ProjectApiSelect as d5, type ProjectApiInsert as d6, type ProjectApiUpdate as d7, type Pagination as d8, type SummaryEvent as d9, FunctionToolConfigSchema as dA, type FunctionToolConfig as dB, SubAgentSelectSchema as dC, SubAgentInsertSchema as dD, SubAgentUpdateSchema as dE, SubAgentApiSelectSchema as dF, SubAgentApiInsertSchema as dG, SubAgentApiUpdateSchema as dH, SubAgentRelationSelectSchema as dI, SubAgentRelationInsertSchema as dJ, SubAgentRelationUpdateSchema as dK, SubAgentRelationApiSelectSchema as dL, SubAgentRelationApiInsertSchema as dM, SubAgentRelationApiUpdateSchema as dN, SubAgentRelationQuerySchema as dO, ExternalSubAgentRelationInsertSchema as dP, ExternalSubAgentRelationApiInsertSchema as dQ, AgentGraphSelectSchema as dR, AgentGraphInsertSchema as dS, AgentGraphUpdateSchema as dT, AgentGraphApiSelectSchema as dU, AgentGraphApiInsertSchema as dV, AgentGraphApiUpdateSchema as dW, TaskSelectSchema as dX, TaskInsertSchema as dY, TaskUpdateSchema as dZ, TaskApiSelectSchema as d_, type MessageType as da, type MessageRole as db, type MessageMode as dc, type Models as dd, type ProjectModels as de, type StatusUpdateSettings as df, type StatusComponent as dg, type ConversationScopeOptions as dh, type AgentConversationHistoryConfig as di, type ContextCacheEntry as dj, type McpAuthType as dk, type McpServerAuth as dl, type McpTransportConfig as dm, type McpServerCapabilities as dn, type McpToolDefinition as dp, TOOL_STATUS_VALUES as dq, VALID_RELATION_TYPES as dr, MCPServerType as ds, MIN_ID_LENGTH as dt, MAX_ID_LENGTH as du, URL_SAFE_ID_PATTERN as dv, resourceIdSchema as dw, ModelSchema as dx, ProjectModelSchema as dy, type SandboxConfig as dz, type SubAgentStopWhen as e, ApiKeyInsertSchema as e$, TaskApiUpdateSchema as e0, TaskRelationSelectSchema as e1, TaskRelationInsertSchema as e2, TaskRelationUpdateSchema as e3, TaskRelationApiSelectSchema as e4, TaskRelationApiInsertSchema as e5, TaskRelationApiUpdateSchema as e6, McpTransportConfigSchema as e7, ToolStatusSchema as e8, McpToolDefinitionSchema as e9, DataComponentApiUpdateSchema as eA, SubAgentDataComponentSelectSchema as eB, SubAgentDataComponentInsertSchema as eC, SubAgentDataComponentUpdateSchema as eD, SubAgentDataComponentApiSelectSchema as eE, SubAgentDataComponentApiInsertSchema as eF, SubAgentDataComponentApiUpdateSchema as eG, ArtifactComponentSelectSchema as eH, ArtifactComponentInsertSchema as eI, ArtifactComponentUpdateSchema as eJ, ArtifactComponentApiSelectSchema as eK, ArtifactComponentApiInsertSchema as eL, ArtifactComponentApiUpdateSchema as eM, SubAgentArtifactComponentSelectSchema as eN, SubAgentArtifactComponentInsertSchema as eO, SubAgentArtifactComponentUpdateSchema as eP, SubAgentArtifactComponentApiSelectSchema as eQ, SubAgentArtifactComponentApiInsertSchema as eR, SubAgentArtifactComponentApiUpdateSchema as eS, ExternalAgentSelectSchema as eT, ExternalAgentInsertSchema as eU, ExternalAgentUpdateSchema as eV, ExternalAgentApiSelectSchema as eW, ExternalAgentApiInsertSchema as eX, ExternalAgentApiUpdateSchema as eY, AllAgentSchema as eZ, ApiKeySelectSchema as e_, ToolSelectSchema as ea, ToolInsertSchema as eb, ConversationSelectSchema as ec, ConversationInsertSchema as ed, ConversationUpdateSchema as ee, ConversationApiSelectSchema as ef, ConversationApiInsertSchema as eg, ConversationApiUpdateSchema as eh, MessageSelectSchema as ei, MessageInsertSchema as ej, MessageUpdateSchema as ek, MessageApiSelectSchema as el, MessageApiInsertSchema as em, MessageApiUpdateSchema as en, ContextCacheSelectSchema as eo, ContextCacheInsertSchema as ep, ContextCacheUpdateSchema as eq, ContextCacheApiSelectSchema as er, ContextCacheApiInsertSchema as es, ContextCacheApiUpdateSchema as et, DataComponentSelectSchema as eu, DataComponentInsertSchema as ev, DataComponentBaseSchema as ew, DataComponentUpdateSchema as ex, DataComponentApiSelectSchema as ey, DataComponentApiInsertSchema as ez, type ModelSettings as f, TenantProjectGraphSubAgentParamsSchema as f$, ApiKeyUpdateSchema as f0, ApiKeyApiSelectSchema as f1, ApiKeyApiCreationResponseSchema as f2, ApiKeyApiInsertSchema as f3, CredentialReferenceSelectSchema as f4, CredentialReferenceInsertSchema as f5, CredentialReferenceUpdateSchema as f6, CredentialReferenceApiSelectSchema as f7, CredentialReferenceApiInsertSchema as f8, CredentialReferenceApiUpdateSchema as f9, LedgerArtifactApiSelectSchema as fA, LedgerArtifactApiInsertSchema as fB, LedgerArtifactApiUpdateSchema as fC, StatusComponentSchema as fD, StatusUpdateSchema as fE, CanUseItemSchema as fF, GraphWithinContextOfProjectSchema as fG, PaginationSchema as fH, ListResponseSchema as fI, SingleResponseSchema as fJ, ErrorResponseSchema as fK, ExistsResponseSchema as fL, RemovedResponseSchema as fM, ProjectSelectSchema as fN, ProjectInsertSchema as fO, ProjectUpdateSchema as fP, ProjectApiSelectSchema as fQ, ProjectApiInsertSchema as fR, ProjectApiUpdateSchema as fS, FullProjectDefinitionSchema as fT, HeadersScopeSchema as fU, TenantParamsSchema as fV, TenantIdParamsSchema as fW, TenantProjectParamsSchema as fX, TenantProjectIdParamsSchema as fY, TenantProjectGraphParamsSchema as fZ, TenantProjectGraphIdParamsSchema as f_, McpToolSchema as fa, MCPToolConfigSchema as fb, ToolUpdateSchema as fc, ToolApiSelectSchema as fd, ToolApiInsertSchema as fe, ToolApiUpdateSchema as ff, FunctionSelectSchema as fg, FunctionInsertSchema as fh, FunctionUpdateSchema as fi, FetchConfigSchema as fj, FetchDefinitionSchema as fk, ContextConfigSelectSchema as fl, ContextConfigInsertSchema as fm, ContextConfigUpdateSchema as fn, ContextConfigApiSelectSchema as fo, ContextConfigApiInsertSchema as fp, ContextConfigApiUpdateSchema as fq, SubAgentToolRelationSelectSchema as fr, SubAgentToolRelationInsertSchema as fs, SubAgentToolRelationUpdateSchema as ft, SubAgentToolRelationApiSelectSchema as fu, SubAgentToolRelationApiInsertSchema as fv, SubAgentToolRelationApiUpdateSchema as fw, LedgerArtifactSelectSchema as fx, LedgerArtifactInsertSchema as fy, LedgerArtifactUpdateSchema as fz, CredentialStoreType as g, TenantProjectGraphSubAgentIdParamsSchema as g0, PaginationQueryParamsSchema as g1, MCPTransportType as h, FunctionApiSelectSchema as i, FunctionApiUpdateSchema as j, SandboxConfigSchema as k, type ContextFetchDefinition as l, type ToolMcpConfig as m, type ToolServerCapabilities as n, type ConversationMetadata as o, type MessageContent as p, type MessageMetadata as q, type CredentialReferenceApiInsert as r, type ContextConfigSelect as s, type MCPToolConfig as t, type GraphScopeConfig as u, type ProjectScopeConfig as v, type PaginationConfig as w, type AgentGraphInsert as x, type AgentGraphUpdate as y, type FullGraphDefinition as z };
9245
+ export { type CredentialReferenceUpdate as $, ApiKeyApiUpdateSchema as A, type ApiKeySelect as B, type ConversationHistoryConfig as C, type ApiKeyInsert as D, type ApiKeyUpdate as E, FunctionApiInsertSchema as F, GraphStopWhenSchema as G, type CreateApiKeyParams as H, type ApiKeyCreateResult as I, type ArtifactComponentSelect as J, type ArtifactComponentInsert as K, type ArtifactComponentUpdate as L, ModelSettingsSchema as M, type AgentScopeConfig 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 _, FullGraphAgentInsertSchema as a, type InvalidRequestError 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 FunctionApiInsert as a6, type FunctionToolApiInsert as a7, type FunctionToolApiUpdate as a8, type Artifact as a9, type FileBase as aA, type FileWithBytes as aB, type FileWithUri as aC, type FilePart as aD, type DataPart as aE, TaskState as aF, type AgentCapabilities as aG, type AgentProvider as aH, type AgentSkill as aI, type SecuritySchemeBase as aJ, type APIKeySecurityScheme as aK, type HTTPAuthSecurityScheme as aL, type OAuthFlows as aM, type AuthorizationCodeOAuthFlow as aN, type ClientCredentialsOAuthFlow as aO, type ImplicitOAuthFlow as aP, type PasswordOAuthFlow as aQ, type OAuth2SecurityScheme as aR, type OpenIdConnectSecurityScheme as aS, type SecurityScheme as aT, type AgentCard as aU, type Message as aV, type TaskStatus as aW, type Task as aX, type TaskStatusUpdateEvent as aY, type TaskArtifactUpdateEvent as aZ, type JSONParseError as a_, type LedgerArtifactSelect as aa, type MessageVisibility as ab, type MessageInsert as ac, type MessageUpdate as ad, type FullProjectDefinition as ae, type ProjectInfo as af, type ProjectSelect as ag, type PaginationResult as ah, type ProjectResourceCounts as ai, type ProjectInsert as aj, type ProjectUpdate as ak, type SubAgentRelationInsert as al, type ExternalSubAgentRelationInsert as am, type SubAgentRelationUpdate as an, type SubAgentToolRelationUpdate as ao, type SubAgentInsert as ap, type SubAgentUpdate as aq, type SubAgentSelect as ar, type TaskInsert as as, type TaskSelect as at, type McpTool as au, type ToolInsert as av, type ToolUpdate as aw, type ExecutionContext as ax, type PartBase as ay, type TextPart as az, SubAgentStopWhenSchema as b, type TaskRelationInsert as b$, type MethodNotFoundError as b0, type InvalidParamsError as b1, type InternalError as b2, type TaskNotFoundError as b3, type TaskNotCancelableError as b4, type PushNotificationNotSupportedError as b5, type UnsupportedOperationError as b6, type ContentTypeNotSupportedError as b7, type InvalidAgentResponseError as b8, type A2AError as b9, type CancelTaskResponse as bA, type SetTaskPushNotificationConfigSuccessResponse as bB, type SetTaskPushNotificationConfigResponse as bC, type GetTaskPushNotificationConfigSuccessResponse as bD, type GetTaskPushNotificationConfigResponse as bE, type A2ARequest as bF, type A2AResponse as bG, type MessagePart as bH, type TaskArtifact as bI, type SubAgentApiSelect as bJ, type SubAgentApiInsert as bK, type SubAgentApiUpdate as bL, type SubAgentRelationSelect as bM, type SubAgentRelationApiSelect as bN, type SubAgentRelationApiInsert as bO, type SubAgentRelationApiUpdate as bP, type SubAgentRelationQuery as bQ, type ExternalSubAgentRelationApiInsert as bR, type AgentGraphSelect as bS, type AgentGraphApiSelect as bT, type AgentGraphApiInsert as bU, type AgentGraphApiUpdate as bV, type TaskUpdate as bW, type TaskApiSelect as bX, type TaskApiInsert as bY, type TaskApiUpdate as bZ, type TaskRelationSelect as b_, type PushNotificationAuthenticationInfo as ba, type PushNotificationConfig as bb, type TaskPushNotificationConfig as bc, type TaskIdParams as bd, type TaskQueryParams as be, type MessageSendConfiguration as bf, type MessageSendParams as bg, type JSONRPCMessage as bh, type JSONRPCRequest as bi, type JSONRPCError as bj, type JSONRPCResult as bk, type JSONRPCErrorResponse as bl, type SendMessageRequest as bm, type SendStreamingMessageRequest as bn, type GetTaskRequest as bo, type CancelTaskRequest as bp, type SetTaskPushNotificationConfigRequest as bq, type GetTaskPushNotificationConfigRequest as br, type TaskResubscriptionRequest as bs, type SendMessageSuccessResponse as bt, type SendMessageResponse as bu, type SendStreamingMessageSuccessResponse as bv, type SendStreamingMessageResponse as bw, type GetTaskSuccessResponse as bx, type GetTaskResponse as by, type CancelTaskSuccessResponse as bz, type StopWhen as c, type LedgerArtifactUpdate as c$, type TaskRelationUpdate as c0, type TaskRelationApiSelect as c1, type TaskRelationApiInsert as c2, type TaskRelationApiUpdate as c3, type ToolApiSelect as c4, type ToolApiInsert as c5, type ToolApiUpdate as c6, type FunctionSelect as c7, type FunctionInsert as c8, type FunctionUpdate as c9, type SubAgentDataComponentApiInsert as cA, type SubAgentDataComponentApiUpdate as cB, type ArtifactComponentApiSelect as cC, type ArtifactComponentApiInsert as cD, type ArtifactComponentApiUpdate as cE, type SubAgentArtifactComponentSelect as cF, type SubAgentArtifactComponentInsert as cG, type SubAgentArtifactComponentUpdate as cH, type SubAgentArtifactComponentApiSelect as cI, type SubAgentArtifactComponentApiInsert as cJ, type SubAgentArtifactComponentApiUpdate as cK, type ExternalAgentApiSelect as cL, type ExternalAgentApiInsert as cM, type ExternalAgentApiUpdate as cN, type AllAgentSelect as cO, type ApiKeyApiSelect as cP, type ApiKeyApiInsert as cQ, type ApiKeyApiUpdate as cR, type ApiKeyApiCreationResponse as cS, type CredentialReferenceApiSelect as cT, type CredentialReferenceApiUpdate as cU, type SubAgentToolRelationSelect as cV, type SubAgentToolRelationInsert as cW, type SubAgentToolRelationApiSelect as cX, type SubAgentToolRelationApiInsert as cY, type SubAgentToolRelationApiUpdate as cZ, type LedgerArtifactInsert as c_, type FunctionApiSelect as ca, type FunctionApiUpdate as cb, type FunctionToolApiSelect as cc, type ConversationApiSelect as cd, type ConversationApiInsert as ce, type ConversationApiUpdate as cf, type MessageSelect as cg, type MessageApiSelect as ch, type MessageApiInsert as ci, type MessageApiUpdate as cj, type ContextConfigApiSelect as ck, type ContextConfigApiInsert as cl, type ContextConfigApiUpdate as cm, type FetchDefinition as cn, type FetchConfig as co, type ContextCacheUpdate as cp, type ContextCacheApiSelect as cq, type ContextCacheApiInsert as cr, type ContextCacheApiUpdate as cs, type DataComponentApiSelect as ct, type DataComponentApiInsert as cu, type DataComponentApiUpdate as cv, type SubAgentDataComponentSelect as cw, type SubAgentDataComponentInsert as cx, type SubAgentDataComponentUpdate as cy, type SubAgentDataComponentApiSelect as cz, type GraphStopWhen as d, TaskInsertSchema as d$, type LedgerArtifactApiSelect as d0, type LedgerArtifactApiInsert as d1, type LedgerArtifactApiUpdate as d2, type FullGraphAgentInsert as d3, type CanUseItem as d4, type InternalAgentDefinition as d5, type AgentDefinition as d6, type ToolDefinition as d7, type ProjectApiSelect as d8, type ProjectApiInsert as d9, ModelSchema as dA, ProjectModelSchema as dB, type SandboxConfig as dC, FunctionToolConfigSchema as dD, type FunctionToolConfig as dE, SubAgentSelectSchema as dF, SubAgentInsertSchema as dG, SubAgentUpdateSchema as dH, SubAgentApiSelectSchema as dI, SubAgentApiInsertSchema as dJ, SubAgentApiUpdateSchema as dK, SubAgentRelationSelectSchema as dL, SubAgentRelationInsertSchema as dM, SubAgentRelationUpdateSchema as dN, SubAgentRelationApiSelectSchema as dO, SubAgentRelationApiInsertSchema as dP, SubAgentRelationApiUpdateSchema as dQ, SubAgentRelationQuerySchema as dR, ExternalSubAgentRelationInsertSchema as dS, ExternalSubAgentRelationApiInsertSchema as dT, AgentGraphSelectSchema as dU, AgentGraphInsertSchema as dV, AgentGraphUpdateSchema as dW, AgentGraphApiSelectSchema as dX, AgentGraphApiInsertSchema as dY, AgentGraphApiUpdateSchema as dZ, TaskSelectSchema as d_, type ProjectApiUpdate as da, type Pagination as db, type SummaryEvent as dc, type MessageType as dd, type MessageRole as de, type MessageMode as df, type Models as dg, type ProjectModels as dh, type StatusUpdateSettings as di, type StatusComponent as dj, type ConversationScopeOptions as dk, type AgentConversationHistoryConfig as dl, type ContextCacheEntry as dm, type McpAuthType as dn, type McpServerAuth as dp, type McpTransportConfig as dq, type McpServerCapabilities as dr, type McpToolDefinition as ds, TOOL_STATUS_VALUES as dt, VALID_RELATION_TYPES as du, MCPServerType as dv, MIN_ID_LENGTH as dw, MAX_ID_LENGTH as dx, URL_SAFE_ID_PATTERN as dy, resourceIdSchema as dz, type SubAgentStopWhen as e, ExternalAgentApiUpdateSchema as e$, TaskUpdateSchema as e0, TaskApiSelectSchema as e1, TaskApiInsertSchema as e2, TaskApiUpdateSchema as e3, TaskRelationSelectSchema as e4, TaskRelationInsertSchema as e5, TaskRelationUpdateSchema as e6, TaskRelationApiSelectSchema as e7, TaskRelationApiInsertSchema as e8, TaskRelationApiUpdateSchema as e9, DataComponentUpdateSchema as eA, DataComponentApiSelectSchema as eB, DataComponentApiInsertSchema as eC, DataComponentApiUpdateSchema as eD, SubAgentDataComponentSelectSchema as eE, SubAgentDataComponentInsertSchema as eF, SubAgentDataComponentUpdateSchema as eG, SubAgentDataComponentApiSelectSchema as eH, SubAgentDataComponentApiInsertSchema as eI, SubAgentDataComponentApiUpdateSchema as eJ, ArtifactComponentSelectSchema as eK, ArtifactComponentInsertSchema as eL, ArtifactComponentUpdateSchema as eM, ArtifactComponentApiSelectSchema as eN, ArtifactComponentApiInsertSchema as eO, ArtifactComponentApiUpdateSchema as eP, SubAgentArtifactComponentSelectSchema as eQ, SubAgentArtifactComponentInsertSchema as eR, SubAgentArtifactComponentUpdateSchema as eS, SubAgentArtifactComponentApiSelectSchema as eT, SubAgentArtifactComponentApiInsertSchema as eU, SubAgentArtifactComponentApiUpdateSchema as eV, ExternalAgentSelectSchema as eW, ExternalAgentInsertSchema as eX, ExternalAgentUpdateSchema as eY, ExternalAgentApiSelectSchema as eZ, ExternalAgentApiInsertSchema as e_, McpTransportConfigSchema as ea, ToolStatusSchema as eb, McpToolDefinitionSchema as ec, ToolSelectSchema as ed, ToolInsertSchema as ee, ConversationSelectSchema as ef, ConversationInsertSchema as eg, ConversationUpdateSchema as eh, ConversationApiSelectSchema as ei, ConversationApiInsertSchema as ej, ConversationApiUpdateSchema as ek, MessageSelectSchema as el, MessageInsertSchema as em, MessageUpdateSchema as en, MessageApiSelectSchema as eo, MessageApiInsertSchema as ep, MessageApiUpdateSchema as eq, ContextCacheSelectSchema as er, ContextCacheInsertSchema as es, ContextCacheUpdateSchema as et, ContextCacheApiSelectSchema as eu, ContextCacheApiInsertSchema as ev, ContextCacheApiUpdateSchema as ew, DataComponentSelectSchema as ex, DataComponentInsertSchema as ey, DataComponentBaseSchema as ez, type ModelSettings as f, ProjectApiInsertSchema as f$, AllAgentSchema as f0, ApiKeySelectSchema as f1, ApiKeyInsertSchema as f2, ApiKeyUpdateSchema as f3, ApiKeyApiSelectSchema as f4, ApiKeyApiCreationResponseSchema as f5, ApiKeyApiInsertSchema as f6, CredentialReferenceSelectSchema as f7, CredentialReferenceInsertSchema as f8, CredentialReferenceUpdateSchema as f9, SubAgentToolRelationSelectSchema as fA, SubAgentToolRelationInsertSchema as fB, SubAgentToolRelationUpdateSchema as fC, SubAgentToolRelationApiSelectSchema as fD, SubAgentToolRelationApiInsertSchema as fE, SubAgentToolRelationApiUpdateSchema as fF, LedgerArtifactSelectSchema as fG, LedgerArtifactInsertSchema as fH, LedgerArtifactUpdateSchema as fI, LedgerArtifactApiSelectSchema as fJ, LedgerArtifactApiInsertSchema as fK, LedgerArtifactApiUpdateSchema as fL, StatusComponentSchema as fM, StatusUpdateSchema as fN, CanUseItemSchema as fO, FullGraphDefinitionSchema as fP, GraphWithinContextOfProjectSchema as fQ, PaginationSchema as fR, ListResponseSchema as fS, SingleResponseSchema as fT, ErrorResponseSchema as fU, ExistsResponseSchema as fV, RemovedResponseSchema as fW, ProjectSelectSchema as fX, ProjectInsertSchema as fY, ProjectUpdateSchema as fZ, ProjectApiSelectSchema as f_, CredentialReferenceApiSelectSchema as fa, CredentialReferenceApiInsertSchema as fb, CredentialReferenceApiUpdateSchema as fc, McpToolSchema as fd, MCPToolConfigSchema as fe, ToolUpdateSchema as ff, ToolApiSelectSchema as fg, ToolApiInsertSchema as fh, ToolApiUpdateSchema as fi, FunctionToolSelectSchema as fj, FunctionToolInsertSchema as fk, FunctionToolUpdateSchema as fl, FunctionToolApiSelectSchema as fm, FunctionToolApiInsertSchema as fn, FunctionToolApiUpdateSchema as fo, FunctionSelectSchema as fp, FunctionInsertSchema as fq, FunctionUpdateSchema as fr, FetchConfigSchema as fs, FetchDefinitionSchema as ft, ContextConfigSelectSchema as fu, ContextConfigInsertSchema as fv, ContextConfigUpdateSchema as fw, ContextConfigApiSelectSchema as fx, ContextConfigApiInsertSchema as fy, ContextConfigApiUpdateSchema as fz, CredentialStoreType as g, ProjectApiUpdateSchema as g0, FullProjectDefinitionSchema as g1, HeadersScopeSchema as g2, TenantParamsSchema as g3, TenantIdParamsSchema as g4, TenantProjectParamsSchema as g5, TenantProjectIdParamsSchema as g6, TenantProjectGraphParamsSchema as g7, TenantProjectGraphIdParamsSchema as g8, TenantProjectGraphSubAgentParamsSchema as g9, TenantProjectGraphSubAgentIdParamsSchema as ga, PaginationQueryParamsSchema as gb, MCPTransportType as h, FunctionApiSelectSchema as i, FunctionApiUpdateSchema as j, SandboxConfigSchema as k, type ContextFetchDefinition as l, type ToolMcpConfig as m, type ToolServerCapabilities as n, type ConversationMetadata as o, type MessageContent as p, type MessageMetadata as q, type CredentialReferenceApiInsert as r, type ContextConfigSelect as s, type MCPToolConfig as t, type GraphScopeConfig as u, type ProjectScopeConfig as v, type PaginationConfig as w, type AgentGraphInsert as x, type AgentGraphUpdate as y, type FullGraphDefinition as z };