@inkeep/agents-core 0.21.1 → 0.22.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.
@@ -427,19 +427,6 @@ declare const ProjectModelSchema: z.ZodObject<{
427
427
  providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
428
428
  }, z.core.$strip>>;
429
429
  }, z.core.$strip>;
430
- declare const SandboxConfigSchema: z.ZodObject<{
431
- provider: z.ZodEnum<{
432
- vercel: "vercel";
433
- local: "local";
434
- }>;
435
- runtime: z.ZodEnum<{
436
- node22: "node22";
437
- typescript: "typescript";
438
- }>;
439
- timeout: z.ZodOptional<z.ZodNumber>;
440
- vcpus: z.ZodOptional<z.ZodNumber>;
441
- }, z.core.$strip>;
442
- type SandboxConfig = z.infer<typeof SandboxConfigSchema>;
443
430
  declare const FunctionToolConfigSchema: z.ZodObject<{
444
431
  name: z.ZodString;
445
432
  description: z.ZodString;
@@ -8036,35 +8023,6 @@ declare const ProjectSelectSchema: drizzle_zod.BuildSchema<"select", {
8036
8023
  stepCountIs?: number | undefined;
8037
8024
  };
8038
8025
  }>;
8039
- sandboxConfig: drizzle_orm_sqlite_core.SQLiteColumn<{
8040
- name: "sandbox_config";
8041
- tableName: "projects";
8042
- dataType: "json";
8043
- columnType: "SQLiteTextJson";
8044
- data: {
8045
- provider: "vercel" | "local";
8046
- runtime: "node22" | "typescript";
8047
- timeout?: number;
8048
- vcpus?: number;
8049
- };
8050
- driverParam: string;
8051
- notNull: false;
8052
- hasDefault: false;
8053
- isPrimaryKey: false;
8054
- isAutoincrement: false;
8055
- hasRuntimeDefault: false;
8056
- enumValues: undefined;
8057
- baseColumn: never;
8058
- identity: undefined;
8059
- generated: undefined;
8060
- }, {}, {
8061
- $type: {
8062
- provider: "vercel" | "local";
8063
- runtime: "node22" | "typescript";
8064
- timeout?: number;
8065
- vcpus?: number;
8066
- };
8067
- }>;
8068
8026
  name: drizzle_orm_sqlite_core.SQLiteColumn<{
8069
8027
  name: "name";
8070
8028
  tableName: "projects";
@@ -8165,18 +8123,6 @@ declare const ProjectInsertSchema: z.ZodObject<{
8165
8123
  transferCountIs: z.ZodOptional<z.ZodNumber>;
8166
8124
  stepCountIs: z.ZodOptional<z.ZodNumber>;
8167
8125
  }, z.core.$strip>>;
8168
- sandboxConfig: z.ZodOptional<z.ZodObject<{
8169
- provider: z.ZodEnum<{
8170
- vercel: "vercel";
8171
- local: "local";
8172
- }>;
8173
- runtime: z.ZodEnum<{
8174
- node22: "node22";
8175
- typescript: "typescript";
8176
- }>;
8177
- timeout: z.ZodOptional<z.ZodNumber>;
8178
- vcpus: z.ZodOptional<z.ZodNumber>;
8179
- }, z.core.$strip>>;
8180
8126
  }, {
8181
8127
  out: {};
8182
8128
  in: {};
@@ -8204,18 +8150,6 @@ declare const ProjectUpdateSchema: z.ZodObject<{
8204
8150
  transferCountIs: z.ZodOptional<z.ZodNumber>;
8205
8151
  stepCountIs: z.ZodOptional<z.ZodNumber>;
8206
8152
  }, z.core.$strip>>>;
8207
- sandboxConfig: z.ZodOptional<z.ZodOptional<z.ZodObject<{
8208
- provider: z.ZodEnum<{
8209
- vercel: "vercel";
8210
- local: "local";
8211
- }>;
8212
- runtime: z.ZodEnum<{
8213
- node22: "node22";
8214
- typescript: "typescript";
8215
- }>;
8216
- timeout: z.ZodOptional<z.ZodNumber>;
8217
- vcpus: z.ZodOptional<z.ZodNumber>;
8218
- }, z.core.$strip>>>;
8219
8153
  }, {
8220
8154
  out: {};
8221
8155
  in: {};
@@ -8292,27 +8226,6 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
8292
8226
  transferCountIs?: number | undefined;
8293
8227
  stepCountIs?: number | undefined;
8294
8228
  }>>>;
8295
- sandboxConfig: z.ZodNullable<z.ZodType<{
8296
- provider: "vercel" | "local";
8297
- runtime: "node22" | "typescript";
8298
- timeout?: number;
8299
- vcpus?: number;
8300
- }, {
8301
- provider: "vercel" | "local";
8302
- runtime: "node22" | "typescript";
8303
- timeout?: number;
8304
- vcpus?: number;
8305
- }, z.core.$ZodTypeInternals<{
8306
- provider: "vercel" | "local";
8307
- runtime: "node22" | "typescript";
8308
- timeout?: number;
8309
- vcpus?: number;
8310
- }, {
8311
- provider: "vercel" | "local";
8312
- runtime: "node22" | "typescript";
8313
- timeout?: number;
8314
- vcpus?: number;
8315
- }>>>;
8316
8229
  }, {
8317
8230
  out: {};
8318
8231
  in: {};
@@ -8339,18 +8252,6 @@ declare const ProjectApiInsertSchema: z.ZodObject<{
8339
8252
  transferCountIs: z.ZodOptional<z.ZodNumber>;
8340
8253
  stepCountIs: z.ZodOptional<z.ZodNumber>;
8341
8254
  }, z.core.$strip>>;
8342
- sandboxConfig: z.ZodOptional<z.ZodObject<{
8343
- provider: z.ZodEnum<{
8344
- vercel: "vercel";
8345
- local: "local";
8346
- }>;
8347
- runtime: z.ZodEnum<{
8348
- node22: "node22";
8349
- typescript: "typescript";
8350
- }>;
8351
- timeout: z.ZodOptional<z.ZodNumber>;
8352
- vcpus: z.ZodOptional<z.ZodNumber>;
8353
- }, z.core.$strip>>;
8354
8255
  }, {
8355
8256
  out: {};
8356
8257
  in: {};
@@ -8377,18 +8278,6 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
8377
8278
  transferCountIs: z.ZodOptional<z.ZodNumber>;
8378
8279
  stepCountIs: z.ZodOptional<z.ZodNumber>;
8379
8280
  }, z.core.$strip>>>;
8380
- sandboxConfig: z.ZodOptional<z.ZodOptional<z.ZodObject<{
8381
- provider: z.ZodEnum<{
8382
- vercel: "vercel";
8383
- local: "local";
8384
- }>;
8385
- runtime: z.ZodEnum<{
8386
- node22: "node22";
8387
- typescript: "typescript";
8388
- }>;
8389
- timeout: z.ZodOptional<z.ZodNumber>;
8390
- vcpus: z.ZodOptional<z.ZodNumber>;
8391
- }, z.core.$strip>>>;
8392
8281
  }, {
8393
8282
  out: {};
8394
8283
  in: {};
@@ -8415,18 +8304,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
8415
8304
  transferCountIs: z.ZodOptional<z.ZodNumber>;
8416
8305
  stepCountIs: z.ZodOptional<z.ZodNumber>;
8417
8306
  }, z.core.$strip>>;
8418
- sandboxConfig: z.ZodOptional<z.ZodObject<{
8419
- provider: z.ZodEnum<{
8420
- vercel: "vercel";
8421
- local: "local";
8422
- }>;
8423
- runtime: z.ZodEnum<{
8424
- node22: "node22";
8425
- typescript: "typescript";
8426
- }>;
8427
- timeout: z.ZodOptional<z.ZodNumber>;
8428
- vcpus: z.ZodOptional<z.ZodNumber>;
8429
- }, z.core.$strip>>;
8430
8307
  agents: z.ZodRecord<z.ZodString, z.ZodObject<{
8431
8308
  name: z.ZodString;
8432
8309
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -8735,27 +8612,6 @@ declare const ProjectResponse: z.ZodObject<{
8735
8612
  transferCountIs?: number | undefined;
8736
8613
  stepCountIs?: number | undefined;
8737
8614
  }>>>;
8738
- sandboxConfig: z.ZodNullable<z.ZodType<{
8739
- provider: "vercel" | "local";
8740
- runtime: "node22" | "typescript";
8741
- timeout?: number;
8742
- vcpus?: number;
8743
- }, {
8744
- provider: "vercel" | "local";
8745
- runtime: "node22" | "typescript";
8746
- timeout?: number;
8747
- vcpus?: number;
8748
- }, z.core.$ZodTypeInternals<{
8749
- provider: "vercel" | "local";
8750
- runtime: "node22" | "typescript";
8751
- timeout?: number;
8752
- vcpus?: number;
8753
- }, {
8754
- provider: "vercel" | "local";
8755
- runtime: "node22" | "typescript";
8756
- timeout?: number;
8757
- vcpus?: number;
8758
- }>>>;
8759
8615
  }, {
8760
8616
  out: {};
8761
8617
  in: {};
@@ -9467,27 +9323,6 @@ declare const ProjectListResponse: z.ZodObject<{
9467
9323
  transferCountIs?: number | undefined;
9468
9324
  stepCountIs?: number | undefined;
9469
9325
  }>>>;
9470
- sandboxConfig: z.ZodNullable<z.ZodType<{
9471
- provider: "vercel" | "local";
9472
- runtime: "node22" | "typescript";
9473
- timeout?: number;
9474
- vcpus?: number;
9475
- }, {
9476
- provider: "vercel" | "local";
9477
- runtime: "node22" | "typescript";
9478
- timeout?: number;
9479
- vcpus?: number;
9480
- }, z.core.$ZodTypeInternals<{
9481
- provider: "vercel" | "local";
9482
- runtime: "node22" | "typescript";
9483
- timeout?: number;
9484
- vcpus?: number;
9485
- }, {
9486
- provider: "vercel" | "local";
9487
- runtime: "node22" | "typescript";
9488
- timeout?: number;
9489
- vcpus?: number;
9490
- }>>>;
9491
9326
  }, {
9492
9327
  out: {};
9493
9328
  in: {};
@@ -10697,4 +10532,4 @@ interface ExecutionContext {
10697
10532
  subAgentId?: string;
10698
10533
  }
10699
10534
 
10700
- export { type CredentialReferenceInsert as $, ApiKeyApiUpdateSchema as A, type FullAgentDefinition as B, type ConversationHistoryConfig as C, type AgentSelect as D, type ApiKeySelect as E, FunctionApiInsertSchema as F, type ApiKeyInsert as G, type ApiKeyUpdate as H, type CreateApiKeyParams as I, type ApiKeyCreateResult as J, type ArtifactComponentSelect as K, type ArtifactComponentInsert as L, ModelSettingsSchema as M, type ArtifactComponentUpdate as N, type SubAgentScopeConfig 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 _, FullAgentAgentInsertSchema as a, type JSONParseError 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 FunctionApiInsert as a7, type FunctionToolApiInsert as a8, type FunctionToolApiUpdate as a9, type TextPart as aA, type FileBase as aB, type FileWithBytes as aC, type FileWithUri as aD, type FilePart as aE, type DataPart as aF, TaskState as aG, type AgentCapabilities as aH, type AgentProvider as aI, type AgentSkill as aJ, type SecuritySchemeBase as aK, type APIKeySecurityScheme as aL, type HTTPAuthSecurityScheme as aM, type OAuthFlows as aN, type AuthorizationCodeOAuthFlow as aO, type ClientCredentialsOAuthFlow as aP, type ImplicitOAuthFlow as aQ, type PasswordOAuthFlow as aR, type OAuth2SecurityScheme as aS, type OpenIdConnectSecurityScheme as aT, type SecurityScheme as aU, type AgentCard as aV, type Message as aW, type TaskStatus as aX, type Task as aY, type TaskStatusUpdateEvent as aZ, type TaskArtifactUpdateEvent as a_, type Artifact as aa, type LedgerArtifactSelect as ab, type MessageVisibility as ac, type MessageInsert as ad, type MessageUpdate as ae, type FullProjectDefinition as af, type ProjectInfo as ag, type ProjectSelect as ah, type PaginationResult as ai, type ProjectResourceCounts as aj, type ProjectInsert as ak, type ProjectUpdate as al, type SubAgentRelationInsert as am, type ExternalSubAgentRelationInsert as an, type SubAgentRelationUpdate as ao, type SubAgentToolRelationUpdate as ap, type SubAgentInsert as aq, type SubAgentUpdate as ar, type SubAgentSelect as as, type TaskInsert as at, type TaskSelect as au, type McpTool as av, type ToolInsert as aw, type ToolUpdate as ax, type ExecutionContext as ay, type PartBase as az, AgentStopWhenSchema as b, type TaskRelationInsert as b$, type InvalidRequestError as b0, type MethodNotFoundError as b1, type InvalidParamsError as b2, type InternalError as b3, type TaskNotFoundError as b4, type TaskNotCancelableError as b5, type PushNotificationNotSupportedError as b6, type UnsupportedOperationError as b7, type ContentTypeNotSupportedError as b8, type InvalidAgentResponseError as b9, type CancelTaskSuccessResponse as bA, type CancelTaskResponse as bB, type SetTaskPushNotificationConfigSuccessResponse as bC, type SetTaskPushNotificationConfigResponse as bD, type GetTaskPushNotificationConfigSuccessResponse as bE, type GetTaskPushNotificationConfigResponse as bF, type A2ARequest as bG, type A2AResponse as bH, type MessagePart as bI, type TaskArtifact as bJ, type SubAgentApiSelect as bK, type SubAgentApiInsert as bL, type SubAgentApiUpdate as bM, type SubAgentRelationSelect as bN, type SubAgentRelationApiSelect as bO, type SubAgentRelationApiInsert as bP, type SubAgentRelationApiUpdate as bQ, type SubAgentRelationQuery as bR, type ExternalSubAgentRelationApiInsert as bS, type AgentApiSelect as bT, type AgentApiInsert as bU, type AgentApiUpdate as bV, type TaskUpdate as bW, type TaskApiSelect as bX, type TaskApiInsert as bY, type TaskApiUpdate as bZ, type TaskRelationSelect as b_, type A2AError as ba, type PushNotificationAuthenticationInfo as bb, type PushNotificationConfig as bc, type TaskPushNotificationConfig as bd, type TaskIdParams as be, type TaskQueryParams as bf, type MessageSendConfiguration as bg, type MessageSendParams as bh, type JSONRPCMessage as bi, type JSONRPCRequest as bj, type JSONRPCError as bk, type JSONRPCResult as bl, type JSONRPCErrorResponse as bm, type SendMessageRequest as bn, type SendStreamingMessageRequest as bo, type GetTaskRequest as bp, type CancelTaskRequest as bq, type SetTaskPushNotificationConfigRequest as br, type GetTaskPushNotificationConfigRequest as bs, type TaskResubscriptionRequest as bt, type SendMessageSuccessResponse as bu, type SendMessageResponse as bv, type SendStreamingMessageSuccessResponse as bw, type SendStreamingMessageResponse as bx, type GetTaskSuccessResponse as by, type GetTaskResponse as bz, SubAgentStopWhenSchema 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 ExternalSubAgentApiInsert 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 StopWhen as d, TaskInsertSchema as d$, type LedgerArtifactApiSelect as d0, type LedgerArtifactApiInsert as d1, type LedgerArtifactApiUpdate as d2, type FullAgentAgentInsert as d3, type CanUseItem as d4, type InternalSubAgentDefinition as d5, type SubAgentDefinition 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, AgentSelectSchema as dU, AgentInsertSchema as dV, AgentUpdateSchema as dW, AgentApiSelectSchema as dX, AgentApiInsertSchema as dY, AgentApiUpdateSchema 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 AgentStopWhen 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 SubAgentStopWhen as f, ProjectApiUpdateSchema 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, AgentWithinContextOfProjectSchema as fP, PaginationSchema as fQ, ListResponseSchema as fR, SingleResponseSchema as fS, ErrorResponseSchema as fT, ExistsResponseSchema as fU, RemovedResponseSchema as fV, ProjectSelectSchema as fW, ProjectInsertSchema as fX, ProjectUpdateSchema as fY, ProjectApiSelectSchema as fZ, ProjectApiInsertSchema 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, type ModelSettings as g, FullProjectDefinitionSchema as g0, ProjectResponse as g1, SubAgentResponse as g2, AgentResponse as g3, ToolResponse as g4, ExternalAgentResponse as g5, ContextConfigResponse as g6, ApiKeyResponse as g7, CredentialReferenceResponse as g8, FunctionResponse as g9, SubAgentArtifactComponentListResponse as gA, HeadersScopeSchema as gB, TenantParamsSchema as gC, TenantIdParamsSchema as gD, TenantProjectParamsSchema as gE, TenantProjectIdParamsSchema as gF, TenantProjectAgentParamsSchema as gG, TenantProjectAgentIdParamsSchema as gH, TenantProjectAgentSubAgentParamsSchema as gI, TenantProjectAgentSubAgentIdParamsSchema as gJ, PaginationQueryParamsSchema as gK, FunctionToolResponse as ga, DataComponentResponse as gb, ArtifactComponentResponse as gc, SubAgentRelationResponse as gd, SubAgentToolRelationResponse as ge, ConversationResponse as gf, MessageResponse as gg, ProjectListResponse as gh, SubAgentListResponse as gi, AgentListResponse as gj, ToolListResponse as gk, ExternalAgentListResponse as gl, ContextConfigListResponse as gm, ApiKeyListResponse as gn, CredentialReferenceListResponse as go, FunctionListResponse as gp, FunctionToolListResponse as gq, DataComponentListResponse as gr, ArtifactComponentListResponse as gs, SubAgentRelationListResponse as gt, SubAgentToolRelationListResponse as gu, ConversationListResponse as gv, MessageListResponse as gw, SubAgentDataComponentResponse as gx, SubAgentArtifactComponentResponse as gy, SubAgentDataComponentListResponse as gz, CredentialStoreType as h, MCPTransportType as i, FunctionApiSelectSchema as j, FunctionApiUpdateSchema as k, SandboxConfigSchema as l, type ContextFetchDefinition as m, type ToolMcpConfig as n, type ToolServerCapabilities as o, type ConversationMetadata as p, type MessageContent as q, type MessageMetadata as r, type CredentialReferenceApiInsert as s, type ContextConfigSelect as t, type MCPToolConfig as u, type AgentScopeConfig as v, type ProjectScopeConfig as w, type PaginationConfig as x, type AgentInsert as y, type AgentUpdate as z };
10535
+ export { type CredentialReferenceUpdate as $, ApiKeyApiUpdateSchema as A, type AgentSelect as B, type ConversationHistoryConfig as C, type ApiKeySelect as D, type ApiKeyInsert as E, FunctionApiInsertSchema as F, type ApiKeyUpdate 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 SubAgentScopeConfig 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 _, FullAgentAgentInsertSchema 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, AgentStopWhenSchema as b, type TaskRelationUpdate 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 AgentApiSelect as bS, type AgentApiInsert as bT, type AgentApiUpdate as bU, type TaskUpdate as bV, type TaskApiSelect as bW, type TaskApiInsert as bX, type TaskApiUpdate as bY, type TaskRelationSelect as bZ, type TaskRelationInsert 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, SubAgentStopWhenSchema as c, type LedgerArtifactApiSelect as c$, type TaskRelationApiSelect as c0, type TaskRelationApiInsert as c1, type TaskRelationApiUpdate as c2, type ToolApiSelect as c3, type ToolApiInsert as c4, type ToolApiUpdate as c5, type FunctionSelect as c6, type FunctionInsert as c7, type FunctionUpdate as c8, type FunctionApiSelect as c9, type SubAgentDataComponentApiUpdate as cA, type ArtifactComponentApiSelect as cB, type ArtifactComponentApiInsert as cC, type ArtifactComponentApiUpdate as cD, type SubAgentArtifactComponentSelect as cE, type SubAgentArtifactComponentInsert as cF, type SubAgentArtifactComponentUpdate as cG, type SubAgentArtifactComponentApiSelect as cH, type SubAgentArtifactComponentApiInsert as cI, type SubAgentArtifactComponentApiUpdate as cJ, type ExternalAgentApiSelect as cK, type ExternalSubAgentApiInsert as cL, type ExternalAgentApiUpdate as cM, type AllAgentSelect as cN, type ApiKeyApiSelect as cO, type ApiKeyApiInsert as cP, type ApiKeyApiUpdate as cQ, type ApiKeyApiCreationResponse as cR, type CredentialReferenceApiSelect as cS, type CredentialReferenceApiUpdate as cT, type SubAgentToolRelationSelect as cU, type SubAgentToolRelationInsert as cV, type SubAgentToolRelationApiSelect as cW, type SubAgentToolRelationApiInsert as cX, type SubAgentToolRelationApiUpdate as cY, type LedgerArtifactInsert as cZ, type LedgerArtifactUpdate as c_, type FunctionApiUpdate as ca, type FunctionToolApiSelect as cb, type ConversationApiSelect as cc, type ConversationApiInsert as cd, type ConversationApiUpdate as ce, type MessageSelect as cf, type MessageApiSelect as cg, type MessageApiInsert as ch, type MessageApiUpdate as ci, type ContextConfigApiSelect as cj, type ContextConfigApiInsert as ck, type ContextConfigApiUpdate as cl, type FetchDefinition as cm, type FetchConfig as cn, type ContextCacheUpdate as co, type ContextCacheApiSelect as cp, type ContextCacheApiInsert as cq, type ContextCacheApiUpdate as cr, type DataComponentApiSelect as cs, type DataComponentApiInsert as ct, type DataComponentApiUpdate as cu, type SubAgentDataComponentSelect as cv, type SubAgentDataComponentInsert as cw, type SubAgentDataComponentUpdate as cx, type SubAgentDataComponentApiSelect as cy, type SubAgentDataComponentApiInsert as cz, type StopWhen as d, TaskApiSelectSchema as d$, type LedgerArtifactApiInsert as d0, type LedgerArtifactApiUpdate as d1, type FullAgentAgentInsert as d2, type CanUseItem as d3, type InternalSubAgentDefinition as d4, type SubAgentDefinition as d5, type ToolDefinition as d6, type ProjectApiSelect as d7, type ProjectApiInsert as d8, type ProjectApiUpdate as d9, ProjectModelSchema as dA, FunctionToolConfigSchema as dB, type FunctionToolConfig as dC, SubAgentSelectSchema as dD, SubAgentInsertSchema as dE, SubAgentUpdateSchema as dF, SubAgentApiSelectSchema as dG, SubAgentApiInsertSchema as dH, SubAgentApiUpdateSchema as dI, SubAgentRelationSelectSchema as dJ, SubAgentRelationInsertSchema as dK, SubAgentRelationUpdateSchema as dL, SubAgentRelationApiSelectSchema as dM, SubAgentRelationApiInsertSchema as dN, SubAgentRelationApiUpdateSchema as dO, SubAgentRelationQuerySchema as dP, ExternalSubAgentRelationInsertSchema as dQ, ExternalSubAgentRelationApiInsertSchema as dR, AgentSelectSchema as dS, AgentInsertSchema as dT, AgentUpdateSchema as dU, AgentApiSelectSchema as dV, AgentApiInsertSchema as dW, AgentApiUpdateSchema as dX, TaskSelectSchema as dY, TaskInsertSchema as dZ, TaskUpdateSchema as d_, type Pagination as da, type SummaryEvent as db, type MessageType as dc, type MessageRole as dd, type MessageMode as de, type Models as df, type ProjectModels as dg, type StatusUpdateSettings as dh, type StatusComponent as di, type ConversationScopeOptions as dj, type AgentConversationHistoryConfig as dk, type ContextCacheEntry as dl, type McpAuthType as dm, type McpServerAuth as dn, type McpTransportConfig as dp, type McpServerCapabilities as dq, type McpToolDefinition as dr, TOOL_STATUS_VALUES as ds, VALID_RELATION_TYPES as dt, MCPServerType as du, MIN_ID_LENGTH as dv, MAX_ID_LENGTH as dw, URL_SAFE_ID_PATTERN as dx, resourceIdSchema as dy, ModelSchema as dz, type AgentStopWhen as e, ApiKeySelectSchema as e$, TaskApiInsertSchema as e0, TaskApiUpdateSchema as e1, TaskRelationSelectSchema as e2, TaskRelationInsertSchema as e3, TaskRelationUpdateSchema as e4, TaskRelationApiSelectSchema as e5, TaskRelationApiInsertSchema as e6, TaskRelationApiUpdateSchema as e7, McpTransportConfigSchema as e8, ToolStatusSchema as e9, DataComponentApiInsertSchema as eA, DataComponentApiUpdateSchema as eB, SubAgentDataComponentSelectSchema as eC, SubAgentDataComponentInsertSchema as eD, SubAgentDataComponentUpdateSchema as eE, SubAgentDataComponentApiSelectSchema as eF, SubAgentDataComponentApiInsertSchema as eG, SubAgentDataComponentApiUpdateSchema as eH, ArtifactComponentSelectSchema as eI, ArtifactComponentInsertSchema as eJ, ArtifactComponentUpdateSchema as eK, ArtifactComponentApiSelectSchema as eL, ArtifactComponentApiInsertSchema as eM, ArtifactComponentApiUpdateSchema as eN, SubAgentArtifactComponentSelectSchema as eO, SubAgentArtifactComponentInsertSchema as eP, SubAgentArtifactComponentUpdateSchema as eQ, SubAgentArtifactComponentApiSelectSchema as eR, SubAgentArtifactComponentApiInsertSchema as eS, SubAgentArtifactComponentApiUpdateSchema as eT, ExternalAgentSelectSchema as eU, ExternalAgentInsertSchema as eV, ExternalAgentUpdateSchema as eW, ExternalAgentApiSelectSchema as eX, ExternalAgentApiInsertSchema as eY, ExternalAgentApiUpdateSchema as eZ, AllAgentSchema as e_, McpToolDefinitionSchema as ea, ToolSelectSchema as eb, ToolInsertSchema as ec, ConversationSelectSchema as ed, ConversationInsertSchema as ee, ConversationUpdateSchema as ef, ConversationApiSelectSchema as eg, ConversationApiInsertSchema as eh, ConversationApiUpdateSchema as ei, MessageSelectSchema as ej, MessageInsertSchema as ek, MessageUpdateSchema as el, MessageApiSelectSchema as em, MessageApiInsertSchema as en, MessageApiUpdateSchema as eo, ContextCacheSelectSchema as ep, ContextCacheInsertSchema as eq, ContextCacheUpdateSchema as er, ContextCacheApiSelectSchema as es, ContextCacheApiInsertSchema as et, ContextCacheApiUpdateSchema as eu, DataComponentSelectSchema as ev, DataComponentInsertSchema as ew, DataComponentBaseSchema as ex, DataComponentUpdateSchema as ey, DataComponentApiSelectSchema as ez, type SubAgentStopWhen as f, ProjectResponse as f$, ApiKeyInsertSchema as f0, ApiKeyUpdateSchema as f1, ApiKeyApiSelectSchema as f2, ApiKeyApiCreationResponseSchema as f3, ApiKeyApiInsertSchema as f4, CredentialReferenceSelectSchema as f5, CredentialReferenceInsertSchema as f6, CredentialReferenceUpdateSchema as f7, CredentialReferenceApiSelectSchema as f8, CredentialReferenceApiInsertSchema as f9, SubAgentToolRelationUpdateSchema as fA, SubAgentToolRelationApiSelectSchema as fB, SubAgentToolRelationApiInsertSchema as fC, SubAgentToolRelationApiUpdateSchema as fD, LedgerArtifactSelectSchema as fE, LedgerArtifactInsertSchema as fF, LedgerArtifactUpdateSchema as fG, LedgerArtifactApiSelectSchema as fH, LedgerArtifactApiInsertSchema as fI, LedgerArtifactApiUpdateSchema as fJ, StatusComponentSchema as fK, StatusUpdateSchema as fL, CanUseItemSchema as fM, AgentWithinContextOfProjectSchema as fN, PaginationSchema as fO, ListResponseSchema as fP, SingleResponseSchema as fQ, ErrorResponseSchema as fR, ExistsResponseSchema as fS, RemovedResponseSchema as fT, ProjectSelectSchema as fU, ProjectInsertSchema as fV, ProjectUpdateSchema as fW, ProjectApiSelectSchema as fX, ProjectApiInsertSchema as fY, ProjectApiUpdateSchema as fZ, FullProjectDefinitionSchema as f_, CredentialReferenceApiUpdateSchema as fa, McpToolSchema as fb, MCPToolConfigSchema as fc, ToolUpdateSchema as fd, ToolApiSelectSchema as fe, ToolApiInsertSchema as ff, ToolApiUpdateSchema as fg, FunctionToolSelectSchema as fh, FunctionToolInsertSchema as fi, FunctionToolUpdateSchema as fj, FunctionToolApiSelectSchema as fk, FunctionToolApiInsertSchema as fl, FunctionToolApiUpdateSchema as fm, FunctionSelectSchema as fn, FunctionInsertSchema as fo, FunctionUpdateSchema as fp, FetchConfigSchema as fq, FetchDefinitionSchema as fr, ContextConfigSelectSchema as fs, ContextConfigInsertSchema as ft, ContextConfigUpdateSchema as fu, ContextConfigApiSelectSchema as fv, ContextConfigApiInsertSchema as fw, ContextConfigApiUpdateSchema as fx, SubAgentToolRelationSelectSchema as fy, SubAgentToolRelationInsertSchema as fz, type ModelSettings as g, SubAgentResponse as g0, AgentResponse as g1, ToolResponse as g2, ExternalAgentResponse as g3, ContextConfigResponse as g4, ApiKeyResponse as g5, CredentialReferenceResponse as g6, FunctionResponse as g7, FunctionToolResponse as g8, DataComponentResponse as g9, TenantParamsSchema as gA, TenantIdParamsSchema as gB, TenantProjectParamsSchema as gC, TenantProjectIdParamsSchema as gD, TenantProjectAgentParamsSchema as gE, TenantProjectAgentIdParamsSchema as gF, TenantProjectAgentSubAgentParamsSchema as gG, TenantProjectAgentSubAgentIdParamsSchema as gH, PaginationQueryParamsSchema as gI, ArtifactComponentResponse as ga, SubAgentRelationResponse as gb, SubAgentToolRelationResponse as gc, ConversationResponse as gd, MessageResponse as ge, ProjectListResponse as gf, SubAgentListResponse as gg, AgentListResponse as gh, ToolListResponse as gi, ExternalAgentListResponse as gj, ContextConfigListResponse as gk, ApiKeyListResponse as gl, CredentialReferenceListResponse as gm, FunctionListResponse as gn, FunctionToolListResponse as go, DataComponentListResponse as gp, ArtifactComponentListResponse as gq, SubAgentRelationListResponse as gr, SubAgentToolRelationListResponse as gs, ConversationListResponse as gt, MessageListResponse as gu, SubAgentDataComponentResponse as gv, SubAgentArtifactComponentResponse as gw, SubAgentDataComponentListResponse as gx, SubAgentArtifactComponentListResponse as gy, HeadersScopeSchema as gz, CredentialStoreType as h, MCPTransportType as i, FunctionApiSelectSchema as j, FunctionApiUpdateSchema 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 AgentScopeConfig as u, type ProjectScopeConfig as v, type PaginationConfig as w, type AgentInsert as x, type AgentUpdate as y, type FullAgentDefinition as z };
@@ -427,19 +427,6 @@ declare const ProjectModelSchema: z.ZodObject<{
427
427
  providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
428
428
  }, z.core.$strip>>;
429
429
  }, z.core.$strip>;
430
- declare const SandboxConfigSchema: z.ZodObject<{
431
- provider: z.ZodEnum<{
432
- vercel: "vercel";
433
- local: "local";
434
- }>;
435
- runtime: z.ZodEnum<{
436
- node22: "node22";
437
- typescript: "typescript";
438
- }>;
439
- timeout: z.ZodOptional<z.ZodNumber>;
440
- vcpus: z.ZodOptional<z.ZodNumber>;
441
- }, z.core.$strip>;
442
- type SandboxConfig = z.infer<typeof SandboxConfigSchema>;
443
430
  declare const FunctionToolConfigSchema: z.ZodObject<{
444
431
  name: z.ZodString;
445
432
  description: z.ZodString;
@@ -8036,35 +8023,6 @@ declare const ProjectSelectSchema: drizzle_zod.BuildSchema<"select", {
8036
8023
  stepCountIs?: number | undefined;
8037
8024
  };
8038
8025
  }>;
8039
- sandboxConfig: drizzle_orm_sqlite_core.SQLiteColumn<{
8040
- name: "sandbox_config";
8041
- tableName: "projects";
8042
- dataType: "json";
8043
- columnType: "SQLiteTextJson";
8044
- data: {
8045
- provider: "vercel" | "local";
8046
- runtime: "node22" | "typescript";
8047
- timeout?: number;
8048
- vcpus?: number;
8049
- };
8050
- driverParam: string;
8051
- notNull: false;
8052
- hasDefault: false;
8053
- isPrimaryKey: false;
8054
- isAutoincrement: false;
8055
- hasRuntimeDefault: false;
8056
- enumValues: undefined;
8057
- baseColumn: never;
8058
- identity: undefined;
8059
- generated: undefined;
8060
- }, {}, {
8061
- $type: {
8062
- provider: "vercel" | "local";
8063
- runtime: "node22" | "typescript";
8064
- timeout?: number;
8065
- vcpus?: number;
8066
- };
8067
- }>;
8068
8026
  name: drizzle_orm_sqlite_core.SQLiteColumn<{
8069
8027
  name: "name";
8070
8028
  tableName: "projects";
@@ -8165,18 +8123,6 @@ declare const ProjectInsertSchema: z.ZodObject<{
8165
8123
  transferCountIs: z.ZodOptional<z.ZodNumber>;
8166
8124
  stepCountIs: z.ZodOptional<z.ZodNumber>;
8167
8125
  }, z.core.$strip>>;
8168
- sandboxConfig: z.ZodOptional<z.ZodObject<{
8169
- provider: z.ZodEnum<{
8170
- vercel: "vercel";
8171
- local: "local";
8172
- }>;
8173
- runtime: z.ZodEnum<{
8174
- node22: "node22";
8175
- typescript: "typescript";
8176
- }>;
8177
- timeout: z.ZodOptional<z.ZodNumber>;
8178
- vcpus: z.ZodOptional<z.ZodNumber>;
8179
- }, z.core.$strip>>;
8180
8126
  }, {
8181
8127
  out: {};
8182
8128
  in: {};
@@ -8204,18 +8150,6 @@ declare const ProjectUpdateSchema: z.ZodObject<{
8204
8150
  transferCountIs: z.ZodOptional<z.ZodNumber>;
8205
8151
  stepCountIs: z.ZodOptional<z.ZodNumber>;
8206
8152
  }, z.core.$strip>>>;
8207
- sandboxConfig: z.ZodOptional<z.ZodOptional<z.ZodObject<{
8208
- provider: z.ZodEnum<{
8209
- vercel: "vercel";
8210
- local: "local";
8211
- }>;
8212
- runtime: z.ZodEnum<{
8213
- node22: "node22";
8214
- typescript: "typescript";
8215
- }>;
8216
- timeout: z.ZodOptional<z.ZodNumber>;
8217
- vcpus: z.ZodOptional<z.ZodNumber>;
8218
- }, z.core.$strip>>>;
8219
8153
  }, {
8220
8154
  out: {};
8221
8155
  in: {};
@@ -8292,27 +8226,6 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
8292
8226
  transferCountIs?: number | undefined;
8293
8227
  stepCountIs?: number | undefined;
8294
8228
  }>>>;
8295
- sandboxConfig: z.ZodNullable<z.ZodType<{
8296
- provider: "vercel" | "local";
8297
- runtime: "node22" | "typescript";
8298
- timeout?: number;
8299
- vcpus?: number;
8300
- }, {
8301
- provider: "vercel" | "local";
8302
- runtime: "node22" | "typescript";
8303
- timeout?: number;
8304
- vcpus?: number;
8305
- }, z.core.$ZodTypeInternals<{
8306
- provider: "vercel" | "local";
8307
- runtime: "node22" | "typescript";
8308
- timeout?: number;
8309
- vcpus?: number;
8310
- }, {
8311
- provider: "vercel" | "local";
8312
- runtime: "node22" | "typescript";
8313
- timeout?: number;
8314
- vcpus?: number;
8315
- }>>>;
8316
8229
  }, {
8317
8230
  out: {};
8318
8231
  in: {};
@@ -8339,18 +8252,6 @@ declare const ProjectApiInsertSchema: z.ZodObject<{
8339
8252
  transferCountIs: z.ZodOptional<z.ZodNumber>;
8340
8253
  stepCountIs: z.ZodOptional<z.ZodNumber>;
8341
8254
  }, z.core.$strip>>;
8342
- sandboxConfig: z.ZodOptional<z.ZodObject<{
8343
- provider: z.ZodEnum<{
8344
- vercel: "vercel";
8345
- local: "local";
8346
- }>;
8347
- runtime: z.ZodEnum<{
8348
- node22: "node22";
8349
- typescript: "typescript";
8350
- }>;
8351
- timeout: z.ZodOptional<z.ZodNumber>;
8352
- vcpus: z.ZodOptional<z.ZodNumber>;
8353
- }, z.core.$strip>>;
8354
8255
  }, {
8355
8256
  out: {};
8356
8257
  in: {};
@@ -8377,18 +8278,6 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
8377
8278
  transferCountIs: z.ZodOptional<z.ZodNumber>;
8378
8279
  stepCountIs: z.ZodOptional<z.ZodNumber>;
8379
8280
  }, z.core.$strip>>>;
8380
- sandboxConfig: z.ZodOptional<z.ZodOptional<z.ZodObject<{
8381
- provider: z.ZodEnum<{
8382
- vercel: "vercel";
8383
- local: "local";
8384
- }>;
8385
- runtime: z.ZodEnum<{
8386
- node22: "node22";
8387
- typescript: "typescript";
8388
- }>;
8389
- timeout: z.ZodOptional<z.ZodNumber>;
8390
- vcpus: z.ZodOptional<z.ZodNumber>;
8391
- }, z.core.$strip>>>;
8392
8281
  }, {
8393
8282
  out: {};
8394
8283
  in: {};
@@ -8415,18 +8304,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
8415
8304
  transferCountIs: z.ZodOptional<z.ZodNumber>;
8416
8305
  stepCountIs: z.ZodOptional<z.ZodNumber>;
8417
8306
  }, z.core.$strip>>;
8418
- sandboxConfig: z.ZodOptional<z.ZodObject<{
8419
- provider: z.ZodEnum<{
8420
- vercel: "vercel";
8421
- local: "local";
8422
- }>;
8423
- runtime: z.ZodEnum<{
8424
- node22: "node22";
8425
- typescript: "typescript";
8426
- }>;
8427
- timeout: z.ZodOptional<z.ZodNumber>;
8428
- vcpus: z.ZodOptional<z.ZodNumber>;
8429
- }, z.core.$strip>>;
8430
8307
  agents: z.ZodRecord<z.ZodString, z.ZodObject<{
8431
8308
  name: z.ZodString;
8432
8309
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -8735,27 +8612,6 @@ declare const ProjectResponse: z.ZodObject<{
8735
8612
  transferCountIs?: number | undefined;
8736
8613
  stepCountIs?: number | undefined;
8737
8614
  }>>>;
8738
- sandboxConfig: z.ZodNullable<z.ZodType<{
8739
- provider: "vercel" | "local";
8740
- runtime: "node22" | "typescript";
8741
- timeout?: number;
8742
- vcpus?: number;
8743
- }, {
8744
- provider: "vercel" | "local";
8745
- runtime: "node22" | "typescript";
8746
- timeout?: number;
8747
- vcpus?: number;
8748
- }, z.core.$ZodTypeInternals<{
8749
- provider: "vercel" | "local";
8750
- runtime: "node22" | "typescript";
8751
- timeout?: number;
8752
- vcpus?: number;
8753
- }, {
8754
- provider: "vercel" | "local";
8755
- runtime: "node22" | "typescript";
8756
- timeout?: number;
8757
- vcpus?: number;
8758
- }>>>;
8759
8615
  }, {
8760
8616
  out: {};
8761
8617
  in: {};
@@ -9467,27 +9323,6 @@ declare const ProjectListResponse: z.ZodObject<{
9467
9323
  transferCountIs?: number | undefined;
9468
9324
  stepCountIs?: number | undefined;
9469
9325
  }>>>;
9470
- sandboxConfig: z.ZodNullable<z.ZodType<{
9471
- provider: "vercel" | "local";
9472
- runtime: "node22" | "typescript";
9473
- timeout?: number;
9474
- vcpus?: number;
9475
- }, {
9476
- provider: "vercel" | "local";
9477
- runtime: "node22" | "typescript";
9478
- timeout?: number;
9479
- vcpus?: number;
9480
- }, z.core.$ZodTypeInternals<{
9481
- provider: "vercel" | "local";
9482
- runtime: "node22" | "typescript";
9483
- timeout?: number;
9484
- vcpus?: number;
9485
- }, {
9486
- provider: "vercel" | "local";
9487
- runtime: "node22" | "typescript";
9488
- timeout?: number;
9489
- vcpus?: number;
9490
- }>>>;
9491
9326
  }, {
9492
9327
  out: {};
9493
9328
  in: {};
@@ -10697,4 +10532,4 @@ interface ExecutionContext {
10697
10532
  subAgentId?: string;
10698
10533
  }
10699
10534
 
10700
- export { type CredentialReferenceInsert as $, ApiKeyApiUpdateSchema as A, type FullAgentDefinition as B, type ConversationHistoryConfig as C, type AgentSelect as D, type ApiKeySelect as E, FunctionApiInsertSchema as F, type ApiKeyInsert as G, type ApiKeyUpdate as H, type CreateApiKeyParams as I, type ApiKeyCreateResult as J, type ArtifactComponentSelect as K, type ArtifactComponentInsert as L, ModelSettingsSchema as M, type ArtifactComponentUpdate as N, type SubAgentScopeConfig 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 _, FullAgentAgentInsertSchema as a, type JSONParseError 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 FunctionApiInsert as a7, type FunctionToolApiInsert as a8, type FunctionToolApiUpdate as a9, type TextPart as aA, type FileBase as aB, type FileWithBytes as aC, type FileWithUri as aD, type FilePart as aE, type DataPart as aF, TaskState as aG, type AgentCapabilities as aH, type AgentProvider as aI, type AgentSkill as aJ, type SecuritySchemeBase as aK, type APIKeySecurityScheme as aL, type HTTPAuthSecurityScheme as aM, type OAuthFlows as aN, type AuthorizationCodeOAuthFlow as aO, type ClientCredentialsOAuthFlow as aP, type ImplicitOAuthFlow as aQ, type PasswordOAuthFlow as aR, type OAuth2SecurityScheme as aS, type OpenIdConnectSecurityScheme as aT, type SecurityScheme as aU, type AgentCard as aV, type Message as aW, type TaskStatus as aX, type Task as aY, type TaskStatusUpdateEvent as aZ, type TaskArtifactUpdateEvent as a_, type Artifact as aa, type LedgerArtifactSelect as ab, type MessageVisibility as ac, type MessageInsert as ad, type MessageUpdate as ae, type FullProjectDefinition as af, type ProjectInfo as ag, type ProjectSelect as ah, type PaginationResult as ai, type ProjectResourceCounts as aj, type ProjectInsert as ak, type ProjectUpdate as al, type SubAgentRelationInsert as am, type ExternalSubAgentRelationInsert as an, type SubAgentRelationUpdate as ao, type SubAgentToolRelationUpdate as ap, type SubAgentInsert as aq, type SubAgentUpdate as ar, type SubAgentSelect as as, type TaskInsert as at, type TaskSelect as au, type McpTool as av, type ToolInsert as aw, type ToolUpdate as ax, type ExecutionContext as ay, type PartBase as az, AgentStopWhenSchema as b, type TaskRelationInsert as b$, type InvalidRequestError as b0, type MethodNotFoundError as b1, type InvalidParamsError as b2, type InternalError as b3, type TaskNotFoundError as b4, type TaskNotCancelableError as b5, type PushNotificationNotSupportedError as b6, type UnsupportedOperationError as b7, type ContentTypeNotSupportedError as b8, type InvalidAgentResponseError as b9, type CancelTaskSuccessResponse as bA, type CancelTaskResponse as bB, type SetTaskPushNotificationConfigSuccessResponse as bC, type SetTaskPushNotificationConfigResponse as bD, type GetTaskPushNotificationConfigSuccessResponse as bE, type GetTaskPushNotificationConfigResponse as bF, type A2ARequest as bG, type A2AResponse as bH, type MessagePart as bI, type TaskArtifact as bJ, type SubAgentApiSelect as bK, type SubAgentApiInsert as bL, type SubAgentApiUpdate as bM, type SubAgentRelationSelect as bN, type SubAgentRelationApiSelect as bO, type SubAgentRelationApiInsert as bP, type SubAgentRelationApiUpdate as bQ, type SubAgentRelationQuery as bR, type ExternalSubAgentRelationApiInsert as bS, type AgentApiSelect as bT, type AgentApiInsert as bU, type AgentApiUpdate as bV, type TaskUpdate as bW, type TaskApiSelect as bX, type TaskApiInsert as bY, type TaskApiUpdate as bZ, type TaskRelationSelect as b_, type A2AError as ba, type PushNotificationAuthenticationInfo as bb, type PushNotificationConfig as bc, type TaskPushNotificationConfig as bd, type TaskIdParams as be, type TaskQueryParams as bf, type MessageSendConfiguration as bg, type MessageSendParams as bh, type JSONRPCMessage as bi, type JSONRPCRequest as bj, type JSONRPCError as bk, type JSONRPCResult as bl, type JSONRPCErrorResponse as bm, type SendMessageRequest as bn, type SendStreamingMessageRequest as bo, type GetTaskRequest as bp, type CancelTaskRequest as bq, type SetTaskPushNotificationConfigRequest as br, type GetTaskPushNotificationConfigRequest as bs, type TaskResubscriptionRequest as bt, type SendMessageSuccessResponse as bu, type SendMessageResponse as bv, type SendStreamingMessageSuccessResponse as bw, type SendStreamingMessageResponse as bx, type GetTaskSuccessResponse as by, type GetTaskResponse as bz, SubAgentStopWhenSchema 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 ExternalSubAgentApiInsert 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 StopWhen as d, TaskInsertSchema as d$, type LedgerArtifactApiSelect as d0, type LedgerArtifactApiInsert as d1, type LedgerArtifactApiUpdate as d2, type FullAgentAgentInsert as d3, type CanUseItem as d4, type InternalSubAgentDefinition as d5, type SubAgentDefinition 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, AgentSelectSchema as dU, AgentInsertSchema as dV, AgentUpdateSchema as dW, AgentApiSelectSchema as dX, AgentApiInsertSchema as dY, AgentApiUpdateSchema 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 AgentStopWhen 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 SubAgentStopWhen as f, ProjectApiUpdateSchema 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, AgentWithinContextOfProjectSchema as fP, PaginationSchema as fQ, ListResponseSchema as fR, SingleResponseSchema as fS, ErrorResponseSchema as fT, ExistsResponseSchema as fU, RemovedResponseSchema as fV, ProjectSelectSchema as fW, ProjectInsertSchema as fX, ProjectUpdateSchema as fY, ProjectApiSelectSchema as fZ, ProjectApiInsertSchema 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, type ModelSettings as g, FullProjectDefinitionSchema as g0, ProjectResponse as g1, SubAgentResponse as g2, AgentResponse as g3, ToolResponse as g4, ExternalAgentResponse as g5, ContextConfigResponse as g6, ApiKeyResponse as g7, CredentialReferenceResponse as g8, FunctionResponse as g9, SubAgentArtifactComponentListResponse as gA, HeadersScopeSchema as gB, TenantParamsSchema as gC, TenantIdParamsSchema as gD, TenantProjectParamsSchema as gE, TenantProjectIdParamsSchema as gF, TenantProjectAgentParamsSchema as gG, TenantProjectAgentIdParamsSchema as gH, TenantProjectAgentSubAgentParamsSchema as gI, TenantProjectAgentSubAgentIdParamsSchema as gJ, PaginationQueryParamsSchema as gK, FunctionToolResponse as ga, DataComponentResponse as gb, ArtifactComponentResponse as gc, SubAgentRelationResponse as gd, SubAgentToolRelationResponse as ge, ConversationResponse as gf, MessageResponse as gg, ProjectListResponse as gh, SubAgentListResponse as gi, AgentListResponse as gj, ToolListResponse as gk, ExternalAgentListResponse as gl, ContextConfigListResponse as gm, ApiKeyListResponse as gn, CredentialReferenceListResponse as go, FunctionListResponse as gp, FunctionToolListResponse as gq, DataComponentListResponse as gr, ArtifactComponentListResponse as gs, SubAgentRelationListResponse as gt, SubAgentToolRelationListResponse as gu, ConversationListResponse as gv, MessageListResponse as gw, SubAgentDataComponentResponse as gx, SubAgentArtifactComponentResponse as gy, SubAgentDataComponentListResponse as gz, CredentialStoreType as h, MCPTransportType as i, FunctionApiSelectSchema as j, FunctionApiUpdateSchema as k, SandboxConfigSchema as l, type ContextFetchDefinition as m, type ToolMcpConfig as n, type ToolServerCapabilities as o, type ConversationMetadata as p, type MessageContent as q, type MessageMetadata as r, type CredentialReferenceApiInsert as s, type ContextConfigSelect as t, type MCPToolConfig as u, type AgentScopeConfig as v, type ProjectScopeConfig as w, type PaginationConfig as x, type AgentInsert as y, type AgentUpdate as z };
10535
+ export { type CredentialReferenceUpdate as $, ApiKeyApiUpdateSchema as A, type AgentSelect as B, type ConversationHistoryConfig as C, type ApiKeySelect as D, type ApiKeyInsert as E, FunctionApiInsertSchema as F, type ApiKeyUpdate 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 SubAgentScopeConfig 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 _, FullAgentAgentInsertSchema 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, AgentStopWhenSchema as b, type TaskRelationUpdate 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 AgentApiSelect as bS, type AgentApiInsert as bT, type AgentApiUpdate as bU, type TaskUpdate as bV, type TaskApiSelect as bW, type TaskApiInsert as bX, type TaskApiUpdate as bY, type TaskRelationSelect as bZ, type TaskRelationInsert 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, SubAgentStopWhenSchema as c, type LedgerArtifactApiSelect as c$, type TaskRelationApiSelect as c0, type TaskRelationApiInsert as c1, type TaskRelationApiUpdate as c2, type ToolApiSelect as c3, type ToolApiInsert as c4, type ToolApiUpdate as c5, type FunctionSelect as c6, type FunctionInsert as c7, type FunctionUpdate as c8, type FunctionApiSelect as c9, type SubAgentDataComponentApiUpdate as cA, type ArtifactComponentApiSelect as cB, type ArtifactComponentApiInsert as cC, type ArtifactComponentApiUpdate as cD, type SubAgentArtifactComponentSelect as cE, type SubAgentArtifactComponentInsert as cF, type SubAgentArtifactComponentUpdate as cG, type SubAgentArtifactComponentApiSelect as cH, type SubAgentArtifactComponentApiInsert as cI, type SubAgentArtifactComponentApiUpdate as cJ, type ExternalAgentApiSelect as cK, type ExternalSubAgentApiInsert as cL, type ExternalAgentApiUpdate as cM, type AllAgentSelect as cN, type ApiKeyApiSelect as cO, type ApiKeyApiInsert as cP, type ApiKeyApiUpdate as cQ, type ApiKeyApiCreationResponse as cR, type CredentialReferenceApiSelect as cS, type CredentialReferenceApiUpdate as cT, type SubAgentToolRelationSelect as cU, type SubAgentToolRelationInsert as cV, type SubAgentToolRelationApiSelect as cW, type SubAgentToolRelationApiInsert as cX, type SubAgentToolRelationApiUpdate as cY, type LedgerArtifactInsert as cZ, type LedgerArtifactUpdate as c_, type FunctionApiUpdate as ca, type FunctionToolApiSelect as cb, type ConversationApiSelect as cc, type ConversationApiInsert as cd, type ConversationApiUpdate as ce, type MessageSelect as cf, type MessageApiSelect as cg, type MessageApiInsert as ch, type MessageApiUpdate as ci, type ContextConfigApiSelect as cj, type ContextConfigApiInsert as ck, type ContextConfigApiUpdate as cl, type FetchDefinition as cm, type FetchConfig as cn, type ContextCacheUpdate as co, type ContextCacheApiSelect as cp, type ContextCacheApiInsert as cq, type ContextCacheApiUpdate as cr, type DataComponentApiSelect as cs, type DataComponentApiInsert as ct, type DataComponentApiUpdate as cu, type SubAgentDataComponentSelect as cv, type SubAgentDataComponentInsert as cw, type SubAgentDataComponentUpdate as cx, type SubAgentDataComponentApiSelect as cy, type SubAgentDataComponentApiInsert as cz, type StopWhen as d, TaskApiSelectSchema as d$, type LedgerArtifactApiInsert as d0, type LedgerArtifactApiUpdate as d1, type FullAgentAgentInsert as d2, type CanUseItem as d3, type InternalSubAgentDefinition as d4, type SubAgentDefinition as d5, type ToolDefinition as d6, type ProjectApiSelect as d7, type ProjectApiInsert as d8, type ProjectApiUpdate as d9, ProjectModelSchema as dA, FunctionToolConfigSchema as dB, type FunctionToolConfig as dC, SubAgentSelectSchema as dD, SubAgentInsertSchema as dE, SubAgentUpdateSchema as dF, SubAgentApiSelectSchema as dG, SubAgentApiInsertSchema as dH, SubAgentApiUpdateSchema as dI, SubAgentRelationSelectSchema as dJ, SubAgentRelationInsertSchema as dK, SubAgentRelationUpdateSchema as dL, SubAgentRelationApiSelectSchema as dM, SubAgentRelationApiInsertSchema as dN, SubAgentRelationApiUpdateSchema as dO, SubAgentRelationQuerySchema as dP, ExternalSubAgentRelationInsertSchema as dQ, ExternalSubAgentRelationApiInsertSchema as dR, AgentSelectSchema as dS, AgentInsertSchema as dT, AgentUpdateSchema as dU, AgentApiSelectSchema as dV, AgentApiInsertSchema as dW, AgentApiUpdateSchema as dX, TaskSelectSchema as dY, TaskInsertSchema as dZ, TaskUpdateSchema as d_, type Pagination as da, type SummaryEvent as db, type MessageType as dc, type MessageRole as dd, type MessageMode as de, type Models as df, type ProjectModels as dg, type StatusUpdateSettings as dh, type StatusComponent as di, type ConversationScopeOptions as dj, type AgentConversationHistoryConfig as dk, type ContextCacheEntry as dl, type McpAuthType as dm, type McpServerAuth as dn, type McpTransportConfig as dp, type McpServerCapabilities as dq, type McpToolDefinition as dr, TOOL_STATUS_VALUES as ds, VALID_RELATION_TYPES as dt, MCPServerType as du, MIN_ID_LENGTH as dv, MAX_ID_LENGTH as dw, URL_SAFE_ID_PATTERN as dx, resourceIdSchema as dy, ModelSchema as dz, type AgentStopWhen as e, ApiKeySelectSchema as e$, TaskApiInsertSchema as e0, TaskApiUpdateSchema as e1, TaskRelationSelectSchema as e2, TaskRelationInsertSchema as e3, TaskRelationUpdateSchema as e4, TaskRelationApiSelectSchema as e5, TaskRelationApiInsertSchema as e6, TaskRelationApiUpdateSchema as e7, McpTransportConfigSchema as e8, ToolStatusSchema as e9, DataComponentApiInsertSchema as eA, DataComponentApiUpdateSchema as eB, SubAgentDataComponentSelectSchema as eC, SubAgentDataComponentInsertSchema as eD, SubAgentDataComponentUpdateSchema as eE, SubAgentDataComponentApiSelectSchema as eF, SubAgentDataComponentApiInsertSchema as eG, SubAgentDataComponentApiUpdateSchema as eH, ArtifactComponentSelectSchema as eI, ArtifactComponentInsertSchema as eJ, ArtifactComponentUpdateSchema as eK, ArtifactComponentApiSelectSchema as eL, ArtifactComponentApiInsertSchema as eM, ArtifactComponentApiUpdateSchema as eN, SubAgentArtifactComponentSelectSchema as eO, SubAgentArtifactComponentInsertSchema as eP, SubAgentArtifactComponentUpdateSchema as eQ, SubAgentArtifactComponentApiSelectSchema as eR, SubAgentArtifactComponentApiInsertSchema as eS, SubAgentArtifactComponentApiUpdateSchema as eT, ExternalAgentSelectSchema as eU, ExternalAgentInsertSchema as eV, ExternalAgentUpdateSchema as eW, ExternalAgentApiSelectSchema as eX, ExternalAgentApiInsertSchema as eY, ExternalAgentApiUpdateSchema as eZ, AllAgentSchema as e_, McpToolDefinitionSchema as ea, ToolSelectSchema as eb, ToolInsertSchema as ec, ConversationSelectSchema as ed, ConversationInsertSchema as ee, ConversationUpdateSchema as ef, ConversationApiSelectSchema as eg, ConversationApiInsertSchema as eh, ConversationApiUpdateSchema as ei, MessageSelectSchema as ej, MessageInsertSchema as ek, MessageUpdateSchema as el, MessageApiSelectSchema as em, MessageApiInsertSchema as en, MessageApiUpdateSchema as eo, ContextCacheSelectSchema as ep, ContextCacheInsertSchema as eq, ContextCacheUpdateSchema as er, ContextCacheApiSelectSchema as es, ContextCacheApiInsertSchema as et, ContextCacheApiUpdateSchema as eu, DataComponentSelectSchema as ev, DataComponentInsertSchema as ew, DataComponentBaseSchema as ex, DataComponentUpdateSchema as ey, DataComponentApiSelectSchema as ez, type SubAgentStopWhen as f, ProjectResponse as f$, ApiKeyInsertSchema as f0, ApiKeyUpdateSchema as f1, ApiKeyApiSelectSchema as f2, ApiKeyApiCreationResponseSchema as f3, ApiKeyApiInsertSchema as f4, CredentialReferenceSelectSchema as f5, CredentialReferenceInsertSchema as f6, CredentialReferenceUpdateSchema as f7, CredentialReferenceApiSelectSchema as f8, CredentialReferenceApiInsertSchema as f9, SubAgentToolRelationUpdateSchema as fA, SubAgentToolRelationApiSelectSchema as fB, SubAgentToolRelationApiInsertSchema as fC, SubAgentToolRelationApiUpdateSchema as fD, LedgerArtifactSelectSchema as fE, LedgerArtifactInsertSchema as fF, LedgerArtifactUpdateSchema as fG, LedgerArtifactApiSelectSchema as fH, LedgerArtifactApiInsertSchema as fI, LedgerArtifactApiUpdateSchema as fJ, StatusComponentSchema as fK, StatusUpdateSchema as fL, CanUseItemSchema as fM, AgentWithinContextOfProjectSchema as fN, PaginationSchema as fO, ListResponseSchema as fP, SingleResponseSchema as fQ, ErrorResponseSchema as fR, ExistsResponseSchema as fS, RemovedResponseSchema as fT, ProjectSelectSchema as fU, ProjectInsertSchema as fV, ProjectUpdateSchema as fW, ProjectApiSelectSchema as fX, ProjectApiInsertSchema as fY, ProjectApiUpdateSchema as fZ, FullProjectDefinitionSchema as f_, CredentialReferenceApiUpdateSchema as fa, McpToolSchema as fb, MCPToolConfigSchema as fc, ToolUpdateSchema as fd, ToolApiSelectSchema as fe, ToolApiInsertSchema as ff, ToolApiUpdateSchema as fg, FunctionToolSelectSchema as fh, FunctionToolInsertSchema as fi, FunctionToolUpdateSchema as fj, FunctionToolApiSelectSchema as fk, FunctionToolApiInsertSchema as fl, FunctionToolApiUpdateSchema as fm, FunctionSelectSchema as fn, FunctionInsertSchema as fo, FunctionUpdateSchema as fp, FetchConfigSchema as fq, FetchDefinitionSchema as fr, ContextConfigSelectSchema as fs, ContextConfigInsertSchema as ft, ContextConfigUpdateSchema as fu, ContextConfigApiSelectSchema as fv, ContextConfigApiInsertSchema as fw, ContextConfigApiUpdateSchema as fx, SubAgentToolRelationSelectSchema as fy, SubAgentToolRelationInsertSchema as fz, type ModelSettings as g, SubAgentResponse as g0, AgentResponse as g1, ToolResponse as g2, ExternalAgentResponse as g3, ContextConfigResponse as g4, ApiKeyResponse as g5, CredentialReferenceResponse as g6, FunctionResponse as g7, FunctionToolResponse as g8, DataComponentResponse as g9, TenantParamsSchema as gA, TenantIdParamsSchema as gB, TenantProjectParamsSchema as gC, TenantProjectIdParamsSchema as gD, TenantProjectAgentParamsSchema as gE, TenantProjectAgentIdParamsSchema as gF, TenantProjectAgentSubAgentParamsSchema as gG, TenantProjectAgentSubAgentIdParamsSchema as gH, PaginationQueryParamsSchema as gI, ArtifactComponentResponse as ga, SubAgentRelationResponse as gb, SubAgentToolRelationResponse as gc, ConversationResponse as gd, MessageResponse as ge, ProjectListResponse as gf, SubAgentListResponse as gg, AgentListResponse as gh, ToolListResponse as gi, ExternalAgentListResponse as gj, ContextConfigListResponse as gk, ApiKeyListResponse as gl, CredentialReferenceListResponse as gm, FunctionListResponse as gn, FunctionToolListResponse as go, DataComponentListResponse as gp, ArtifactComponentListResponse as gq, SubAgentRelationListResponse as gr, SubAgentToolRelationListResponse as gs, ConversationListResponse as gt, MessageListResponse as gu, SubAgentDataComponentResponse as gv, SubAgentArtifactComponentResponse as gw, SubAgentDataComponentListResponse as gx, SubAgentArtifactComponentListResponse as gy, HeadersScopeSchema as gz, CredentialStoreType as h, MCPTransportType as i, FunctionApiSelectSchema as j, FunctionApiUpdateSchema 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 AgentScopeConfig as u, type ProjectScopeConfig as v, type PaginationConfig as w, type AgentInsert as x, type AgentUpdate as y, type FullAgentDefinition as z };