@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.
@@ -80,7 +80,6 @@ var projects = sqliteCore.sqliteTable(
80
80
  ...uiProperties,
81
81
  models: sqliteCore.text("models", { mode: "json" }).$type(),
82
82
  stopWhen: sqliteCore.text("stop_when", { mode: "json" }).$type(),
83
- sandboxConfig: sqliteCore.text("sandbox_config", { mode: "json" }).$type(),
84
83
  ...timestamps
85
84
  },
86
85
  (table) => [sqliteCore.primaryKey({ columns: [table.tenantId, table.id] })]
@@ -936,12 +935,6 @@ var ProjectModelSchema = zodOpenapi.z.object({
936
935
  structuredOutput: ModelSettingsSchema.optional(),
937
936
  summarizer: ModelSettingsSchema.optional()
938
937
  }).openapi("ProjectModel");
939
- var SandboxConfigSchema = zodOpenapi.z.object({
940
- provider: zodOpenapi.z.enum(["vercel", "local"]),
941
- runtime: zodOpenapi.z.enum(["node22", "typescript"]),
942
- timeout: zodOpenapi.z.number().min(1e3).max(3e5).optional(),
943
- vcpus: zodOpenapi.z.number().min(1).max(8).optional()
944
- }).openapi("SandboxConfig");
945
938
  var FunctionToolConfigSchema = zodOpenapi.z.object({
946
939
  name: zodOpenapi.z.string(),
947
940
  description: zodOpenapi.z.string(),
@@ -961,15 +954,9 @@ var SubAgentInsertSchema = drizzleZod.createInsertSchema(subAgents).extend({
961
954
  models: ModelSchema.optional()
962
955
  });
963
956
  var SubAgentUpdateSchema = SubAgentInsertSchema.partial();
964
- var SubAgentApiSelectSchema = createAgentScopedApiSchema(SubAgentSelectSchema).openapi(
965
- "SubAgent"
966
- );
967
- var SubAgentApiInsertSchema = createAgentScopedApiInsertSchema(
968
- SubAgentInsertSchema
969
- ).openapi("SubAgentCreate");
970
- var SubAgentApiUpdateSchema = createAgentScopedApiUpdateSchema(
971
- SubAgentUpdateSchema
972
- ).openapi("SubAgentUpdate");
957
+ var SubAgentApiSelectSchema = createAgentScopedApiSchema(SubAgentSelectSchema).openapi("SubAgent");
958
+ var SubAgentApiInsertSchema = createAgentScopedApiInsertSchema(SubAgentInsertSchema).openapi("SubAgentCreate");
959
+ var SubAgentApiUpdateSchema = createAgentScopedApiUpdateSchema(SubAgentUpdateSchema).openapi("SubAgentUpdate");
973
960
  var SubAgentRelationSelectSchema = drizzleZod.createSelectSchema(subAgentRelations);
974
961
  var SubAgentRelationInsertSchema = drizzleZod.createInsertSchema(subAgentRelations).extend({
975
962
  id: resourceIdSchema,
@@ -1038,9 +1025,7 @@ var AgentApiSelectSchema = createApiSchema(AgentSelectSchema).openapi("Agent");
1038
1025
  var AgentApiInsertSchema = createApiInsertSchema(AgentInsertSchema).extend({
1039
1026
  id: resourceIdSchema
1040
1027
  }).openapi("AgentCreate");
1041
- var AgentApiUpdateSchema = createApiUpdateSchema(AgentUpdateSchema).openapi(
1042
- "AgentUpdate"
1043
- );
1028
+ var AgentApiUpdateSchema = createApiUpdateSchema(AgentUpdateSchema).openapi("AgentUpdate");
1044
1029
  var TaskSelectSchema = drizzleZod.createSelectSchema(tasks);
1045
1030
  var TaskInsertSchema = drizzleZod.createInsertSchema(tasks).extend({
1046
1031
  id: resourceIdSchema,
@@ -1125,15 +1110,9 @@ var ConversationInsertSchema = drizzleZod.createInsertSchema(conversations).exte
1125
1110
  contextConfigId: resourceIdSchema.optional()
1126
1111
  });
1127
1112
  var ConversationUpdateSchema = ConversationInsertSchema.partial();
1128
- var ConversationApiSelectSchema = createApiSchema(ConversationSelectSchema).openapi(
1129
- "Conversation"
1130
- );
1131
- var ConversationApiInsertSchema = createApiInsertSchema(ConversationInsertSchema).openapi(
1132
- "ConversationCreate"
1133
- );
1134
- var ConversationApiUpdateSchema = createApiUpdateSchema(ConversationUpdateSchema).openapi(
1135
- "ConversationUpdate"
1136
- );
1113
+ var ConversationApiSelectSchema = createApiSchema(ConversationSelectSchema).openapi("Conversation");
1114
+ var ConversationApiInsertSchema = createApiInsertSchema(ConversationInsertSchema).openapi("ConversationCreate");
1115
+ var ConversationApiUpdateSchema = createApiUpdateSchema(ConversationUpdateSchema).openapi("ConversationUpdate");
1137
1116
  var MessageSelectSchema = drizzleZod.createSelectSchema(messages);
1138
1117
  var MessageInsertSchema = drizzleZod.createInsertSchema(messages).extend({
1139
1118
  id: resourceIdSchema,
@@ -1142,12 +1121,8 @@ var MessageInsertSchema = drizzleZod.createInsertSchema(messages).extend({
1142
1121
  });
1143
1122
  var MessageUpdateSchema = MessageInsertSchema.partial();
1144
1123
  var MessageApiSelectSchema = createApiSchema(MessageSelectSchema).openapi("Message");
1145
- var MessageApiInsertSchema = createApiInsertSchema(MessageInsertSchema).openapi(
1146
- "MessageCreate"
1147
- );
1148
- var MessageApiUpdateSchema = createApiUpdateSchema(MessageUpdateSchema).openapi(
1149
- "MessageUpdate"
1150
- );
1124
+ var MessageApiInsertSchema = createApiInsertSchema(MessageInsertSchema).openapi("MessageCreate");
1125
+ var MessageApiUpdateSchema = createApiUpdateSchema(MessageUpdateSchema).openapi("MessageUpdate");
1151
1126
  var ContextCacheSelectSchema = drizzleZod.createSelectSchema(contextCache);
1152
1127
  var ContextCacheInsertSchema = drizzleZod.createInsertSchema(contextCache);
1153
1128
  var ContextCacheUpdateSchema = ContextCacheInsertSchema.partial();
@@ -1163,15 +1138,9 @@ var DataComponentBaseSchema = DataComponentInsertSchema.omit({
1163
1138
  updatedAt: true
1164
1139
  });
1165
1140
  var DataComponentUpdateSchema = DataComponentInsertSchema.partial();
1166
- var DataComponentApiSelectSchema = createApiSchema(
1167
- DataComponentSelectSchema
1168
- ).openapi("DataComponent");
1169
- var DataComponentApiInsertSchema = createApiInsertSchema(
1170
- DataComponentInsertSchema
1171
- ).openapi("DataComponentCreate");
1172
- var DataComponentApiUpdateSchema = createApiUpdateSchema(
1173
- DataComponentUpdateSchema
1174
- ).openapi("DataComponentUpdate");
1141
+ var DataComponentApiSelectSchema = createApiSchema(DataComponentSelectSchema).openapi("DataComponent");
1142
+ var DataComponentApiInsertSchema = createApiInsertSchema(DataComponentInsertSchema).openapi("DataComponentCreate");
1143
+ var DataComponentApiUpdateSchema = createApiUpdateSchema(DataComponentUpdateSchema).openapi("DataComponentUpdate");
1175
1144
  var SubAgentDataComponentSelectSchema = drizzleZod.createSelectSchema(subAgentDataComponents);
1176
1145
  var SubAgentDataComponentInsertSchema = drizzleZod.createInsertSchema(subAgentDataComponents);
1177
1146
  var SubAgentDataComponentUpdateSchema = SubAgentDataComponentInsertSchema.partial();
@@ -1233,15 +1202,9 @@ var ExternalAgentInsertSchema = drizzleZod.createInsertSchema(externalAgents).ex
1233
1202
  id: resourceIdSchema
1234
1203
  });
1235
1204
  var ExternalAgentUpdateSchema = ExternalAgentInsertSchema.partial();
1236
- var ExternalAgentApiSelectSchema = createAgentScopedApiSchema(
1237
- ExternalAgentSelectSchema
1238
- ).openapi("ExternalAgent");
1239
- var ExternalAgentApiInsertSchema = createAgentScopedApiInsertSchema(
1240
- ExternalAgentInsertSchema
1241
- ).openapi("ExternalAgentCreate");
1242
- var ExternalAgentApiUpdateSchema = createAgentScopedApiUpdateSchema(
1243
- ExternalAgentUpdateSchema
1244
- ).openapi("ExternalAgentUpdate");
1205
+ var ExternalAgentApiSelectSchema = createAgentScopedApiSchema(ExternalAgentSelectSchema).openapi("ExternalAgent");
1206
+ var ExternalAgentApiInsertSchema = createAgentScopedApiInsertSchema(ExternalAgentInsertSchema).openapi("ExternalAgentCreate");
1207
+ var ExternalAgentApiUpdateSchema = createAgentScopedApiUpdateSchema(ExternalAgentUpdateSchema).openapi("ExternalAgentUpdate");
1245
1208
  var AllAgentSchema = zodOpenapi.z.discriminatedUnion("type", [
1246
1209
  SubAgentApiSelectSchema.extend({ type: zodOpenapi.z.literal("internal") }),
1247
1210
  ExternalAgentApiSelectSchema.extend({ type: zodOpenapi.z.literal("external") })
@@ -1304,9 +1267,7 @@ var CredentialReferenceInsertSchema = drizzleZod.createInsertSchema(credentialRe
1304
1267
  retrievalParams: zodOpenapi.z.record(zodOpenapi.z.string(), zodOpenapi.z.unknown()).nullish()
1305
1268
  });
1306
1269
  var CredentialReferenceUpdateSchema = CredentialReferenceInsertSchema.partial();
1307
- var CredentialReferenceApiSelectSchema = createApiSchema(
1308
- CredentialReferenceSelectSchema
1309
- ).extend({
1270
+ var CredentialReferenceApiSelectSchema = createApiSchema(CredentialReferenceSelectSchema).extend({
1310
1271
  type: zodOpenapi.z.enum(CredentialStoreType),
1311
1272
  tools: zodOpenapi.z.array(ToolSelectSchema).optional()
1312
1273
  }).openapi("CredentialReference");
@@ -1356,27 +1317,17 @@ var FunctionToolInsertSchema = drizzleZod.createInsertSchema(functionTools).exte
1356
1317
  id: resourceIdSchema
1357
1318
  });
1358
1319
  var FunctionToolUpdateSchema = FunctionToolInsertSchema.partial();
1359
- var FunctionToolApiSelectSchema = createApiSchema(FunctionToolSelectSchema).openapi(
1360
- "FunctionTool"
1361
- );
1362
- var FunctionToolApiInsertSchema = createAgentScopedApiInsertSchema(
1363
- FunctionToolInsertSchema
1364
- ).openapi("FunctionToolCreate");
1365
- var FunctionToolApiUpdateSchema = createApiUpdateSchema(
1366
- FunctionToolUpdateSchema
1367
- ).openapi("FunctionToolUpdate");
1320
+ var FunctionToolApiSelectSchema = createApiSchema(FunctionToolSelectSchema).openapi("FunctionTool");
1321
+ var FunctionToolApiInsertSchema = createAgentScopedApiInsertSchema(FunctionToolInsertSchema).openapi("FunctionToolCreate");
1322
+ var FunctionToolApiUpdateSchema = createApiUpdateSchema(FunctionToolUpdateSchema).openapi("FunctionToolUpdate");
1368
1323
  var FunctionSelectSchema = drizzleZod.createSelectSchema(functions);
1369
1324
  var FunctionInsertSchema = drizzleZod.createInsertSchema(functions).extend({
1370
1325
  id: resourceIdSchema
1371
1326
  });
1372
1327
  var FunctionUpdateSchema = FunctionInsertSchema.partial();
1373
1328
  var FunctionApiSelectSchema = createApiSchema(FunctionSelectSchema).openapi("Function");
1374
- var FunctionApiInsertSchema = createApiInsertSchema(FunctionInsertSchema).openapi(
1375
- "FunctionCreate"
1376
- );
1377
- var FunctionApiUpdateSchema = createApiUpdateSchema(FunctionUpdateSchema).openapi(
1378
- "FunctionUpdate"
1379
- );
1329
+ var FunctionApiInsertSchema = createApiInsertSchema(FunctionInsertSchema).openapi("FunctionCreate");
1330
+ var FunctionApiUpdateSchema = createApiUpdateSchema(FunctionUpdateSchema).openapi("FunctionUpdate");
1380
1331
  var FetchConfigSchema = zodOpenapi.z.object({
1381
1332
  url: zodOpenapi.z.string().min(1, "URL is required"),
1382
1333
  method: zodOpenapi.z.enum(["GET", "POST", "PUT", "DELETE", "PATCH"]).optional().default("GET"),
@@ -1531,8 +1482,7 @@ var RemovedResponseSchema = zodOpenapi.z.object({
1531
1482
  var ProjectSelectSchema = drizzleZod.createSelectSchema(projects);
1532
1483
  var ProjectInsertSchema = drizzleZod.createInsertSchema(projects).extend({
1533
1484
  models: ProjectModelSchema,
1534
- stopWhen: StopWhenSchema.optional(),
1535
- sandboxConfig: SandboxConfigSchema.optional()
1485
+ stopWhen: StopWhenSchema.optional()
1536
1486
  }).omit({
1537
1487
  createdAt: true,
1538
1488
  updatedAt: true
@@ -2082,7 +2032,6 @@ exports.ProjectResponse = ProjectResponse;
2082
2032
  exports.ProjectSelectSchema = ProjectSelectSchema;
2083
2033
  exports.ProjectUpdateSchema = ProjectUpdateSchema;
2084
2034
  exports.RemovedResponseSchema = RemovedResponseSchema;
2085
- exports.SandboxConfigSchema = SandboxConfigSchema;
2086
2035
  exports.SingleResponseSchema = SingleResponseSchema;
2087
2036
  exports.StatusComponentSchema = StatusComponentSchema;
2088
2037
  exports.StatusUpdateSchema = StatusUpdateSchema;
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
- import { d6 as SubAgentDefinition, d5 as InternalSubAgentDefinition, cM as ExternalSubAgentApiInsert, fP as AgentWithinContextOfProjectSchema, B as FullAgentDefinition } from '../utility-HqRMF7sM.cjs';
3
- export { dY as AgentApiInsertSchema, dX as AgentApiSelectSchema, dZ as AgentApiUpdateSchema, dV as AgentInsertSchema, gj as AgentListResponse, g3 as AgentResponse, dU as AgentSelectSchema, e as AgentStopWhen, b as AgentStopWhenSchema, dW as AgentUpdateSchema, f0 as AllAgentSchema, f5 as ApiKeyApiCreationResponseSchema, f6 as ApiKeyApiInsertSchema, f4 as ApiKeyApiSelectSchema, A as ApiKeyApiUpdateSchema, f2 as ApiKeyInsertSchema, gn as ApiKeyListResponse, g7 as ApiKeyResponse, f1 as ApiKeySelectSchema, f3 as ApiKeyUpdateSchema, eO as ArtifactComponentApiInsertSchema, eN as ArtifactComponentApiSelectSchema, eP as ArtifactComponentApiUpdateSchema, eL as ArtifactComponentInsertSchema, gs as ArtifactComponentListResponse, gc as ArtifactComponentResponse, eK as ArtifactComponentSelectSchema, eM as ArtifactComponentUpdateSchema, fO as CanUseItemSchema, ev as ContextCacheApiInsertSchema, eu as ContextCacheApiSelectSchema, ew as ContextCacheApiUpdateSchema, es as ContextCacheInsertSchema, er as ContextCacheSelectSchema, et as ContextCacheUpdateSchema, fy as ContextConfigApiInsertSchema, fx as ContextConfigApiSelectSchema, fz as ContextConfigApiUpdateSchema, fv as ContextConfigInsertSchema, gm as ContextConfigListResponse, g6 as ContextConfigResponse, fu as ContextConfigSelectSchema, fw as ContextConfigUpdateSchema, ej as ConversationApiInsertSchema, ei as ConversationApiSelectSchema, ek as ConversationApiUpdateSchema, eg as ConversationInsertSchema, gv as ConversationListResponse, gf as ConversationResponse, ef as ConversationSelectSchema, eh as ConversationUpdateSchema, fb as CredentialReferenceApiInsertSchema, fa as CredentialReferenceApiSelectSchema, fc as CredentialReferenceApiUpdateSchema, f8 as CredentialReferenceInsertSchema, go as CredentialReferenceListResponse, g8 as CredentialReferenceResponse, f7 as CredentialReferenceSelectSchema, f9 as CredentialReferenceUpdateSchema, eC as DataComponentApiInsertSchema, eB as DataComponentApiSelectSchema, eD as DataComponentApiUpdateSchema, ez as DataComponentBaseSchema, ey as DataComponentInsertSchema, gr as DataComponentListResponse, gb as DataComponentResponse, ex as DataComponentSelectSchema, eA as DataComponentUpdateSchema, fT as ErrorResponseSchema, fU as ExistsResponseSchema, e_ as ExternalAgentApiInsertSchema, eZ as ExternalAgentApiSelectSchema, e$ as ExternalAgentApiUpdateSchema, eX as ExternalAgentInsertSchema, gl as ExternalAgentListResponse, g5 as ExternalAgentResponse, eW as ExternalAgentSelectSchema, eY as ExternalAgentUpdateSchema, dT as ExternalSubAgentRelationApiInsertSchema, dS as ExternalSubAgentRelationInsertSchema, fs as FetchConfigSchema, ft as FetchDefinitionSchema, a as FullAgentAgentInsertSchema, g0 as FullProjectDefinitionSchema, F as FunctionApiInsertSchema, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, fq as FunctionInsertSchema, gp as FunctionListResponse, g9 as FunctionResponse, fp as FunctionSelectSchema, fn as FunctionToolApiInsertSchema, fm as FunctionToolApiSelectSchema, fo as FunctionToolApiUpdateSchema, dE as FunctionToolConfig, dD as FunctionToolConfigSchema, fk as FunctionToolInsertSchema, gq as FunctionToolListResponse, ga as FunctionToolResponse, fj as FunctionToolSelectSchema, fl as FunctionToolUpdateSchema, fr as FunctionUpdateSchema, gB as HeadersScopeSchema, fK as LedgerArtifactApiInsertSchema, fJ as LedgerArtifactApiSelectSchema, fL as LedgerArtifactApiUpdateSchema, fH as LedgerArtifactInsertSchema, fG as LedgerArtifactSelectSchema, fI as LedgerArtifactUpdateSchema, fR as ListResponseSchema, dx as MAX_ID_LENGTH, fe as MCPToolConfigSchema, dw as MIN_ID_LENGTH, ec as McpToolDefinitionSchema, fd as McpToolSchema, ea as McpTransportConfigSchema, ep as MessageApiInsertSchema, eo as MessageApiSelectSchema, eq as MessageApiUpdateSchema, em as MessageInsertSchema, gw as MessageListResponse, gg as MessageResponse, el as MessageSelectSchema, en as MessageUpdateSchema, dA as ModelSchema, g as ModelSettings, M as ModelSettingsSchema, gK as PaginationQueryParamsSchema, fQ as PaginationSchema, f_ as ProjectApiInsertSchema, fZ as ProjectApiSelectSchema, f$ as ProjectApiUpdateSchema, fX as ProjectInsertSchema, gh as ProjectListResponse, dB as ProjectModelSchema, g1 as ProjectResponse, fW as ProjectSelectSchema, fY as ProjectUpdateSchema, fV as RemovedResponseSchema, dC as SandboxConfig, l as SandboxConfigSchema, fS as SingleResponseSchema, fM as StatusComponentSchema, fN as StatusUpdateSchema, d as StopWhen, S as StopWhenSchema, dJ as SubAgentApiInsertSchema, dI as SubAgentApiSelectSchema, dK as SubAgentApiUpdateSchema, eU as SubAgentArtifactComponentApiInsertSchema, eT as SubAgentArtifactComponentApiSelectSchema, eV as SubAgentArtifactComponentApiUpdateSchema, eR as SubAgentArtifactComponentInsertSchema, gA as SubAgentArtifactComponentListResponse, gy as SubAgentArtifactComponentResponse, eQ as SubAgentArtifactComponentSelectSchema, eS as SubAgentArtifactComponentUpdateSchema, eI as SubAgentDataComponentApiInsertSchema, eH as SubAgentDataComponentApiSelectSchema, eJ as SubAgentDataComponentApiUpdateSchema, eF as SubAgentDataComponentInsertSchema, gz as SubAgentDataComponentListResponse, gx as SubAgentDataComponentResponse, eE as SubAgentDataComponentSelectSchema, eG as SubAgentDataComponentUpdateSchema, dG as SubAgentInsertSchema, gi as SubAgentListResponse, dP as SubAgentRelationApiInsertSchema, dO as SubAgentRelationApiSelectSchema, dQ as SubAgentRelationApiUpdateSchema, dM as SubAgentRelationInsertSchema, gt as SubAgentRelationListResponse, dR as SubAgentRelationQuerySchema, gd as SubAgentRelationResponse, dL as SubAgentRelationSelectSchema, dN as SubAgentRelationUpdateSchema, g2 as SubAgentResponse, dF as SubAgentSelectSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema, fE as SubAgentToolRelationApiInsertSchema, fD as SubAgentToolRelationApiSelectSchema, fF as SubAgentToolRelationApiUpdateSchema, fB as SubAgentToolRelationInsertSchema, gu as SubAgentToolRelationListResponse, ge as SubAgentToolRelationResponse, fA as SubAgentToolRelationSelectSchema, fC as SubAgentToolRelationUpdateSchema, dH as SubAgentUpdateSchema, e2 as TaskApiInsertSchema, e1 as TaskApiSelectSchema, e3 as TaskApiUpdateSchema, d$ as TaskInsertSchema, e8 as TaskRelationApiInsertSchema, e7 as TaskRelationApiSelectSchema, e9 as TaskRelationApiUpdateSchema, e5 as TaskRelationInsertSchema, e4 as TaskRelationSelectSchema, e6 as TaskRelationUpdateSchema, d_ as TaskSelectSchema, e0 as TaskUpdateSchema, gD as TenantIdParamsSchema, gC as TenantParamsSchema, gH as TenantProjectAgentIdParamsSchema, gG as TenantProjectAgentParamsSchema, gJ as TenantProjectAgentSubAgentIdParamsSchema, gI as TenantProjectAgentSubAgentParamsSchema, gF as TenantProjectIdParamsSchema, gE as TenantProjectParamsSchema, fh as ToolApiInsertSchema, fg as ToolApiSelectSchema, fi as ToolApiUpdateSchema, ee as ToolInsertSchema, gk as ToolListResponse, g4 as ToolResponse, ed as ToolSelectSchema, eb as ToolStatusSchema, ff as ToolUpdateSchema, dy as URL_SAFE_ID_PATTERN, dz as resourceIdSchema } from '../utility-HqRMF7sM.cjs';
2
+ import { d5 as SubAgentDefinition, d4 as InternalSubAgentDefinition, cL as ExternalSubAgentApiInsert, fN as AgentWithinContextOfProjectSchema, z as FullAgentDefinition } from '../utility-DmLVF565.cjs';
3
+ export { dW as AgentApiInsertSchema, dV as AgentApiSelectSchema, dX as AgentApiUpdateSchema, dT as AgentInsertSchema, gh as AgentListResponse, g1 as AgentResponse, dS as AgentSelectSchema, e as AgentStopWhen, b as AgentStopWhenSchema, dU as AgentUpdateSchema, e_ as AllAgentSchema, f3 as ApiKeyApiCreationResponseSchema, f4 as ApiKeyApiInsertSchema, f2 as ApiKeyApiSelectSchema, A as ApiKeyApiUpdateSchema, f0 as ApiKeyInsertSchema, gl as ApiKeyListResponse, g5 as ApiKeyResponse, e$ as ApiKeySelectSchema, f1 as ApiKeyUpdateSchema, eM as ArtifactComponentApiInsertSchema, eL as ArtifactComponentApiSelectSchema, eN as ArtifactComponentApiUpdateSchema, eJ as ArtifactComponentInsertSchema, gq as ArtifactComponentListResponse, ga as ArtifactComponentResponse, eI as ArtifactComponentSelectSchema, eK as ArtifactComponentUpdateSchema, fM as CanUseItemSchema, et as ContextCacheApiInsertSchema, es as ContextCacheApiSelectSchema, eu as ContextCacheApiUpdateSchema, eq as ContextCacheInsertSchema, ep as ContextCacheSelectSchema, er as ContextCacheUpdateSchema, fw as ContextConfigApiInsertSchema, fv as ContextConfigApiSelectSchema, fx as ContextConfigApiUpdateSchema, ft as ContextConfigInsertSchema, gk as ContextConfigListResponse, g4 as ContextConfigResponse, fs as ContextConfigSelectSchema, fu as ContextConfigUpdateSchema, eh as ConversationApiInsertSchema, eg as ConversationApiSelectSchema, ei as ConversationApiUpdateSchema, ee as ConversationInsertSchema, gt as ConversationListResponse, gd as ConversationResponse, ed as ConversationSelectSchema, ef as ConversationUpdateSchema, f9 as CredentialReferenceApiInsertSchema, f8 as CredentialReferenceApiSelectSchema, fa as CredentialReferenceApiUpdateSchema, f6 as CredentialReferenceInsertSchema, gm as CredentialReferenceListResponse, g6 as CredentialReferenceResponse, f5 as CredentialReferenceSelectSchema, f7 as CredentialReferenceUpdateSchema, eA as DataComponentApiInsertSchema, ez as DataComponentApiSelectSchema, eB as DataComponentApiUpdateSchema, ex as DataComponentBaseSchema, ew as DataComponentInsertSchema, gp as DataComponentListResponse, g9 as DataComponentResponse, ev as DataComponentSelectSchema, ey as DataComponentUpdateSchema, fR as ErrorResponseSchema, fS as ExistsResponseSchema, eY as ExternalAgentApiInsertSchema, eX as ExternalAgentApiSelectSchema, eZ as ExternalAgentApiUpdateSchema, eV as ExternalAgentInsertSchema, gj as ExternalAgentListResponse, g3 as ExternalAgentResponse, eU as ExternalAgentSelectSchema, eW as ExternalAgentUpdateSchema, dR as ExternalSubAgentRelationApiInsertSchema, dQ as ExternalSubAgentRelationInsertSchema, fq as FetchConfigSchema, fr as FetchDefinitionSchema, a as FullAgentAgentInsertSchema, f_ as FullProjectDefinitionSchema, F as FunctionApiInsertSchema, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, fo as FunctionInsertSchema, gn as FunctionListResponse, g7 as FunctionResponse, fn as FunctionSelectSchema, fl as FunctionToolApiInsertSchema, fk as FunctionToolApiSelectSchema, fm as FunctionToolApiUpdateSchema, dC as FunctionToolConfig, dB as FunctionToolConfigSchema, fi as FunctionToolInsertSchema, go as FunctionToolListResponse, g8 as FunctionToolResponse, fh as FunctionToolSelectSchema, fj as FunctionToolUpdateSchema, fp as FunctionUpdateSchema, gz as HeadersScopeSchema, fI as LedgerArtifactApiInsertSchema, fH as LedgerArtifactApiSelectSchema, fJ as LedgerArtifactApiUpdateSchema, fF as LedgerArtifactInsertSchema, fE as LedgerArtifactSelectSchema, fG as LedgerArtifactUpdateSchema, fP as ListResponseSchema, dw as MAX_ID_LENGTH, fc as MCPToolConfigSchema, dv as MIN_ID_LENGTH, ea as McpToolDefinitionSchema, fb as McpToolSchema, e8 as McpTransportConfigSchema, en as MessageApiInsertSchema, em as MessageApiSelectSchema, eo as MessageApiUpdateSchema, ek as MessageInsertSchema, gu as MessageListResponse, ge as MessageResponse, ej as MessageSelectSchema, el as MessageUpdateSchema, dz as ModelSchema, g as ModelSettings, M as ModelSettingsSchema, gI as PaginationQueryParamsSchema, fO as PaginationSchema, fY as ProjectApiInsertSchema, fX as ProjectApiSelectSchema, fZ as ProjectApiUpdateSchema, fV as ProjectInsertSchema, gf as ProjectListResponse, dA as ProjectModelSchema, f$ as ProjectResponse, fU as ProjectSelectSchema, fW as ProjectUpdateSchema, fT as RemovedResponseSchema, fQ as SingleResponseSchema, fK as StatusComponentSchema, fL as StatusUpdateSchema, d as StopWhen, S as StopWhenSchema, dH as SubAgentApiInsertSchema, dG as SubAgentApiSelectSchema, dI as SubAgentApiUpdateSchema, eS as SubAgentArtifactComponentApiInsertSchema, eR as SubAgentArtifactComponentApiSelectSchema, eT as SubAgentArtifactComponentApiUpdateSchema, eP as SubAgentArtifactComponentInsertSchema, gy as SubAgentArtifactComponentListResponse, gw as SubAgentArtifactComponentResponse, eO as SubAgentArtifactComponentSelectSchema, eQ as SubAgentArtifactComponentUpdateSchema, eG as SubAgentDataComponentApiInsertSchema, eF as SubAgentDataComponentApiSelectSchema, eH as SubAgentDataComponentApiUpdateSchema, eD as SubAgentDataComponentInsertSchema, gx as SubAgentDataComponentListResponse, gv as SubAgentDataComponentResponse, eC as SubAgentDataComponentSelectSchema, eE as SubAgentDataComponentUpdateSchema, dE as SubAgentInsertSchema, gg as SubAgentListResponse, dN as SubAgentRelationApiInsertSchema, dM as SubAgentRelationApiSelectSchema, dO as SubAgentRelationApiUpdateSchema, dK as SubAgentRelationInsertSchema, gr as SubAgentRelationListResponse, dP as SubAgentRelationQuerySchema, gb as SubAgentRelationResponse, dJ as SubAgentRelationSelectSchema, dL as SubAgentRelationUpdateSchema, g0 as SubAgentResponse, dD as SubAgentSelectSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema, fC as SubAgentToolRelationApiInsertSchema, fB as SubAgentToolRelationApiSelectSchema, fD as SubAgentToolRelationApiUpdateSchema, fz as SubAgentToolRelationInsertSchema, gs as SubAgentToolRelationListResponse, gc as SubAgentToolRelationResponse, fy as SubAgentToolRelationSelectSchema, fA as SubAgentToolRelationUpdateSchema, dF as SubAgentUpdateSchema, e0 as TaskApiInsertSchema, d$ as TaskApiSelectSchema, e1 as TaskApiUpdateSchema, dZ as TaskInsertSchema, e6 as TaskRelationApiInsertSchema, e5 as TaskRelationApiSelectSchema, e7 as TaskRelationApiUpdateSchema, e3 as TaskRelationInsertSchema, e2 as TaskRelationSelectSchema, e4 as TaskRelationUpdateSchema, dY as TaskSelectSchema, d_ as TaskUpdateSchema, gB as TenantIdParamsSchema, gA as TenantParamsSchema, gF as TenantProjectAgentIdParamsSchema, gE as TenantProjectAgentParamsSchema, gH as TenantProjectAgentSubAgentIdParamsSchema, gG as TenantProjectAgentSubAgentParamsSchema, gD as TenantProjectIdParamsSchema, gC as TenantProjectParamsSchema, ff as ToolApiInsertSchema, fe as ToolApiSelectSchema, fg as ToolApiUpdateSchema, ec as ToolInsertSchema, gi as ToolListResponse, g2 as ToolResponse, eb as ToolSelectSchema, e9 as ToolStatusSchema, fd as ToolUpdateSchema, dx as URL_SAFE_ID_PATTERN, dy as resourceIdSchema } from '../utility-DmLVF565.cjs';
4
4
  export { P as PropsValidationResult, v as validatePropsAsJsonSchema } from '../props-validation-BMR1qNiy.cjs';
5
5
  import 'drizzle-zod';
6
6
  import 'drizzle-orm/sqlite-core';
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
- import { d6 as SubAgentDefinition, d5 as InternalSubAgentDefinition, cM as ExternalSubAgentApiInsert, fP as AgentWithinContextOfProjectSchema, B as FullAgentDefinition } from '../utility-HqRMF7sM.js';
3
- export { dY as AgentApiInsertSchema, dX as AgentApiSelectSchema, dZ as AgentApiUpdateSchema, dV as AgentInsertSchema, gj as AgentListResponse, g3 as AgentResponse, dU as AgentSelectSchema, e as AgentStopWhen, b as AgentStopWhenSchema, dW as AgentUpdateSchema, f0 as AllAgentSchema, f5 as ApiKeyApiCreationResponseSchema, f6 as ApiKeyApiInsertSchema, f4 as ApiKeyApiSelectSchema, A as ApiKeyApiUpdateSchema, f2 as ApiKeyInsertSchema, gn as ApiKeyListResponse, g7 as ApiKeyResponse, f1 as ApiKeySelectSchema, f3 as ApiKeyUpdateSchema, eO as ArtifactComponentApiInsertSchema, eN as ArtifactComponentApiSelectSchema, eP as ArtifactComponentApiUpdateSchema, eL as ArtifactComponentInsertSchema, gs as ArtifactComponentListResponse, gc as ArtifactComponentResponse, eK as ArtifactComponentSelectSchema, eM as ArtifactComponentUpdateSchema, fO as CanUseItemSchema, ev as ContextCacheApiInsertSchema, eu as ContextCacheApiSelectSchema, ew as ContextCacheApiUpdateSchema, es as ContextCacheInsertSchema, er as ContextCacheSelectSchema, et as ContextCacheUpdateSchema, fy as ContextConfigApiInsertSchema, fx as ContextConfigApiSelectSchema, fz as ContextConfigApiUpdateSchema, fv as ContextConfigInsertSchema, gm as ContextConfigListResponse, g6 as ContextConfigResponse, fu as ContextConfigSelectSchema, fw as ContextConfigUpdateSchema, ej as ConversationApiInsertSchema, ei as ConversationApiSelectSchema, ek as ConversationApiUpdateSchema, eg as ConversationInsertSchema, gv as ConversationListResponse, gf as ConversationResponse, ef as ConversationSelectSchema, eh as ConversationUpdateSchema, fb as CredentialReferenceApiInsertSchema, fa as CredentialReferenceApiSelectSchema, fc as CredentialReferenceApiUpdateSchema, f8 as CredentialReferenceInsertSchema, go as CredentialReferenceListResponse, g8 as CredentialReferenceResponse, f7 as CredentialReferenceSelectSchema, f9 as CredentialReferenceUpdateSchema, eC as DataComponentApiInsertSchema, eB as DataComponentApiSelectSchema, eD as DataComponentApiUpdateSchema, ez as DataComponentBaseSchema, ey as DataComponentInsertSchema, gr as DataComponentListResponse, gb as DataComponentResponse, ex as DataComponentSelectSchema, eA as DataComponentUpdateSchema, fT as ErrorResponseSchema, fU as ExistsResponseSchema, e_ as ExternalAgentApiInsertSchema, eZ as ExternalAgentApiSelectSchema, e$ as ExternalAgentApiUpdateSchema, eX as ExternalAgentInsertSchema, gl as ExternalAgentListResponse, g5 as ExternalAgentResponse, eW as ExternalAgentSelectSchema, eY as ExternalAgentUpdateSchema, dT as ExternalSubAgentRelationApiInsertSchema, dS as ExternalSubAgentRelationInsertSchema, fs as FetchConfigSchema, ft as FetchDefinitionSchema, a as FullAgentAgentInsertSchema, g0 as FullProjectDefinitionSchema, F as FunctionApiInsertSchema, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, fq as FunctionInsertSchema, gp as FunctionListResponse, g9 as FunctionResponse, fp as FunctionSelectSchema, fn as FunctionToolApiInsertSchema, fm as FunctionToolApiSelectSchema, fo as FunctionToolApiUpdateSchema, dE as FunctionToolConfig, dD as FunctionToolConfigSchema, fk as FunctionToolInsertSchema, gq as FunctionToolListResponse, ga as FunctionToolResponse, fj as FunctionToolSelectSchema, fl as FunctionToolUpdateSchema, fr as FunctionUpdateSchema, gB as HeadersScopeSchema, fK as LedgerArtifactApiInsertSchema, fJ as LedgerArtifactApiSelectSchema, fL as LedgerArtifactApiUpdateSchema, fH as LedgerArtifactInsertSchema, fG as LedgerArtifactSelectSchema, fI as LedgerArtifactUpdateSchema, fR as ListResponseSchema, dx as MAX_ID_LENGTH, fe as MCPToolConfigSchema, dw as MIN_ID_LENGTH, ec as McpToolDefinitionSchema, fd as McpToolSchema, ea as McpTransportConfigSchema, ep as MessageApiInsertSchema, eo as MessageApiSelectSchema, eq as MessageApiUpdateSchema, em as MessageInsertSchema, gw as MessageListResponse, gg as MessageResponse, el as MessageSelectSchema, en as MessageUpdateSchema, dA as ModelSchema, g as ModelSettings, M as ModelSettingsSchema, gK as PaginationQueryParamsSchema, fQ as PaginationSchema, f_ as ProjectApiInsertSchema, fZ as ProjectApiSelectSchema, f$ as ProjectApiUpdateSchema, fX as ProjectInsertSchema, gh as ProjectListResponse, dB as ProjectModelSchema, g1 as ProjectResponse, fW as ProjectSelectSchema, fY as ProjectUpdateSchema, fV as RemovedResponseSchema, dC as SandboxConfig, l as SandboxConfigSchema, fS as SingleResponseSchema, fM as StatusComponentSchema, fN as StatusUpdateSchema, d as StopWhen, S as StopWhenSchema, dJ as SubAgentApiInsertSchema, dI as SubAgentApiSelectSchema, dK as SubAgentApiUpdateSchema, eU as SubAgentArtifactComponentApiInsertSchema, eT as SubAgentArtifactComponentApiSelectSchema, eV as SubAgentArtifactComponentApiUpdateSchema, eR as SubAgentArtifactComponentInsertSchema, gA as SubAgentArtifactComponentListResponse, gy as SubAgentArtifactComponentResponse, eQ as SubAgentArtifactComponentSelectSchema, eS as SubAgentArtifactComponentUpdateSchema, eI as SubAgentDataComponentApiInsertSchema, eH as SubAgentDataComponentApiSelectSchema, eJ as SubAgentDataComponentApiUpdateSchema, eF as SubAgentDataComponentInsertSchema, gz as SubAgentDataComponentListResponse, gx as SubAgentDataComponentResponse, eE as SubAgentDataComponentSelectSchema, eG as SubAgentDataComponentUpdateSchema, dG as SubAgentInsertSchema, gi as SubAgentListResponse, dP as SubAgentRelationApiInsertSchema, dO as SubAgentRelationApiSelectSchema, dQ as SubAgentRelationApiUpdateSchema, dM as SubAgentRelationInsertSchema, gt as SubAgentRelationListResponse, dR as SubAgentRelationQuerySchema, gd as SubAgentRelationResponse, dL as SubAgentRelationSelectSchema, dN as SubAgentRelationUpdateSchema, g2 as SubAgentResponse, dF as SubAgentSelectSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema, fE as SubAgentToolRelationApiInsertSchema, fD as SubAgentToolRelationApiSelectSchema, fF as SubAgentToolRelationApiUpdateSchema, fB as SubAgentToolRelationInsertSchema, gu as SubAgentToolRelationListResponse, ge as SubAgentToolRelationResponse, fA as SubAgentToolRelationSelectSchema, fC as SubAgentToolRelationUpdateSchema, dH as SubAgentUpdateSchema, e2 as TaskApiInsertSchema, e1 as TaskApiSelectSchema, e3 as TaskApiUpdateSchema, d$ as TaskInsertSchema, e8 as TaskRelationApiInsertSchema, e7 as TaskRelationApiSelectSchema, e9 as TaskRelationApiUpdateSchema, e5 as TaskRelationInsertSchema, e4 as TaskRelationSelectSchema, e6 as TaskRelationUpdateSchema, d_ as TaskSelectSchema, e0 as TaskUpdateSchema, gD as TenantIdParamsSchema, gC as TenantParamsSchema, gH as TenantProjectAgentIdParamsSchema, gG as TenantProjectAgentParamsSchema, gJ as TenantProjectAgentSubAgentIdParamsSchema, gI as TenantProjectAgentSubAgentParamsSchema, gF as TenantProjectIdParamsSchema, gE as TenantProjectParamsSchema, fh as ToolApiInsertSchema, fg as ToolApiSelectSchema, fi as ToolApiUpdateSchema, ee as ToolInsertSchema, gk as ToolListResponse, g4 as ToolResponse, ed as ToolSelectSchema, eb as ToolStatusSchema, ff as ToolUpdateSchema, dy as URL_SAFE_ID_PATTERN, dz as resourceIdSchema } from '../utility-HqRMF7sM.js';
2
+ import { d5 as SubAgentDefinition, d4 as InternalSubAgentDefinition, cL as ExternalSubAgentApiInsert, fN as AgentWithinContextOfProjectSchema, z as FullAgentDefinition } from '../utility-DmLVF565.js';
3
+ export { dW as AgentApiInsertSchema, dV as AgentApiSelectSchema, dX as AgentApiUpdateSchema, dT as AgentInsertSchema, gh as AgentListResponse, g1 as AgentResponse, dS as AgentSelectSchema, e as AgentStopWhen, b as AgentStopWhenSchema, dU as AgentUpdateSchema, e_ as AllAgentSchema, f3 as ApiKeyApiCreationResponseSchema, f4 as ApiKeyApiInsertSchema, f2 as ApiKeyApiSelectSchema, A as ApiKeyApiUpdateSchema, f0 as ApiKeyInsertSchema, gl as ApiKeyListResponse, g5 as ApiKeyResponse, e$ as ApiKeySelectSchema, f1 as ApiKeyUpdateSchema, eM as ArtifactComponentApiInsertSchema, eL as ArtifactComponentApiSelectSchema, eN as ArtifactComponentApiUpdateSchema, eJ as ArtifactComponentInsertSchema, gq as ArtifactComponentListResponse, ga as ArtifactComponentResponse, eI as ArtifactComponentSelectSchema, eK as ArtifactComponentUpdateSchema, fM as CanUseItemSchema, et as ContextCacheApiInsertSchema, es as ContextCacheApiSelectSchema, eu as ContextCacheApiUpdateSchema, eq as ContextCacheInsertSchema, ep as ContextCacheSelectSchema, er as ContextCacheUpdateSchema, fw as ContextConfigApiInsertSchema, fv as ContextConfigApiSelectSchema, fx as ContextConfigApiUpdateSchema, ft as ContextConfigInsertSchema, gk as ContextConfigListResponse, g4 as ContextConfigResponse, fs as ContextConfigSelectSchema, fu as ContextConfigUpdateSchema, eh as ConversationApiInsertSchema, eg as ConversationApiSelectSchema, ei as ConversationApiUpdateSchema, ee as ConversationInsertSchema, gt as ConversationListResponse, gd as ConversationResponse, ed as ConversationSelectSchema, ef as ConversationUpdateSchema, f9 as CredentialReferenceApiInsertSchema, f8 as CredentialReferenceApiSelectSchema, fa as CredentialReferenceApiUpdateSchema, f6 as CredentialReferenceInsertSchema, gm as CredentialReferenceListResponse, g6 as CredentialReferenceResponse, f5 as CredentialReferenceSelectSchema, f7 as CredentialReferenceUpdateSchema, eA as DataComponentApiInsertSchema, ez as DataComponentApiSelectSchema, eB as DataComponentApiUpdateSchema, ex as DataComponentBaseSchema, ew as DataComponentInsertSchema, gp as DataComponentListResponse, g9 as DataComponentResponse, ev as DataComponentSelectSchema, ey as DataComponentUpdateSchema, fR as ErrorResponseSchema, fS as ExistsResponseSchema, eY as ExternalAgentApiInsertSchema, eX as ExternalAgentApiSelectSchema, eZ as ExternalAgentApiUpdateSchema, eV as ExternalAgentInsertSchema, gj as ExternalAgentListResponse, g3 as ExternalAgentResponse, eU as ExternalAgentSelectSchema, eW as ExternalAgentUpdateSchema, dR as ExternalSubAgentRelationApiInsertSchema, dQ as ExternalSubAgentRelationInsertSchema, fq as FetchConfigSchema, fr as FetchDefinitionSchema, a as FullAgentAgentInsertSchema, f_ as FullProjectDefinitionSchema, F as FunctionApiInsertSchema, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, fo as FunctionInsertSchema, gn as FunctionListResponse, g7 as FunctionResponse, fn as FunctionSelectSchema, fl as FunctionToolApiInsertSchema, fk as FunctionToolApiSelectSchema, fm as FunctionToolApiUpdateSchema, dC as FunctionToolConfig, dB as FunctionToolConfigSchema, fi as FunctionToolInsertSchema, go as FunctionToolListResponse, g8 as FunctionToolResponse, fh as FunctionToolSelectSchema, fj as FunctionToolUpdateSchema, fp as FunctionUpdateSchema, gz as HeadersScopeSchema, fI as LedgerArtifactApiInsertSchema, fH as LedgerArtifactApiSelectSchema, fJ as LedgerArtifactApiUpdateSchema, fF as LedgerArtifactInsertSchema, fE as LedgerArtifactSelectSchema, fG as LedgerArtifactUpdateSchema, fP as ListResponseSchema, dw as MAX_ID_LENGTH, fc as MCPToolConfigSchema, dv as MIN_ID_LENGTH, ea as McpToolDefinitionSchema, fb as McpToolSchema, e8 as McpTransportConfigSchema, en as MessageApiInsertSchema, em as MessageApiSelectSchema, eo as MessageApiUpdateSchema, ek as MessageInsertSchema, gu as MessageListResponse, ge as MessageResponse, ej as MessageSelectSchema, el as MessageUpdateSchema, dz as ModelSchema, g as ModelSettings, M as ModelSettingsSchema, gI as PaginationQueryParamsSchema, fO as PaginationSchema, fY as ProjectApiInsertSchema, fX as ProjectApiSelectSchema, fZ as ProjectApiUpdateSchema, fV as ProjectInsertSchema, gf as ProjectListResponse, dA as ProjectModelSchema, f$ as ProjectResponse, fU as ProjectSelectSchema, fW as ProjectUpdateSchema, fT as RemovedResponseSchema, fQ as SingleResponseSchema, fK as StatusComponentSchema, fL as StatusUpdateSchema, d as StopWhen, S as StopWhenSchema, dH as SubAgentApiInsertSchema, dG as SubAgentApiSelectSchema, dI as SubAgentApiUpdateSchema, eS as SubAgentArtifactComponentApiInsertSchema, eR as SubAgentArtifactComponentApiSelectSchema, eT as SubAgentArtifactComponentApiUpdateSchema, eP as SubAgentArtifactComponentInsertSchema, gy as SubAgentArtifactComponentListResponse, gw as SubAgentArtifactComponentResponse, eO as SubAgentArtifactComponentSelectSchema, eQ as SubAgentArtifactComponentUpdateSchema, eG as SubAgentDataComponentApiInsertSchema, eF as SubAgentDataComponentApiSelectSchema, eH as SubAgentDataComponentApiUpdateSchema, eD as SubAgentDataComponentInsertSchema, gx as SubAgentDataComponentListResponse, gv as SubAgentDataComponentResponse, eC as SubAgentDataComponentSelectSchema, eE as SubAgentDataComponentUpdateSchema, dE as SubAgentInsertSchema, gg as SubAgentListResponse, dN as SubAgentRelationApiInsertSchema, dM as SubAgentRelationApiSelectSchema, dO as SubAgentRelationApiUpdateSchema, dK as SubAgentRelationInsertSchema, gr as SubAgentRelationListResponse, dP as SubAgentRelationQuerySchema, gb as SubAgentRelationResponse, dJ as SubAgentRelationSelectSchema, dL as SubAgentRelationUpdateSchema, g0 as SubAgentResponse, dD as SubAgentSelectSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema, fC as SubAgentToolRelationApiInsertSchema, fB as SubAgentToolRelationApiSelectSchema, fD as SubAgentToolRelationApiUpdateSchema, fz as SubAgentToolRelationInsertSchema, gs as SubAgentToolRelationListResponse, gc as SubAgentToolRelationResponse, fy as SubAgentToolRelationSelectSchema, fA as SubAgentToolRelationUpdateSchema, dF as SubAgentUpdateSchema, e0 as TaskApiInsertSchema, d$ as TaskApiSelectSchema, e1 as TaskApiUpdateSchema, dZ as TaskInsertSchema, e6 as TaskRelationApiInsertSchema, e5 as TaskRelationApiSelectSchema, e7 as TaskRelationApiUpdateSchema, e3 as TaskRelationInsertSchema, e2 as TaskRelationSelectSchema, e4 as TaskRelationUpdateSchema, dY as TaskSelectSchema, d_ as TaskUpdateSchema, gB as TenantIdParamsSchema, gA as TenantParamsSchema, gF as TenantProjectAgentIdParamsSchema, gE as TenantProjectAgentParamsSchema, gH as TenantProjectAgentSubAgentIdParamsSchema, gG as TenantProjectAgentSubAgentParamsSchema, gD as TenantProjectIdParamsSchema, gC as TenantProjectParamsSchema, ff as ToolApiInsertSchema, fe as ToolApiSelectSchema, fg as ToolApiUpdateSchema, ec as ToolInsertSchema, gi as ToolListResponse, g2 as ToolResponse, eb as ToolSelectSchema, e9 as ToolStatusSchema, fd as ToolUpdateSchema, dx as URL_SAFE_ID_PATTERN, dy as resourceIdSchema } from '../utility-DmLVF565.js';
4
4
  export { P as PropsValidationResult, v as validatePropsAsJsonSchema } from '../props-validation-BMR1qNiy.js';
5
5
  import 'drizzle-zod';
6
6
  import 'drizzle-orm/sqlite-core';
@@ -1,2 +1,2 @@
1
- export { A2AMessageMetadataSchema, DataOperationDetailsSchema, DataOperationEventSchema, DelegationReturnedDataSchema, DelegationSentDataSchema, TransferDataSchema, generateIdFromName, isExternalAgent, isInternalAgent, isValidResourceId, validateAgentRelationships, validateAgentStructure, validateAndTypeAgentData, validateArtifactComponentReferences, validateDataComponentReferences, validateToolReferences } from '../chunk-QEXLYPVZ.js';
2
- export { AgentApiInsertSchema, AgentApiSelectSchema, AgentApiUpdateSchema, AgentInsertSchema, AgentListResponse, AgentResponse, AgentSelectSchema, AgentStopWhenSchema, AgentUpdateSchema, AgentWithinContextOfProjectSchema, AllAgentSchema, ApiKeyApiCreationResponseSchema, ApiKeyApiInsertSchema, ApiKeyApiSelectSchema, ApiKeyApiUpdateSchema, ApiKeyInsertSchema, ApiKeyListResponse, ApiKeyResponse, ApiKeySelectSchema, ApiKeyUpdateSchema, ArtifactComponentApiInsertSchema, ArtifactComponentApiSelectSchema, ArtifactComponentApiUpdateSchema, ArtifactComponentInsertSchema, ArtifactComponentListResponse, ArtifactComponentResponse, ArtifactComponentSelectSchema, ArtifactComponentUpdateSchema, CanUseItemSchema, ContextCacheApiInsertSchema, ContextCacheApiSelectSchema, ContextCacheApiUpdateSchema, ContextCacheInsertSchema, ContextCacheSelectSchema, ContextCacheUpdateSchema, ContextConfigApiInsertSchema, ContextConfigApiSelectSchema, ContextConfigApiUpdateSchema, ContextConfigInsertSchema, ContextConfigListResponse, ContextConfigResponse, ContextConfigSelectSchema, ContextConfigUpdateSchema, ConversationApiInsertSchema, ConversationApiSelectSchema, ConversationApiUpdateSchema, ConversationInsertSchema, ConversationListResponse, ConversationResponse, ConversationSelectSchema, ConversationUpdateSchema, CredentialReferenceApiInsertSchema, CredentialReferenceApiSelectSchema, CredentialReferenceApiUpdateSchema, CredentialReferenceInsertSchema, CredentialReferenceListResponse, CredentialReferenceResponse, CredentialReferenceSelectSchema, CredentialReferenceUpdateSchema, DataComponentApiInsertSchema, DataComponentApiSelectSchema, DataComponentApiUpdateSchema, DataComponentBaseSchema, DataComponentInsertSchema, DataComponentListResponse, DataComponentResponse, DataComponentSelectSchema, DataComponentUpdateSchema, ErrorResponseSchema, ExistsResponseSchema, ExternalAgentApiInsertSchema, ExternalAgentApiSelectSchema, ExternalAgentApiUpdateSchema, ExternalAgentInsertSchema, ExternalAgentListResponse, ExternalAgentResponse, ExternalAgentSelectSchema, ExternalAgentUpdateSchema, ExternalSubAgentRelationApiInsertSchema, ExternalSubAgentRelationInsertSchema, FetchConfigSchema, FetchDefinitionSchema, FullAgentAgentInsertSchema, FullProjectDefinitionSchema, FunctionApiInsertSchema, FunctionApiSelectSchema, FunctionApiUpdateSchema, FunctionInsertSchema, FunctionListResponse, FunctionResponse, FunctionSelectSchema, FunctionToolApiInsertSchema, FunctionToolApiSelectSchema, FunctionToolApiUpdateSchema, FunctionToolConfigSchema, FunctionToolInsertSchema, FunctionToolListResponse, FunctionToolResponse, FunctionToolSelectSchema, FunctionToolUpdateSchema, FunctionUpdateSchema, HeadersScopeSchema, LedgerArtifactApiInsertSchema, LedgerArtifactApiSelectSchema, LedgerArtifactApiUpdateSchema, LedgerArtifactInsertSchema, LedgerArtifactSelectSchema, LedgerArtifactUpdateSchema, ListResponseSchema, MAX_ID_LENGTH, MCPToolConfigSchema, MIN_ID_LENGTH, McpToolDefinitionSchema, McpToolSchema, McpTransportConfigSchema, MessageApiInsertSchema, MessageApiSelectSchema, MessageApiUpdateSchema, MessageInsertSchema, MessageListResponse, MessageResponse, MessageSelectSchema, MessageUpdateSchema, ModelSchema, ModelSettingsSchema, PaginationQueryParamsSchema, PaginationSchema, ProjectApiInsertSchema, ProjectApiSelectSchema, ProjectApiUpdateSchema, ProjectInsertSchema, ProjectListResponse, ProjectModelSchema, ProjectResponse, ProjectSelectSchema, ProjectUpdateSchema, RemovedResponseSchema, SandboxConfigSchema, SingleResponseSchema, StatusComponentSchema, StatusUpdateSchema, StopWhenSchema, SubAgentApiInsertSchema, SubAgentApiSelectSchema, SubAgentApiUpdateSchema, SubAgentArtifactComponentApiInsertSchema, SubAgentArtifactComponentApiSelectSchema, SubAgentArtifactComponentApiUpdateSchema, SubAgentArtifactComponentInsertSchema, SubAgentArtifactComponentListResponse, SubAgentArtifactComponentResponse, SubAgentArtifactComponentSelectSchema, SubAgentArtifactComponentUpdateSchema, SubAgentDataComponentApiInsertSchema, SubAgentDataComponentApiSelectSchema, SubAgentDataComponentApiUpdateSchema, SubAgentDataComponentInsertSchema, SubAgentDataComponentListResponse, SubAgentDataComponentResponse, SubAgentDataComponentSelectSchema, SubAgentDataComponentUpdateSchema, SubAgentInsertSchema, SubAgentListResponse, SubAgentRelationApiInsertSchema, SubAgentRelationApiSelectSchema, SubAgentRelationApiUpdateSchema, SubAgentRelationInsertSchema, SubAgentRelationListResponse, SubAgentRelationQuerySchema, SubAgentRelationResponse, SubAgentRelationSelectSchema, SubAgentRelationUpdateSchema, SubAgentResponse, SubAgentSelectSchema, SubAgentStopWhenSchema, SubAgentToolRelationApiInsertSchema, SubAgentToolRelationApiSelectSchema, SubAgentToolRelationApiUpdateSchema, SubAgentToolRelationInsertSchema, SubAgentToolRelationListResponse, SubAgentToolRelationResponse, SubAgentToolRelationSelectSchema, SubAgentToolRelationUpdateSchema, SubAgentUpdateSchema, TaskApiInsertSchema, TaskApiSelectSchema, TaskApiUpdateSchema, TaskInsertSchema, TaskRelationApiInsertSchema, TaskRelationApiSelectSchema, TaskRelationApiUpdateSchema, TaskRelationInsertSchema, TaskRelationSelectSchema, TaskRelationUpdateSchema, TaskSelectSchema, TaskUpdateSchema, TenantIdParamsSchema, TenantParamsSchema, TenantProjectAgentIdParamsSchema, TenantProjectAgentParamsSchema, TenantProjectAgentSubAgentIdParamsSchema, TenantProjectAgentSubAgentParamsSchema, TenantProjectIdParamsSchema, TenantProjectParamsSchema, ToolApiInsertSchema, ToolApiSelectSchema, ToolApiUpdateSchema, ToolInsertSchema, ToolListResponse, ToolResponse, ToolSelectSchema, ToolStatusSchema, ToolUpdateSchema, URL_SAFE_ID_PATTERN, resourceIdSchema, validatePropsAsJsonSchema } from '../chunk-XKJPMUGE.js';
1
+ export { A2AMessageMetadataSchema, DataOperationDetailsSchema, DataOperationEventSchema, DelegationReturnedDataSchema, DelegationSentDataSchema, TransferDataSchema, generateIdFromName, isExternalAgent, isInternalAgent, isValidResourceId, validateAgentRelationships, validateAgentStructure, validateAndTypeAgentData, validateArtifactComponentReferences, validateDataComponentReferences, validateToolReferences } from '../chunk-TSKVAFS4.js';
2
+ export { AgentApiInsertSchema, AgentApiSelectSchema, AgentApiUpdateSchema, AgentInsertSchema, AgentListResponse, AgentResponse, AgentSelectSchema, AgentStopWhenSchema, AgentUpdateSchema, AgentWithinContextOfProjectSchema, AllAgentSchema, ApiKeyApiCreationResponseSchema, ApiKeyApiInsertSchema, ApiKeyApiSelectSchema, ApiKeyApiUpdateSchema, ApiKeyInsertSchema, ApiKeyListResponse, ApiKeyResponse, ApiKeySelectSchema, ApiKeyUpdateSchema, ArtifactComponentApiInsertSchema, ArtifactComponentApiSelectSchema, ArtifactComponentApiUpdateSchema, ArtifactComponentInsertSchema, ArtifactComponentListResponse, ArtifactComponentResponse, ArtifactComponentSelectSchema, ArtifactComponentUpdateSchema, CanUseItemSchema, ContextCacheApiInsertSchema, ContextCacheApiSelectSchema, ContextCacheApiUpdateSchema, ContextCacheInsertSchema, ContextCacheSelectSchema, ContextCacheUpdateSchema, ContextConfigApiInsertSchema, ContextConfigApiSelectSchema, ContextConfigApiUpdateSchema, ContextConfigInsertSchema, ContextConfigListResponse, ContextConfigResponse, ContextConfigSelectSchema, ContextConfigUpdateSchema, ConversationApiInsertSchema, ConversationApiSelectSchema, ConversationApiUpdateSchema, ConversationInsertSchema, ConversationListResponse, ConversationResponse, ConversationSelectSchema, ConversationUpdateSchema, CredentialReferenceApiInsertSchema, CredentialReferenceApiSelectSchema, CredentialReferenceApiUpdateSchema, CredentialReferenceInsertSchema, CredentialReferenceListResponse, CredentialReferenceResponse, CredentialReferenceSelectSchema, CredentialReferenceUpdateSchema, DataComponentApiInsertSchema, DataComponentApiSelectSchema, DataComponentApiUpdateSchema, DataComponentBaseSchema, DataComponentInsertSchema, DataComponentListResponse, DataComponentResponse, DataComponentSelectSchema, DataComponentUpdateSchema, ErrorResponseSchema, ExistsResponseSchema, ExternalAgentApiInsertSchema, ExternalAgentApiSelectSchema, ExternalAgentApiUpdateSchema, ExternalAgentInsertSchema, ExternalAgentListResponse, ExternalAgentResponse, ExternalAgentSelectSchema, ExternalAgentUpdateSchema, ExternalSubAgentRelationApiInsertSchema, ExternalSubAgentRelationInsertSchema, FetchConfigSchema, FetchDefinitionSchema, FullAgentAgentInsertSchema, FullProjectDefinitionSchema, FunctionApiInsertSchema, FunctionApiSelectSchema, FunctionApiUpdateSchema, FunctionInsertSchema, FunctionListResponse, FunctionResponse, FunctionSelectSchema, FunctionToolApiInsertSchema, FunctionToolApiSelectSchema, FunctionToolApiUpdateSchema, FunctionToolConfigSchema, FunctionToolInsertSchema, FunctionToolListResponse, FunctionToolResponse, FunctionToolSelectSchema, FunctionToolUpdateSchema, FunctionUpdateSchema, HeadersScopeSchema, LedgerArtifactApiInsertSchema, LedgerArtifactApiSelectSchema, LedgerArtifactApiUpdateSchema, LedgerArtifactInsertSchema, LedgerArtifactSelectSchema, LedgerArtifactUpdateSchema, ListResponseSchema, MAX_ID_LENGTH, MCPToolConfigSchema, MIN_ID_LENGTH, McpToolDefinitionSchema, McpToolSchema, McpTransportConfigSchema, MessageApiInsertSchema, MessageApiSelectSchema, MessageApiUpdateSchema, MessageInsertSchema, MessageListResponse, MessageResponse, MessageSelectSchema, MessageUpdateSchema, ModelSchema, ModelSettingsSchema, PaginationQueryParamsSchema, PaginationSchema, ProjectApiInsertSchema, ProjectApiSelectSchema, ProjectApiUpdateSchema, ProjectInsertSchema, ProjectListResponse, ProjectModelSchema, ProjectResponse, ProjectSelectSchema, ProjectUpdateSchema, RemovedResponseSchema, SingleResponseSchema, StatusComponentSchema, StatusUpdateSchema, StopWhenSchema, SubAgentApiInsertSchema, SubAgentApiSelectSchema, SubAgentApiUpdateSchema, SubAgentArtifactComponentApiInsertSchema, SubAgentArtifactComponentApiSelectSchema, SubAgentArtifactComponentApiUpdateSchema, SubAgentArtifactComponentInsertSchema, SubAgentArtifactComponentListResponse, SubAgentArtifactComponentResponse, SubAgentArtifactComponentSelectSchema, SubAgentArtifactComponentUpdateSchema, SubAgentDataComponentApiInsertSchema, SubAgentDataComponentApiSelectSchema, SubAgentDataComponentApiUpdateSchema, SubAgentDataComponentInsertSchema, SubAgentDataComponentListResponse, SubAgentDataComponentResponse, SubAgentDataComponentSelectSchema, SubAgentDataComponentUpdateSchema, SubAgentInsertSchema, SubAgentListResponse, SubAgentRelationApiInsertSchema, SubAgentRelationApiSelectSchema, SubAgentRelationApiUpdateSchema, SubAgentRelationInsertSchema, SubAgentRelationListResponse, SubAgentRelationQuerySchema, SubAgentRelationResponse, SubAgentRelationSelectSchema, SubAgentRelationUpdateSchema, SubAgentResponse, SubAgentSelectSchema, SubAgentStopWhenSchema, SubAgentToolRelationApiInsertSchema, SubAgentToolRelationApiSelectSchema, SubAgentToolRelationApiUpdateSchema, SubAgentToolRelationInsertSchema, SubAgentToolRelationListResponse, SubAgentToolRelationResponse, SubAgentToolRelationSelectSchema, SubAgentToolRelationUpdateSchema, SubAgentUpdateSchema, TaskApiInsertSchema, TaskApiSelectSchema, TaskApiUpdateSchema, TaskInsertSchema, TaskRelationApiInsertSchema, TaskRelationApiSelectSchema, TaskRelationApiUpdateSchema, TaskRelationInsertSchema, TaskRelationSelectSchema, TaskRelationUpdateSchema, TaskSelectSchema, TaskUpdateSchema, TenantIdParamsSchema, TenantParamsSchema, TenantProjectAgentIdParamsSchema, TenantProjectAgentParamsSchema, TenantProjectAgentSubAgentIdParamsSchema, TenantProjectAgentSubAgentParamsSchema, TenantProjectIdParamsSchema, TenantProjectParamsSchema, ToolApiInsertSchema, ToolApiSelectSchema, ToolApiUpdateSchema, ToolInsertSchema, ToolListResponse, ToolResponse, ToolSelectSchema, ToolStatusSchema, ToolUpdateSchema, URL_SAFE_ID_PATTERN, resourceIdSchema, validatePropsAsJsonSchema } from '../chunk-F3AFTJB7.js';
@@ -0,0 +1 @@
1
+ ALTER TABLE `projects` DROP COLUMN `sandbox_config`;