@inkeep/agents-core 0.34.0 → 0.35.0

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.
Files changed (33) hide show
  1. package/dist/{chunk-UMFCT6A6.js → chunk-DYGTCLJO.js} +1 -1
  2. package/dist/{chunk-4VUM4EJL.js → chunk-J5AHY6M2.js} +1 -1
  3. package/dist/{chunk-E6R6PML7.js → chunk-SIAA4J6H.js} +1 -3
  4. package/dist/{chunk-YECQCT5N.js → chunk-W3L4M7FO.js} +6 -8
  5. package/dist/{chunk-EKV6C5GS.js → chunk-YZ5ZBVHJ.js} +104 -5
  6. package/dist/client-exports.cjs +92 -1
  7. package/dist/client-exports.d.cts +5 -5
  8. package/dist/client-exports.d.ts +5 -5
  9. package/dist/client-exports.js +2 -2
  10. package/dist/db/schema.cjs +100 -1
  11. package/dist/db/schema.d.cts +2 -2
  12. package/dist/db/schema.d.ts +2 -2
  13. package/dist/db/schema.js +1 -1
  14. package/dist/index.cjs +1541 -1317
  15. package/dist/index.d.cts +462 -252
  16. package/dist/index.d.ts +462 -252
  17. package/dist/index.js +589 -478
  18. package/dist/{schema-CaEvIRdT.d.cts → schema-DQBYINXB.d.cts} +1105 -3
  19. package/dist/{schema-DvYv9PQ1.d.ts → schema-DlcSfZRM.d.ts} +1105 -3
  20. package/dist/types/index.d.cts +2 -2
  21. package/dist/types/index.d.ts +2 -2
  22. package/dist/{utility-htaewQEL.d.cts → utility-Ct1UMzr_.d.cts} +305 -305
  23. package/dist/{utility-htaewQEL.d.ts → utility-Ct1UMzr_.d.ts} +305 -305
  24. package/dist/utils/schema-conversion.cjs +6 -10
  25. package/dist/utils/schema-conversion.js +1 -1
  26. package/dist/validation/index.cjs +92 -1
  27. package/dist/validation/index.d.cts +2 -2
  28. package/dist/validation/index.d.ts +2 -2
  29. package/dist/validation/index.js +2 -2
  30. package/drizzle/0001_fair_malice.sql +115 -0
  31. package/drizzle/meta/0001_snapshot.json +3520 -0
  32. package/drizzle/meta/_journal.json +8 -1
  33. package/package.json +3 -1
@@ -9,15 +9,10 @@ function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
9
9
  var pino__default = /*#__PURE__*/_interopDefault(pino);
10
10
  var pinoPretty__default = /*#__PURE__*/_interopDefault(pinoPretty);
11
11
 
12
- var __defProp = Object.defineProperty;
13
- var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
14
- var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
12
+ // src/utils/schema-conversion.ts
15
13
  var PinoLogger = class {
16
14
  constructor(name, config = {}) {
17
15
  this.name = name;
18
- __publicField(this, "transportConfigs", []);
19
- __publicField(this, "pinoInstance");
20
- __publicField(this, "options");
21
16
  this.options = {
22
17
  name: this.name,
23
18
  level: process.env.LOG_LEVEL || (process.env.ENVIRONMENT === "test" ? "silent" : "info"),
@@ -46,6 +41,9 @@ var PinoLogger = class {
46
41
  }
47
42
  }
48
43
  }
44
+ transportConfigs = [];
45
+ pinoInstance;
46
+ options;
49
47
  /**
50
48
  * Recreate the pino instance with current transports
51
49
  */
@@ -123,10 +121,8 @@ var PinoLogger = class {
123
121
  }
124
122
  };
125
123
  var LoggerFactory = class {
126
- constructor() {
127
- __publicField(this, "config", {});
128
- __publicField(this, "loggers", /* @__PURE__ */ new Map());
129
- }
124
+ config = {};
125
+ loggers = /* @__PURE__ */ new Map();
130
126
  /**
131
127
  * Configure the logger factory
132
128
  */
@@ -1 +1 @@
1
- export { convertZodToJsonSchema, convertZodToJsonSchemaWithPreview, extractPreviewFields, isZodSchema, preview } from '../chunk-YECQCT5N.js';
1
+ export { convertZodToJsonSchema, convertZodToJsonSchemaWithPreview, extractPreviewFields, isZodSchema, preview } from '../chunk-W3L4M7FO.js';
@@ -87,6 +87,85 @@ var schemaValidationDefaults = {
87
87
  CONTEXT_FETCHER_HTTP_TIMEOUT_MS_DEFAULT: 1e4
88
88
  // 10 seconds
89
89
  };
90
+ var user = pgCore.pgTable("user", {
91
+ id: pgCore.text("id").primaryKey(),
92
+ name: pgCore.text("name").notNull(),
93
+ email: pgCore.text("email").notNull().unique(),
94
+ emailVerified: pgCore.boolean("email_verified").default(false).notNull(),
95
+ image: pgCore.text("image"),
96
+ createdAt: pgCore.timestamp("created_at").defaultNow().notNull(),
97
+ updatedAt: pgCore.timestamp("updated_at").defaultNow().$onUpdate(() => /* @__PURE__ */ new Date()).notNull()
98
+ });
99
+ pgCore.pgTable("session", {
100
+ id: pgCore.text("id").primaryKey(),
101
+ expiresAt: pgCore.timestamp("expires_at").notNull(),
102
+ token: pgCore.text("token").notNull().unique(),
103
+ createdAt: pgCore.timestamp("created_at").defaultNow().notNull(),
104
+ updatedAt: pgCore.timestamp("updated_at").$onUpdate(() => /* @__PURE__ */ new Date()).notNull(),
105
+ ipAddress: pgCore.text("ip_address"),
106
+ userAgent: pgCore.text("user_agent"),
107
+ userId: pgCore.text("user_id").notNull().references(() => user.id, { onDelete: "cascade" }),
108
+ activeOrganizationId: pgCore.text("active_organization_id")
109
+ });
110
+ pgCore.pgTable("account", {
111
+ id: pgCore.text("id").primaryKey(),
112
+ accountId: pgCore.text("account_id").notNull(),
113
+ providerId: pgCore.text("provider_id").notNull(),
114
+ userId: pgCore.text("user_id").notNull().references(() => user.id, { onDelete: "cascade" }),
115
+ accessToken: pgCore.text("access_token"),
116
+ refreshToken: pgCore.text("refresh_token"),
117
+ idToken: pgCore.text("id_token"),
118
+ accessTokenExpiresAt: pgCore.timestamp("access_token_expires_at"),
119
+ refreshTokenExpiresAt: pgCore.timestamp("refresh_token_expires_at"),
120
+ scope: pgCore.text("scope"),
121
+ password: pgCore.text("password"),
122
+ createdAt: pgCore.timestamp("created_at").defaultNow().notNull(),
123
+ updatedAt: pgCore.timestamp("updated_at").$onUpdate(() => /* @__PURE__ */ new Date()).notNull()
124
+ });
125
+ pgCore.pgTable("verification", {
126
+ id: pgCore.text("id").primaryKey(),
127
+ identifier: pgCore.text("identifier").notNull(),
128
+ value: pgCore.text("value").notNull(),
129
+ expiresAt: pgCore.timestamp("expires_at").notNull(),
130
+ createdAt: pgCore.timestamp("created_at").defaultNow().notNull(),
131
+ updatedAt: pgCore.timestamp("updated_at").defaultNow().$onUpdate(() => /* @__PURE__ */ new Date()).notNull()
132
+ });
133
+ pgCore.pgTable("sso_provider", {
134
+ id: pgCore.text("id").primaryKey(),
135
+ issuer: pgCore.text("issuer").notNull(),
136
+ oidcConfig: pgCore.text("oidc_config"),
137
+ samlConfig: pgCore.text("saml_config"),
138
+ userId: pgCore.text("user_id").references(() => user.id, { onDelete: "cascade" }),
139
+ providerId: pgCore.text("provider_id").notNull().unique(),
140
+ organizationId: pgCore.text("organization_id"),
141
+ domain: pgCore.text("domain").notNull()
142
+ });
143
+ var organization = pgCore.pgTable("organization", {
144
+ id: pgCore.text("id").primaryKey(),
145
+ name: pgCore.text("name").notNull(),
146
+ slug: pgCore.text("slug").notNull().unique(),
147
+ logo: pgCore.text("logo"),
148
+ createdAt: pgCore.timestamp("created_at").notNull(),
149
+ metadata: pgCore.text("metadata")
150
+ });
151
+ pgCore.pgTable("member", {
152
+ id: pgCore.text("id").primaryKey(),
153
+ organizationId: pgCore.text("organization_id").notNull().references(() => organization.id, { onDelete: "cascade" }),
154
+ userId: pgCore.text("user_id").notNull().references(() => user.id, { onDelete: "cascade" }),
155
+ role: pgCore.text("role").default("member").notNull(),
156
+ createdAt: pgCore.timestamp("created_at").notNull()
157
+ });
158
+ pgCore.pgTable("invitation", {
159
+ id: pgCore.text("id").primaryKey(),
160
+ organizationId: pgCore.text("organization_id").notNull().references(() => organization.id, { onDelete: "cascade" }),
161
+ email: pgCore.text("email").notNull(),
162
+ role: pgCore.text("role"),
163
+ status: pgCore.text("status").default("pending").notNull(),
164
+ expiresAt: pgCore.timestamp("expires_at").notNull(),
165
+ inviterId: pgCore.text("inviter_id").notNull().references(() => user.id, { onDelete: "cascade" })
166
+ });
167
+
168
+ // src/db/schema.ts
90
169
  var tenantScoped = {
91
170
  tenantId: pgCore.varchar("tenant_id", { length: 256 }).notNull(),
92
171
  id: pgCore.varchar("id", { length: 256 }).notNull()
@@ -120,7 +199,14 @@ var projects = pgCore.pgTable(
120
199
  stopWhen: pgCore.jsonb("stop_when").$type(),
121
200
  ...timestamps
122
201
  },
123
- (table) => [pgCore.primaryKey({ columns: [table.tenantId, table.id] })]
202
+ (table) => [
203
+ pgCore.primaryKey({ columns: [table.tenantId, table.id] }),
204
+ pgCore.foreignKey({
205
+ columns: [table.tenantId],
206
+ foreignColumns: [organization.id],
207
+ name: "projects_tenant_id_fk"
208
+ }).onDelete("cascade")
209
+ ]
124
210
  );
125
211
  var agents = pgCore.pgTable(
126
212
  "agent",
@@ -637,6 +723,11 @@ var apiKeys = pgCore.pgTable(
637
723
  ...timestamps
638
724
  },
639
725
  (t) => [
726
+ pgCore.foreignKey({
727
+ columns: [t.tenantId],
728
+ foreignColumns: [organization.id],
729
+ name: "api_keys_organization_fk"
730
+ }).onDelete("cascade"),
640
731
  pgCore.foreignKey({
641
732
  columns: [t.tenantId, t.projectId],
642
733
  foreignColumns: [projects.tenantId, projects.id],
@@ -1,6 +1,6 @@
1
1
  import { z as z$1 } from 'zod';
2
- import { gg as AgentWithinContextOfProjectSchema, v as FullAgentDefinition } from '../utility-htaewQEL.cjs';
3
- export { e2 as AgentApiInsertSchema, e1 as AgentApiSelectSchema, e3 as AgentApiUpdateSchema, d$ as AgentInsertSchema, gM as AgentListResponse, gw as AgentResponse, d_ as AgentSelectSchema, e as AgentStopWhen, b as AgentStopWhenSchema, e0 as AgentUpdateSchema, h3 as AgentWithinContextOfProjectResponse, f6 as AllAgentSchema, fb as ApiKeyApiCreationResponseSchema, fc as ApiKeyApiInsertSchema, fa as ApiKeyApiSelectSchema, A as ApiKeyApiUpdateSchema, f8 as ApiKeyInsertSchema, gQ as ApiKeyListResponse, gA as ApiKeyResponse, f7 as ApiKeySelectSchema, f9 as ApiKeyUpdateSchema, eU as ArtifactComponentApiInsertSchema, eT as ArtifactComponentApiSelectSchema, eV as ArtifactComponentApiUpdateSchema, hd as ArtifactComponentArrayResponse, eR as ArtifactComponentInsertSchema, gV as ArtifactComponentListResponse, gF as ArtifactComponentResponse, eQ as ArtifactComponentSelectSchema, eS as ArtifactComponentUpdateSchema, gc as CanUseItemSchema, h5 as ComponentAssociationListResponse, fo as ComponentAssociationSchema, eB as ContextCacheApiInsertSchema, eA as ContextCacheApiSelectSchema, eC as ContextCacheApiUpdateSchema, ey as ContextCacheInsertSchema, ex as ContextCacheSelectSchema, ez as ContextCacheUpdateSchema, fM as ContextConfigApiInsertSchema, fL as ContextConfigApiSelectSchema, fN as ContextConfigApiUpdateSchema, fJ as ContextConfigInsertSchema, gP as ContextConfigListResponse, gz as ContextConfigResponse, fI as ContextConfigSelectSchema, fK as ContextConfigUpdateSchema, ep as ConversationApiInsertSchema, eo as ConversationApiSelectSchema, eq as ConversationApiUpdateSchema, em as ConversationInsertSchema, gY as ConversationListResponse, gI as ConversationResponse, el as ConversationSelectSchema, en as ConversationUpdateSchema, fl as CreateCredentialInStoreRequestSchema, fm as CreateCredentialInStoreResponseSchema, fh as CredentialReferenceApiInsertSchema, fg as CredentialReferenceApiSelectSchema, fi as CredentialReferenceApiUpdateSchema, fe as CredentialReferenceInsertSchema, gR as CredentialReferenceListResponse, gB as CredentialReferenceResponse, fd as CredentialReferenceSelectSchema, ff as CredentialReferenceUpdateSchema, fk as CredentialStoreListResponseSchema, fj as CredentialStoreSchema, eI as DataComponentApiInsertSchema, eH as DataComponentApiSelectSchema, eJ as DataComponentApiUpdateSchema, hc as DataComponentArrayResponse, eF as DataComponentBaseSchema, eE as DataComponentInsertSchema, gU as DataComponentListResponse, gE as DataComponentResponse, eD as DataComponentSelectSchema, eG as DataComponentUpdateSchema, gk as ErrorResponseSchema, gl as ExistsResponseSchema, f4 as ExternalAgentApiInsertSchema, f3 as ExternalAgentApiSelectSchema, f5 as ExternalAgentApiUpdateSchema, f1 as ExternalAgentInsertSchema, gO as ExternalAgentListResponse, gy as ExternalAgentResponse, f0 as ExternalAgentSelectSchema, f2 as ExternalAgentUpdateSchema, dZ as ExternalSubAgentRelationApiInsertSchema, dY as ExternalSubAgentRelationInsertSchema, fG as FetchConfigSchema, fH as FetchDefinitionSchema, a as FullAgentAgentInsertSchema, h2 as FullProjectDefinitionResponse, gt as FullProjectDefinitionSchema, F as FunctionApiInsertSchema, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, fE as FunctionInsertSchema, gS as FunctionListResponse, gC as FunctionResponse, fD as FunctionSelectSchema, fB as FunctionToolApiInsertSchema, fA as FunctionToolApiSelectSchema, fC as FunctionToolApiUpdateSchema, dK as FunctionToolConfig, dJ as FunctionToolConfigSchema, fy as FunctionToolInsertSchema, gT as FunctionToolListResponse, gD as FunctionToolResponse, fx as FunctionToolSelectSchema, fz as FunctionToolUpdateSchema, fF as FunctionUpdateSchema, he as HeadersScopeSchema, g8 as LedgerArtifactApiInsertSchema, g7 as LedgerArtifactApiSelectSchema, g9 as LedgerArtifactApiUpdateSchema, g5 as LedgerArtifactInsertSchema, g4 as LedgerArtifactSelectSchema, g6 as LedgerArtifactUpdateSchema, gi as ListResponseSchema, fs as MCPToolConfigSchema, ei as McpToolDefinitionSchema, h7 as McpToolListResponse, h6 as McpToolResponse, fr as McpToolSchema, eg as McpTransportConfigSchema, ev as MessageApiInsertSchema, eu as MessageApiSelectSchema, ew as MessageApiUpdateSchema, es as MessageInsertSchema, gZ as MessageListResponse, gJ as MessageResponse, er as MessageSelectSchema, et as MessageUpdateSchema, dH as ModelSchema, g as ModelSettings, M as ModelSettingsSchema, fq as OAuthCallbackQuerySchema, fp as OAuthLoginQuerySchema, hn as PaginationQueryParamsSchema, gh as PaginationSchema, gr as ProjectApiInsertSchema, gq as ProjectApiSelectSchema, gs as ProjectApiUpdateSchema, go as ProjectInsertSchema, gK as ProjectListResponse, dI as ProjectModelSchema, gu as ProjectResponse, gn as ProjectSelectSchema, gp as ProjectUpdateSchema, h4 as RelatedAgentInfoListResponse, fn as RelatedAgentInfoSchema, gm as RemovedResponseSchema, gj as SingleResponseSchema, ga as StatusComponentSchema, gb as StatusUpdateSchema, d as StopWhen, S as StopWhenSchema, dP as SubAgentApiInsertSchema, dO as SubAgentApiSelectSchema, dQ as SubAgentApiUpdateSchema, e_ as SubAgentArtifactComponentApiInsertSchema, eZ as SubAgentArtifactComponentApiSelectSchema, e$ as SubAgentArtifactComponentApiUpdateSchema, eX as SubAgentArtifactComponentInsertSchema, h1 as SubAgentArtifactComponentListResponse, g$ as SubAgentArtifactComponentResponse, eW as SubAgentArtifactComponentSelectSchema, eY as SubAgentArtifactComponentUpdateSchema, eO as SubAgentDataComponentApiInsertSchema, eN as SubAgentDataComponentApiSelectSchema, eP as SubAgentDataComponentApiUpdateSchema, eL as SubAgentDataComponentInsertSchema, h0 as SubAgentDataComponentListResponse, g_ as SubAgentDataComponentResponse, eK as SubAgentDataComponentSelectSchema, eM as SubAgentDataComponentUpdateSchema, fY as SubAgentExternalAgentRelationApiInsertSchema, fX as SubAgentExternalAgentRelationApiSelectSchema, fZ as SubAgentExternalAgentRelationApiUpdateSchema, fV as SubAgentExternalAgentRelationInsertSchema, hb as SubAgentExternalAgentRelationListResponse, ha as SubAgentExternalAgentRelationResponse, fU as SubAgentExternalAgentRelationSelectSchema, fW as SubAgentExternalAgentRelationUpdateSchema, dM as SubAgentInsertSchema, gL as SubAgentListResponse, dV as SubAgentRelationApiInsertSchema, dU as SubAgentRelationApiSelectSchema, dW as SubAgentRelationApiUpdateSchema, dS as SubAgentRelationInsertSchema, gW as SubAgentRelationListResponse, dX as SubAgentRelationQuerySchema, gG as SubAgentRelationResponse, dR as SubAgentRelationSelectSchema, dT as SubAgentRelationUpdateSchema, gv as SubAgentResponse, dL as SubAgentSelectSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema, g2 as SubAgentTeamAgentRelationApiInsertSchema, g1 as SubAgentTeamAgentRelationApiSelectSchema, g3 as SubAgentTeamAgentRelationApiUpdateSchema, f$ as SubAgentTeamAgentRelationInsertSchema, h9 as SubAgentTeamAgentRelationListResponse, h8 as SubAgentTeamAgentRelationResponse, f_ as SubAgentTeamAgentRelationSelectSchema, g0 as SubAgentTeamAgentRelationUpdateSchema, fS as SubAgentToolRelationApiInsertSchema, fR as SubAgentToolRelationApiSelectSchema, fT as SubAgentToolRelationApiUpdateSchema, fP as SubAgentToolRelationInsertSchema, gX as SubAgentToolRelationListResponse, gH as SubAgentToolRelationResponse, fO as SubAgentToolRelationSelectSchema, fQ as SubAgentToolRelationUpdateSchema, dN as SubAgentUpdateSchema, e8 as TaskApiInsertSchema, e7 as TaskApiSelectSchema, e9 as TaskApiUpdateSchema, e5 as TaskInsertSchema, ee as TaskRelationApiInsertSchema, ed as TaskRelationApiSelectSchema, ef as TaskRelationApiUpdateSchema, eb as TaskRelationInsertSchema, ea as TaskRelationSelectSchema, ec as TaskRelationUpdateSchema, e4 as TaskSelectSchema, e6 as TaskUpdateSchema, gf as TeamAgentSchema, hg as TenantIdParamsSchema, hf as TenantParamsSchema, hk as TenantProjectAgentIdParamsSchema, hj as TenantProjectAgentParamsSchema, hm as TenantProjectAgentSubAgentIdParamsSchema, hl as TenantProjectAgentSubAgentParamsSchema, hi as TenantProjectIdParamsSchema, hh as TenantProjectParamsSchema, fv as ToolApiInsertSchema, fu as ToolApiSelectSchema, fw as ToolApiUpdateSchema, ek as ToolInsertSchema, gN as ToolListResponse, gx as ToolResponse, ej as ToolSelectSchema, eh as ToolStatusSchema, ft as ToolUpdateSchema, gd as canDelegateToExternalAgentSchema, ge as canDelegateToTeamAgentSchema } from '../utility-htaewQEL.cjs';
2
+ import { gg as AgentWithinContextOfProjectSchema, v as FullAgentDefinition } from '../utility-Ct1UMzr_.cjs';
3
+ export { e2 as AgentApiInsertSchema, e1 as AgentApiSelectSchema, e3 as AgentApiUpdateSchema, d$ as AgentInsertSchema, gM as AgentListResponse, gw as AgentResponse, d_ as AgentSelectSchema, e as AgentStopWhen, b as AgentStopWhenSchema, e0 as AgentUpdateSchema, h3 as AgentWithinContextOfProjectResponse, f6 as AllAgentSchema, fb as ApiKeyApiCreationResponseSchema, fc as ApiKeyApiInsertSchema, fa as ApiKeyApiSelectSchema, A as ApiKeyApiUpdateSchema, f8 as ApiKeyInsertSchema, gQ as ApiKeyListResponse, gA as ApiKeyResponse, f7 as ApiKeySelectSchema, f9 as ApiKeyUpdateSchema, eU as ArtifactComponentApiInsertSchema, eT as ArtifactComponentApiSelectSchema, eV as ArtifactComponentApiUpdateSchema, hd as ArtifactComponentArrayResponse, eR as ArtifactComponentInsertSchema, gV as ArtifactComponentListResponse, gF as ArtifactComponentResponse, eQ as ArtifactComponentSelectSchema, eS as ArtifactComponentUpdateSchema, gc as CanUseItemSchema, h5 as ComponentAssociationListResponse, fo as ComponentAssociationSchema, eB as ContextCacheApiInsertSchema, eA as ContextCacheApiSelectSchema, eC as ContextCacheApiUpdateSchema, ey as ContextCacheInsertSchema, ex as ContextCacheSelectSchema, ez as ContextCacheUpdateSchema, fM as ContextConfigApiInsertSchema, fL as ContextConfigApiSelectSchema, fN as ContextConfigApiUpdateSchema, fJ as ContextConfigInsertSchema, gP as ContextConfigListResponse, gz as ContextConfigResponse, fI as ContextConfigSelectSchema, fK as ContextConfigUpdateSchema, ep as ConversationApiInsertSchema, eo as ConversationApiSelectSchema, eq as ConversationApiUpdateSchema, em as ConversationInsertSchema, gY as ConversationListResponse, gI as ConversationResponse, el as ConversationSelectSchema, en as ConversationUpdateSchema, fl as CreateCredentialInStoreRequestSchema, fm as CreateCredentialInStoreResponseSchema, fh as CredentialReferenceApiInsertSchema, fg as CredentialReferenceApiSelectSchema, fi as CredentialReferenceApiUpdateSchema, fe as CredentialReferenceInsertSchema, gR as CredentialReferenceListResponse, gB as CredentialReferenceResponse, fd as CredentialReferenceSelectSchema, ff as CredentialReferenceUpdateSchema, fk as CredentialStoreListResponseSchema, fj as CredentialStoreSchema, eI as DataComponentApiInsertSchema, eH as DataComponentApiSelectSchema, eJ as DataComponentApiUpdateSchema, hc as DataComponentArrayResponse, eF as DataComponentBaseSchema, eE as DataComponentInsertSchema, gU as DataComponentListResponse, gE as DataComponentResponse, eD as DataComponentSelectSchema, eG as DataComponentUpdateSchema, gk as ErrorResponseSchema, gl as ExistsResponseSchema, f4 as ExternalAgentApiInsertSchema, f3 as ExternalAgentApiSelectSchema, f5 as ExternalAgentApiUpdateSchema, f1 as ExternalAgentInsertSchema, gO as ExternalAgentListResponse, gy as ExternalAgentResponse, f0 as ExternalAgentSelectSchema, f2 as ExternalAgentUpdateSchema, dZ as ExternalSubAgentRelationApiInsertSchema, dY as ExternalSubAgentRelationInsertSchema, fG as FetchConfigSchema, fH as FetchDefinitionSchema, a as FullAgentAgentInsertSchema, h2 as FullProjectDefinitionResponse, gt as FullProjectDefinitionSchema, F as FunctionApiInsertSchema, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, fE as FunctionInsertSchema, gS as FunctionListResponse, gC as FunctionResponse, fD as FunctionSelectSchema, fB as FunctionToolApiInsertSchema, fA as FunctionToolApiSelectSchema, fC as FunctionToolApiUpdateSchema, dK as FunctionToolConfig, dJ as FunctionToolConfigSchema, fy as FunctionToolInsertSchema, gT as FunctionToolListResponse, gD as FunctionToolResponse, fx as FunctionToolSelectSchema, fz as FunctionToolUpdateSchema, fF as FunctionUpdateSchema, he as HeadersScopeSchema, g8 as LedgerArtifactApiInsertSchema, g7 as LedgerArtifactApiSelectSchema, g9 as LedgerArtifactApiUpdateSchema, g5 as LedgerArtifactInsertSchema, g4 as LedgerArtifactSelectSchema, g6 as LedgerArtifactUpdateSchema, gi as ListResponseSchema, fs as MCPToolConfigSchema, ei as McpToolDefinitionSchema, h7 as McpToolListResponse, h6 as McpToolResponse, fr as McpToolSchema, eg as McpTransportConfigSchema, ev as MessageApiInsertSchema, eu as MessageApiSelectSchema, ew as MessageApiUpdateSchema, es as MessageInsertSchema, gZ as MessageListResponse, gJ as MessageResponse, er as MessageSelectSchema, et as MessageUpdateSchema, dH as ModelSchema, g as ModelSettings, M as ModelSettingsSchema, fq as OAuthCallbackQuerySchema, fp as OAuthLoginQuerySchema, hn as PaginationQueryParamsSchema, gh as PaginationSchema, gr as ProjectApiInsertSchema, gq as ProjectApiSelectSchema, gs as ProjectApiUpdateSchema, go as ProjectInsertSchema, gK as ProjectListResponse, dI as ProjectModelSchema, gu as ProjectResponse, gn as ProjectSelectSchema, gp as ProjectUpdateSchema, h4 as RelatedAgentInfoListResponse, fn as RelatedAgentInfoSchema, gm as RemovedResponseSchema, gj as SingleResponseSchema, ga as StatusComponentSchema, gb as StatusUpdateSchema, d as StopWhen, S as StopWhenSchema, dP as SubAgentApiInsertSchema, dO as SubAgentApiSelectSchema, dQ as SubAgentApiUpdateSchema, e_ as SubAgentArtifactComponentApiInsertSchema, eZ as SubAgentArtifactComponentApiSelectSchema, e$ as SubAgentArtifactComponentApiUpdateSchema, eX as SubAgentArtifactComponentInsertSchema, h1 as SubAgentArtifactComponentListResponse, g$ as SubAgentArtifactComponentResponse, eW as SubAgentArtifactComponentSelectSchema, eY as SubAgentArtifactComponentUpdateSchema, eO as SubAgentDataComponentApiInsertSchema, eN as SubAgentDataComponentApiSelectSchema, eP as SubAgentDataComponentApiUpdateSchema, eL as SubAgentDataComponentInsertSchema, h0 as SubAgentDataComponentListResponse, g_ as SubAgentDataComponentResponse, eK as SubAgentDataComponentSelectSchema, eM as SubAgentDataComponentUpdateSchema, fY as SubAgentExternalAgentRelationApiInsertSchema, fX as SubAgentExternalAgentRelationApiSelectSchema, fZ as SubAgentExternalAgentRelationApiUpdateSchema, fV as SubAgentExternalAgentRelationInsertSchema, hb as SubAgentExternalAgentRelationListResponse, ha as SubAgentExternalAgentRelationResponse, fU as SubAgentExternalAgentRelationSelectSchema, fW as SubAgentExternalAgentRelationUpdateSchema, dM as SubAgentInsertSchema, gL as SubAgentListResponse, dV as SubAgentRelationApiInsertSchema, dU as SubAgentRelationApiSelectSchema, dW as SubAgentRelationApiUpdateSchema, dS as SubAgentRelationInsertSchema, gW as SubAgentRelationListResponse, dX as SubAgentRelationQuerySchema, gG as SubAgentRelationResponse, dR as SubAgentRelationSelectSchema, dT as SubAgentRelationUpdateSchema, gv as SubAgentResponse, dL as SubAgentSelectSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema, g2 as SubAgentTeamAgentRelationApiInsertSchema, g1 as SubAgentTeamAgentRelationApiSelectSchema, g3 as SubAgentTeamAgentRelationApiUpdateSchema, f$ as SubAgentTeamAgentRelationInsertSchema, h9 as SubAgentTeamAgentRelationListResponse, h8 as SubAgentTeamAgentRelationResponse, f_ as SubAgentTeamAgentRelationSelectSchema, g0 as SubAgentTeamAgentRelationUpdateSchema, fS as SubAgentToolRelationApiInsertSchema, fR as SubAgentToolRelationApiSelectSchema, fT as SubAgentToolRelationApiUpdateSchema, fP as SubAgentToolRelationInsertSchema, gX as SubAgentToolRelationListResponse, gH as SubAgentToolRelationResponse, fO as SubAgentToolRelationSelectSchema, fQ as SubAgentToolRelationUpdateSchema, dN as SubAgentUpdateSchema, e8 as TaskApiInsertSchema, e7 as TaskApiSelectSchema, e9 as TaskApiUpdateSchema, e5 as TaskInsertSchema, ee as TaskRelationApiInsertSchema, ed as TaskRelationApiSelectSchema, ef as TaskRelationApiUpdateSchema, eb as TaskRelationInsertSchema, ea as TaskRelationSelectSchema, ec as TaskRelationUpdateSchema, e4 as TaskSelectSchema, e6 as TaskUpdateSchema, gf as TeamAgentSchema, hg as TenantIdParamsSchema, hf as TenantParamsSchema, hk as TenantProjectAgentIdParamsSchema, hj as TenantProjectAgentParamsSchema, hm as TenantProjectAgentSubAgentIdParamsSchema, hl as TenantProjectAgentSubAgentParamsSchema, hi as TenantProjectIdParamsSchema, hh as TenantProjectParamsSchema, fv as ToolApiInsertSchema, fu as ToolApiSelectSchema, fw as ToolApiUpdateSchema, ek as ToolInsertSchema, gN as ToolListResponse, gx as ToolResponse, ej as ToolSelectSchema, eh as ToolStatusSchema, ft as ToolUpdateSchema, gd as canDelegateToExternalAgentSchema, ge as canDelegateToTeamAgentSchema } from '../utility-Ct1UMzr_.cjs';
4
4
  export { P as PropsValidationResult, v as validatePropsAsJsonSchema } from '../props-validation-BMR1qNiy.cjs';
5
5
  import { z } from '@hono/zod-openapi';
6
6
  import 'drizzle-zod';
@@ -1,6 +1,6 @@
1
1
  import { z as z$1 } from 'zod';
2
- import { gg as AgentWithinContextOfProjectSchema, v as FullAgentDefinition } from '../utility-htaewQEL.js';
3
- export { e2 as AgentApiInsertSchema, e1 as AgentApiSelectSchema, e3 as AgentApiUpdateSchema, d$ as AgentInsertSchema, gM as AgentListResponse, gw as AgentResponse, d_ as AgentSelectSchema, e as AgentStopWhen, b as AgentStopWhenSchema, e0 as AgentUpdateSchema, h3 as AgentWithinContextOfProjectResponse, f6 as AllAgentSchema, fb as ApiKeyApiCreationResponseSchema, fc as ApiKeyApiInsertSchema, fa as ApiKeyApiSelectSchema, A as ApiKeyApiUpdateSchema, f8 as ApiKeyInsertSchema, gQ as ApiKeyListResponse, gA as ApiKeyResponse, f7 as ApiKeySelectSchema, f9 as ApiKeyUpdateSchema, eU as ArtifactComponentApiInsertSchema, eT as ArtifactComponentApiSelectSchema, eV as ArtifactComponentApiUpdateSchema, hd as ArtifactComponentArrayResponse, eR as ArtifactComponentInsertSchema, gV as ArtifactComponentListResponse, gF as ArtifactComponentResponse, eQ as ArtifactComponentSelectSchema, eS as ArtifactComponentUpdateSchema, gc as CanUseItemSchema, h5 as ComponentAssociationListResponse, fo as ComponentAssociationSchema, eB as ContextCacheApiInsertSchema, eA as ContextCacheApiSelectSchema, eC as ContextCacheApiUpdateSchema, ey as ContextCacheInsertSchema, ex as ContextCacheSelectSchema, ez as ContextCacheUpdateSchema, fM as ContextConfigApiInsertSchema, fL as ContextConfigApiSelectSchema, fN as ContextConfigApiUpdateSchema, fJ as ContextConfigInsertSchema, gP as ContextConfigListResponse, gz as ContextConfigResponse, fI as ContextConfigSelectSchema, fK as ContextConfigUpdateSchema, ep as ConversationApiInsertSchema, eo as ConversationApiSelectSchema, eq as ConversationApiUpdateSchema, em as ConversationInsertSchema, gY as ConversationListResponse, gI as ConversationResponse, el as ConversationSelectSchema, en as ConversationUpdateSchema, fl as CreateCredentialInStoreRequestSchema, fm as CreateCredentialInStoreResponseSchema, fh as CredentialReferenceApiInsertSchema, fg as CredentialReferenceApiSelectSchema, fi as CredentialReferenceApiUpdateSchema, fe as CredentialReferenceInsertSchema, gR as CredentialReferenceListResponse, gB as CredentialReferenceResponse, fd as CredentialReferenceSelectSchema, ff as CredentialReferenceUpdateSchema, fk as CredentialStoreListResponseSchema, fj as CredentialStoreSchema, eI as DataComponentApiInsertSchema, eH as DataComponentApiSelectSchema, eJ as DataComponentApiUpdateSchema, hc as DataComponentArrayResponse, eF as DataComponentBaseSchema, eE as DataComponentInsertSchema, gU as DataComponentListResponse, gE as DataComponentResponse, eD as DataComponentSelectSchema, eG as DataComponentUpdateSchema, gk as ErrorResponseSchema, gl as ExistsResponseSchema, f4 as ExternalAgentApiInsertSchema, f3 as ExternalAgentApiSelectSchema, f5 as ExternalAgentApiUpdateSchema, f1 as ExternalAgentInsertSchema, gO as ExternalAgentListResponse, gy as ExternalAgentResponse, f0 as ExternalAgentSelectSchema, f2 as ExternalAgentUpdateSchema, dZ as ExternalSubAgentRelationApiInsertSchema, dY as ExternalSubAgentRelationInsertSchema, fG as FetchConfigSchema, fH as FetchDefinitionSchema, a as FullAgentAgentInsertSchema, h2 as FullProjectDefinitionResponse, gt as FullProjectDefinitionSchema, F as FunctionApiInsertSchema, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, fE as FunctionInsertSchema, gS as FunctionListResponse, gC as FunctionResponse, fD as FunctionSelectSchema, fB as FunctionToolApiInsertSchema, fA as FunctionToolApiSelectSchema, fC as FunctionToolApiUpdateSchema, dK as FunctionToolConfig, dJ as FunctionToolConfigSchema, fy as FunctionToolInsertSchema, gT as FunctionToolListResponse, gD as FunctionToolResponse, fx as FunctionToolSelectSchema, fz as FunctionToolUpdateSchema, fF as FunctionUpdateSchema, he as HeadersScopeSchema, g8 as LedgerArtifactApiInsertSchema, g7 as LedgerArtifactApiSelectSchema, g9 as LedgerArtifactApiUpdateSchema, g5 as LedgerArtifactInsertSchema, g4 as LedgerArtifactSelectSchema, g6 as LedgerArtifactUpdateSchema, gi as ListResponseSchema, fs as MCPToolConfigSchema, ei as McpToolDefinitionSchema, h7 as McpToolListResponse, h6 as McpToolResponse, fr as McpToolSchema, eg as McpTransportConfigSchema, ev as MessageApiInsertSchema, eu as MessageApiSelectSchema, ew as MessageApiUpdateSchema, es as MessageInsertSchema, gZ as MessageListResponse, gJ as MessageResponse, er as MessageSelectSchema, et as MessageUpdateSchema, dH as ModelSchema, g as ModelSettings, M as ModelSettingsSchema, fq as OAuthCallbackQuerySchema, fp as OAuthLoginQuerySchema, hn as PaginationQueryParamsSchema, gh as PaginationSchema, gr as ProjectApiInsertSchema, gq as ProjectApiSelectSchema, gs as ProjectApiUpdateSchema, go as ProjectInsertSchema, gK as ProjectListResponse, dI as ProjectModelSchema, gu as ProjectResponse, gn as ProjectSelectSchema, gp as ProjectUpdateSchema, h4 as RelatedAgentInfoListResponse, fn as RelatedAgentInfoSchema, gm as RemovedResponseSchema, gj as SingleResponseSchema, ga as StatusComponentSchema, gb as StatusUpdateSchema, d as StopWhen, S as StopWhenSchema, dP as SubAgentApiInsertSchema, dO as SubAgentApiSelectSchema, dQ as SubAgentApiUpdateSchema, e_ as SubAgentArtifactComponentApiInsertSchema, eZ as SubAgentArtifactComponentApiSelectSchema, e$ as SubAgentArtifactComponentApiUpdateSchema, eX as SubAgentArtifactComponentInsertSchema, h1 as SubAgentArtifactComponentListResponse, g$ as SubAgentArtifactComponentResponse, eW as SubAgentArtifactComponentSelectSchema, eY as SubAgentArtifactComponentUpdateSchema, eO as SubAgentDataComponentApiInsertSchema, eN as SubAgentDataComponentApiSelectSchema, eP as SubAgentDataComponentApiUpdateSchema, eL as SubAgentDataComponentInsertSchema, h0 as SubAgentDataComponentListResponse, g_ as SubAgentDataComponentResponse, eK as SubAgentDataComponentSelectSchema, eM as SubAgentDataComponentUpdateSchema, fY as SubAgentExternalAgentRelationApiInsertSchema, fX as SubAgentExternalAgentRelationApiSelectSchema, fZ as SubAgentExternalAgentRelationApiUpdateSchema, fV as SubAgentExternalAgentRelationInsertSchema, hb as SubAgentExternalAgentRelationListResponse, ha as SubAgentExternalAgentRelationResponse, fU as SubAgentExternalAgentRelationSelectSchema, fW as SubAgentExternalAgentRelationUpdateSchema, dM as SubAgentInsertSchema, gL as SubAgentListResponse, dV as SubAgentRelationApiInsertSchema, dU as SubAgentRelationApiSelectSchema, dW as SubAgentRelationApiUpdateSchema, dS as SubAgentRelationInsertSchema, gW as SubAgentRelationListResponse, dX as SubAgentRelationQuerySchema, gG as SubAgentRelationResponse, dR as SubAgentRelationSelectSchema, dT as SubAgentRelationUpdateSchema, gv as SubAgentResponse, dL as SubAgentSelectSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema, g2 as SubAgentTeamAgentRelationApiInsertSchema, g1 as SubAgentTeamAgentRelationApiSelectSchema, g3 as SubAgentTeamAgentRelationApiUpdateSchema, f$ as SubAgentTeamAgentRelationInsertSchema, h9 as SubAgentTeamAgentRelationListResponse, h8 as SubAgentTeamAgentRelationResponse, f_ as SubAgentTeamAgentRelationSelectSchema, g0 as SubAgentTeamAgentRelationUpdateSchema, fS as SubAgentToolRelationApiInsertSchema, fR as SubAgentToolRelationApiSelectSchema, fT as SubAgentToolRelationApiUpdateSchema, fP as SubAgentToolRelationInsertSchema, gX as SubAgentToolRelationListResponse, gH as SubAgentToolRelationResponse, fO as SubAgentToolRelationSelectSchema, fQ as SubAgentToolRelationUpdateSchema, dN as SubAgentUpdateSchema, e8 as TaskApiInsertSchema, e7 as TaskApiSelectSchema, e9 as TaskApiUpdateSchema, e5 as TaskInsertSchema, ee as TaskRelationApiInsertSchema, ed as TaskRelationApiSelectSchema, ef as TaskRelationApiUpdateSchema, eb as TaskRelationInsertSchema, ea as TaskRelationSelectSchema, ec as TaskRelationUpdateSchema, e4 as TaskSelectSchema, e6 as TaskUpdateSchema, gf as TeamAgentSchema, hg as TenantIdParamsSchema, hf as TenantParamsSchema, hk as TenantProjectAgentIdParamsSchema, hj as TenantProjectAgentParamsSchema, hm as TenantProjectAgentSubAgentIdParamsSchema, hl as TenantProjectAgentSubAgentParamsSchema, hi as TenantProjectIdParamsSchema, hh as TenantProjectParamsSchema, fv as ToolApiInsertSchema, fu as ToolApiSelectSchema, fw as ToolApiUpdateSchema, ek as ToolInsertSchema, gN as ToolListResponse, gx as ToolResponse, ej as ToolSelectSchema, eh as ToolStatusSchema, ft as ToolUpdateSchema, gd as canDelegateToExternalAgentSchema, ge as canDelegateToTeamAgentSchema } from '../utility-htaewQEL.js';
2
+ import { gg as AgentWithinContextOfProjectSchema, v as FullAgentDefinition } from '../utility-Ct1UMzr_.js';
3
+ export { e2 as AgentApiInsertSchema, e1 as AgentApiSelectSchema, e3 as AgentApiUpdateSchema, d$ as AgentInsertSchema, gM as AgentListResponse, gw as AgentResponse, d_ as AgentSelectSchema, e as AgentStopWhen, b as AgentStopWhenSchema, e0 as AgentUpdateSchema, h3 as AgentWithinContextOfProjectResponse, f6 as AllAgentSchema, fb as ApiKeyApiCreationResponseSchema, fc as ApiKeyApiInsertSchema, fa as ApiKeyApiSelectSchema, A as ApiKeyApiUpdateSchema, f8 as ApiKeyInsertSchema, gQ as ApiKeyListResponse, gA as ApiKeyResponse, f7 as ApiKeySelectSchema, f9 as ApiKeyUpdateSchema, eU as ArtifactComponentApiInsertSchema, eT as ArtifactComponentApiSelectSchema, eV as ArtifactComponentApiUpdateSchema, hd as ArtifactComponentArrayResponse, eR as ArtifactComponentInsertSchema, gV as ArtifactComponentListResponse, gF as ArtifactComponentResponse, eQ as ArtifactComponentSelectSchema, eS as ArtifactComponentUpdateSchema, gc as CanUseItemSchema, h5 as ComponentAssociationListResponse, fo as ComponentAssociationSchema, eB as ContextCacheApiInsertSchema, eA as ContextCacheApiSelectSchema, eC as ContextCacheApiUpdateSchema, ey as ContextCacheInsertSchema, ex as ContextCacheSelectSchema, ez as ContextCacheUpdateSchema, fM as ContextConfigApiInsertSchema, fL as ContextConfigApiSelectSchema, fN as ContextConfigApiUpdateSchema, fJ as ContextConfigInsertSchema, gP as ContextConfigListResponse, gz as ContextConfigResponse, fI as ContextConfigSelectSchema, fK as ContextConfigUpdateSchema, ep as ConversationApiInsertSchema, eo as ConversationApiSelectSchema, eq as ConversationApiUpdateSchema, em as ConversationInsertSchema, gY as ConversationListResponse, gI as ConversationResponse, el as ConversationSelectSchema, en as ConversationUpdateSchema, fl as CreateCredentialInStoreRequestSchema, fm as CreateCredentialInStoreResponseSchema, fh as CredentialReferenceApiInsertSchema, fg as CredentialReferenceApiSelectSchema, fi as CredentialReferenceApiUpdateSchema, fe as CredentialReferenceInsertSchema, gR as CredentialReferenceListResponse, gB as CredentialReferenceResponse, fd as CredentialReferenceSelectSchema, ff as CredentialReferenceUpdateSchema, fk as CredentialStoreListResponseSchema, fj as CredentialStoreSchema, eI as DataComponentApiInsertSchema, eH as DataComponentApiSelectSchema, eJ as DataComponentApiUpdateSchema, hc as DataComponentArrayResponse, eF as DataComponentBaseSchema, eE as DataComponentInsertSchema, gU as DataComponentListResponse, gE as DataComponentResponse, eD as DataComponentSelectSchema, eG as DataComponentUpdateSchema, gk as ErrorResponseSchema, gl as ExistsResponseSchema, f4 as ExternalAgentApiInsertSchema, f3 as ExternalAgentApiSelectSchema, f5 as ExternalAgentApiUpdateSchema, f1 as ExternalAgentInsertSchema, gO as ExternalAgentListResponse, gy as ExternalAgentResponse, f0 as ExternalAgentSelectSchema, f2 as ExternalAgentUpdateSchema, dZ as ExternalSubAgentRelationApiInsertSchema, dY as ExternalSubAgentRelationInsertSchema, fG as FetchConfigSchema, fH as FetchDefinitionSchema, a as FullAgentAgentInsertSchema, h2 as FullProjectDefinitionResponse, gt as FullProjectDefinitionSchema, F as FunctionApiInsertSchema, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, fE as FunctionInsertSchema, gS as FunctionListResponse, gC as FunctionResponse, fD as FunctionSelectSchema, fB as FunctionToolApiInsertSchema, fA as FunctionToolApiSelectSchema, fC as FunctionToolApiUpdateSchema, dK as FunctionToolConfig, dJ as FunctionToolConfigSchema, fy as FunctionToolInsertSchema, gT as FunctionToolListResponse, gD as FunctionToolResponse, fx as FunctionToolSelectSchema, fz as FunctionToolUpdateSchema, fF as FunctionUpdateSchema, he as HeadersScopeSchema, g8 as LedgerArtifactApiInsertSchema, g7 as LedgerArtifactApiSelectSchema, g9 as LedgerArtifactApiUpdateSchema, g5 as LedgerArtifactInsertSchema, g4 as LedgerArtifactSelectSchema, g6 as LedgerArtifactUpdateSchema, gi as ListResponseSchema, fs as MCPToolConfigSchema, ei as McpToolDefinitionSchema, h7 as McpToolListResponse, h6 as McpToolResponse, fr as McpToolSchema, eg as McpTransportConfigSchema, ev as MessageApiInsertSchema, eu as MessageApiSelectSchema, ew as MessageApiUpdateSchema, es as MessageInsertSchema, gZ as MessageListResponse, gJ as MessageResponse, er as MessageSelectSchema, et as MessageUpdateSchema, dH as ModelSchema, g as ModelSettings, M as ModelSettingsSchema, fq as OAuthCallbackQuerySchema, fp as OAuthLoginQuerySchema, hn as PaginationQueryParamsSchema, gh as PaginationSchema, gr as ProjectApiInsertSchema, gq as ProjectApiSelectSchema, gs as ProjectApiUpdateSchema, go as ProjectInsertSchema, gK as ProjectListResponse, dI as ProjectModelSchema, gu as ProjectResponse, gn as ProjectSelectSchema, gp as ProjectUpdateSchema, h4 as RelatedAgentInfoListResponse, fn as RelatedAgentInfoSchema, gm as RemovedResponseSchema, gj as SingleResponseSchema, ga as StatusComponentSchema, gb as StatusUpdateSchema, d as StopWhen, S as StopWhenSchema, dP as SubAgentApiInsertSchema, dO as SubAgentApiSelectSchema, dQ as SubAgentApiUpdateSchema, e_ as SubAgentArtifactComponentApiInsertSchema, eZ as SubAgentArtifactComponentApiSelectSchema, e$ as SubAgentArtifactComponentApiUpdateSchema, eX as SubAgentArtifactComponentInsertSchema, h1 as SubAgentArtifactComponentListResponse, g$ as SubAgentArtifactComponentResponse, eW as SubAgentArtifactComponentSelectSchema, eY as SubAgentArtifactComponentUpdateSchema, eO as SubAgentDataComponentApiInsertSchema, eN as SubAgentDataComponentApiSelectSchema, eP as SubAgentDataComponentApiUpdateSchema, eL as SubAgentDataComponentInsertSchema, h0 as SubAgentDataComponentListResponse, g_ as SubAgentDataComponentResponse, eK as SubAgentDataComponentSelectSchema, eM as SubAgentDataComponentUpdateSchema, fY as SubAgentExternalAgentRelationApiInsertSchema, fX as SubAgentExternalAgentRelationApiSelectSchema, fZ as SubAgentExternalAgentRelationApiUpdateSchema, fV as SubAgentExternalAgentRelationInsertSchema, hb as SubAgentExternalAgentRelationListResponse, ha as SubAgentExternalAgentRelationResponse, fU as SubAgentExternalAgentRelationSelectSchema, fW as SubAgentExternalAgentRelationUpdateSchema, dM as SubAgentInsertSchema, gL as SubAgentListResponse, dV as SubAgentRelationApiInsertSchema, dU as SubAgentRelationApiSelectSchema, dW as SubAgentRelationApiUpdateSchema, dS as SubAgentRelationInsertSchema, gW as SubAgentRelationListResponse, dX as SubAgentRelationQuerySchema, gG as SubAgentRelationResponse, dR as SubAgentRelationSelectSchema, dT as SubAgentRelationUpdateSchema, gv as SubAgentResponse, dL as SubAgentSelectSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema, g2 as SubAgentTeamAgentRelationApiInsertSchema, g1 as SubAgentTeamAgentRelationApiSelectSchema, g3 as SubAgentTeamAgentRelationApiUpdateSchema, f$ as SubAgentTeamAgentRelationInsertSchema, h9 as SubAgentTeamAgentRelationListResponse, h8 as SubAgentTeamAgentRelationResponse, f_ as SubAgentTeamAgentRelationSelectSchema, g0 as SubAgentTeamAgentRelationUpdateSchema, fS as SubAgentToolRelationApiInsertSchema, fR as SubAgentToolRelationApiSelectSchema, fT as SubAgentToolRelationApiUpdateSchema, fP as SubAgentToolRelationInsertSchema, gX as SubAgentToolRelationListResponse, gH as SubAgentToolRelationResponse, fO as SubAgentToolRelationSelectSchema, fQ as SubAgentToolRelationUpdateSchema, dN as SubAgentUpdateSchema, e8 as TaskApiInsertSchema, e7 as TaskApiSelectSchema, e9 as TaskApiUpdateSchema, e5 as TaskInsertSchema, ee as TaskRelationApiInsertSchema, ed as TaskRelationApiSelectSchema, ef as TaskRelationApiUpdateSchema, eb as TaskRelationInsertSchema, ea as TaskRelationSelectSchema, ec as TaskRelationUpdateSchema, e4 as TaskSelectSchema, e6 as TaskUpdateSchema, gf as TeamAgentSchema, hg as TenantIdParamsSchema, hf as TenantParamsSchema, hk as TenantProjectAgentIdParamsSchema, hj as TenantProjectAgentParamsSchema, hm as TenantProjectAgentSubAgentIdParamsSchema, hl as TenantProjectAgentSubAgentParamsSchema, hi as TenantProjectIdParamsSchema, hh as TenantProjectParamsSchema, fv as ToolApiInsertSchema, fu as ToolApiSelectSchema, fw as ToolApiUpdateSchema, ek as ToolInsertSchema, gN as ToolListResponse, gx as ToolResponse, ej as ToolSelectSchema, eh as ToolStatusSchema, ft as ToolUpdateSchema, gd as canDelegateToExternalAgentSchema, ge as canDelegateToTeamAgentSchema } from '../utility-Ct1UMzr_.js';
4
4
  export { P as PropsValidationResult, v as validatePropsAsJsonSchema } from '../props-validation-BMR1qNiy.js';
5
5
  import { z } from '@hono/zod-openapi';
6
6
  import 'drizzle-zod';
@@ -1,2 +1,2 @@
1
- export { A2AMessageMetadataSchema, DataComponentStreamEventSchema, DataOperationDetailsSchema, DataOperationEventSchema, DataOperationStreamEventSchema, DataSummaryStreamEventSchema, DelegationReturnedDataSchema, DelegationSentDataSchema, StreamErrorEventSchema, StreamEventSchema, StreamFinishEventSchema, TextDeltaEventSchema, TextEndEventSchema, TextStartEventSchema, TransferDataSchema, generateIdFromName, isValidResourceId, validateAgentRelationships, validateAgentStructure, validateAndTypeAgentData, validateArtifactComponentReferences, validateDataComponentReferences, validateRender, validateSubAgentExternalAgentRelations, validateToolReferences } from '../chunk-4VUM4EJL.js';
2
- export { AgentApiInsertSchema, AgentApiSelectSchema, AgentApiUpdateSchema, AgentInsertSchema, AgentListResponse, AgentResponse, AgentSelectSchema, AgentStopWhenSchema, AgentUpdateSchema, AgentWithinContextOfProjectResponse, AgentWithinContextOfProjectSchema, AllAgentSchema, ApiKeyApiCreationResponseSchema, ApiKeyApiInsertSchema, ApiKeyApiSelectSchema, ApiKeyApiUpdateSchema, ApiKeyInsertSchema, ApiKeyListResponse, ApiKeyResponse, ApiKeySelectSchema, ApiKeyUpdateSchema, ArtifactComponentApiInsertSchema, ArtifactComponentApiSelectSchema, ArtifactComponentApiUpdateSchema, ArtifactComponentArrayResponse, ArtifactComponentInsertSchema, ArtifactComponentListResponse, ArtifactComponentResponse, ArtifactComponentSelectSchema, ArtifactComponentUpdateSchema, CanUseItemSchema, ComponentAssociationListResponse, ComponentAssociationSchema, ContextCacheApiInsertSchema, ContextCacheApiSelectSchema, ContextCacheApiUpdateSchema, ContextCacheInsertSchema, ContextCacheSelectSchema, ContextCacheUpdateSchema, ContextConfigApiInsertSchema, ContextConfigApiSelectSchema, ContextConfigApiUpdateSchema, ContextConfigInsertSchema, ContextConfigListResponse, ContextConfigResponse, ContextConfigSelectSchema, ContextConfigUpdateSchema, ConversationApiInsertSchema, ConversationApiSelectSchema, ConversationApiUpdateSchema, ConversationInsertSchema, ConversationListResponse, ConversationResponse, ConversationSelectSchema, ConversationUpdateSchema, CreateCredentialInStoreRequestSchema, CreateCredentialInStoreResponseSchema, CredentialReferenceApiInsertSchema, CredentialReferenceApiSelectSchema, CredentialReferenceApiUpdateSchema, CredentialReferenceInsertSchema, CredentialReferenceListResponse, CredentialReferenceResponse, CredentialReferenceSelectSchema, CredentialReferenceUpdateSchema, CredentialStoreListResponseSchema, CredentialStoreSchema, DataComponentApiInsertSchema, DataComponentApiSelectSchema, DataComponentApiUpdateSchema, DataComponentArrayResponse, DataComponentBaseSchema, DataComponentInsertSchema, DataComponentListResponse, DataComponentResponse, DataComponentSelectSchema, DataComponentUpdateSchema, ErrorResponseSchema, ExistsResponseSchema, ExternalAgentApiInsertSchema, ExternalAgentApiSelectSchema, ExternalAgentApiUpdateSchema, ExternalAgentInsertSchema, ExternalAgentListResponse, ExternalAgentResponse, ExternalAgentSelectSchema, ExternalAgentUpdateSchema, ExternalSubAgentRelationApiInsertSchema, ExternalSubAgentRelationInsertSchema, FetchConfigSchema, FetchDefinitionSchema, FullAgentAgentInsertSchema, FullProjectDefinitionResponse, 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, McpToolListResponse, McpToolResponse, McpToolSchema, McpTransportConfigSchema, MessageApiInsertSchema, MessageApiSelectSchema, MessageApiUpdateSchema, MessageInsertSchema, MessageListResponse, MessageResponse, MessageSelectSchema, MessageUpdateSchema, ModelSchema, ModelSettingsSchema, OAuthCallbackQuerySchema, OAuthLoginQuerySchema, PaginationQueryParamsSchema, PaginationSchema, ProjectApiInsertSchema, ProjectApiSelectSchema, ProjectApiUpdateSchema, ProjectInsertSchema, ProjectListResponse, ProjectModelSchema, ProjectResponse, ProjectSelectSchema, ProjectUpdateSchema, RelatedAgentInfoListResponse, RelatedAgentInfoSchema, RemovedResponseSchema, SingleResponseSchema, StatusComponentSchema, StatusUpdateSchema, StopWhenSchema, SubAgentApiInsertSchema, SubAgentApiSelectSchema, SubAgentApiUpdateSchema, SubAgentArtifactComponentApiInsertSchema, SubAgentArtifactComponentApiSelectSchema, SubAgentArtifactComponentApiUpdateSchema, SubAgentArtifactComponentInsertSchema, SubAgentArtifactComponentListResponse, SubAgentArtifactComponentResponse, SubAgentArtifactComponentSelectSchema, SubAgentArtifactComponentUpdateSchema, SubAgentDataComponentApiInsertSchema, SubAgentDataComponentApiSelectSchema, SubAgentDataComponentApiUpdateSchema, SubAgentDataComponentInsertSchema, SubAgentDataComponentListResponse, SubAgentDataComponentResponse, SubAgentDataComponentSelectSchema, SubAgentDataComponentUpdateSchema, SubAgentExternalAgentRelationApiInsertSchema, SubAgentExternalAgentRelationApiSelectSchema, SubAgentExternalAgentRelationApiUpdateSchema, SubAgentExternalAgentRelationInsertSchema, SubAgentExternalAgentRelationListResponse, SubAgentExternalAgentRelationResponse, SubAgentExternalAgentRelationSelectSchema, SubAgentExternalAgentRelationUpdateSchema, SubAgentInsertSchema, SubAgentListResponse, SubAgentRelationApiInsertSchema, SubAgentRelationApiSelectSchema, SubAgentRelationApiUpdateSchema, SubAgentRelationInsertSchema, SubAgentRelationListResponse, SubAgentRelationQuerySchema, SubAgentRelationResponse, SubAgentRelationSelectSchema, SubAgentRelationUpdateSchema, SubAgentResponse, SubAgentSelectSchema, SubAgentStopWhenSchema, SubAgentTeamAgentRelationApiInsertSchema, SubAgentTeamAgentRelationApiSelectSchema, SubAgentTeamAgentRelationApiUpdateSchema, SubAgentTeamAgentRelationInsertSchema, SubAgentTeamAgentRelationListResponse, SubAgentTeamAgentRelationResponse, SubAgentTeamAgentRelationSelectSchema, SubAgentTeamAgentRelationUpdateSchema, SubAgentToolRelationApiInsertSchema, SubAgentToolRelationApiSelectSchema, SubAgentToolRelationApiUpdateSchema, SubAgentToolRelationInsertSchema, SubAgentToolRelationListResponse, SubAgentToolRelationResponse, SubAgentToolRelationSelectSchema, SubAgentToolRelationUpdateSchema, SubAgentUpdateSchema, TaskApiInsertSchema, TaskApiSelectSchema, TaskApiUpdateSchema, TaskInsertSchema, TaskRelationApiInsertSchema, TaskRelationApiSelectSchema, TaskRelationApiUpdateSchema, TaskRelationInsertSchema, TaskRelationSelectSchema, TaskRelationUpdateSchema, TaskSelectSchema, TaskUpdateSchema, TeamAgentSchema, TenantIdParamsSchema, TenantParamsSchema, TenantProjectAgentIdParamsSchema, TenantProjectAgentParamsSchema, TenantProjectAgentSubAgentIdParamsSchema, TenantProjectAgentSubAgentParamsSchema, TenantProjectIdParamsSchema, TenantProjectParamsSchema, ToolApiInsertSchema, ToolApiSelectSchema, ToolApiUpdateSchema, ToolInsertSchema, ToolListResponse, ToolResponse, ToolSelectSchema, ToolStatusSchema, ToolUpdateSchema, URL_SAFE_ID_PATTERN, canDelegateToExternalAgentSchema, canDelegateToTeamAgentSchema, resourceIdSchema, validatePropsAsJsonSchema } from '../chunk-UMFCT6A6.js';
1
+ export { A2AMessageMetadataSchema, DataComponentStreamEventSchema, DataOperationDetailsSchema, DataOperationEventSchema, DataOperationStreamEventSchema, DataSummaryStreamEventSchema, DelegationReturnedDataSchema, DelegationSentDataSchema, StreamErrorEventSchema, StreamEventSchema, StreamFinishEventSchema, TextDeltaEventSchema, TextEndEventSchema, TextStartEventSchema, TransferDataSchema, generateIdFromName, isValidResourceId, validateAgentRelationships, validateAgentStructure, validateAndTypeAgentData, validateArtifactComponentReferences, validateDataComponentReferences, validateRender, validateSubAgentExternalAgentRelations, validateToolReferences } from '../chunk-J5AHY6M2.js';
2
+ export { AgentApiInsertSchema, AgentApiSelectSchema, AgentApiUpdateSchema, AgentInsertSchema, AgentListResponse, AgentResponse, AgentSelectSchema, AgentStopWhenSchema, AgentUpdateSchema, AgentWithinContextOfProjectResponse, AgentWithinContextOfProjectSchema, AllAgentSchema, ApiKeyApiCreationResponseSchema, ApiKeyApiInsertSchema, ApiKeyApiSelectSchema, ApiKeyApiUpdateSchema, ApiKeyInsertSchema, ApiKeyListResponse, ApiKeyResponse, ApiKeySelectSchema, ApiKeyUpdateSchema, ArtifactComponentApiInsertSchema, ArtifactComponentApiSelectSchema, ArtifactComponentApiUpdateSchema, ArtifactComponentArrayResponse, ArtifactComponentInsertSchema, ArtifactComponentListResponse, ArtifactComponentResponse, ArtifactComponentSelectSchema, ArtifactComponentUpdateSchema, CanUseItemSchema, ComponentAssociationListResponse, ComponentAssociationSchema, ContextCacheApiInsertSchema, ContextCacheApiSelectSchema, ContextCacheApiUpdateSchema, ContextCacheInsertSchema, ContextCacheSelectSchema, ContextCacheUpdateSchema, ContextConfigApiInsertSchema, ContextConfigApiSelectSchema, ContextConfigApiUpdateSchema, ContextConfigInsertSchema, ContextConfigListResponse, ContextConfigResponse, ContextConfigSelectSchema, ContextConfigUpdateSchema, ConversationApiInsertSchema, ConversationApiSelectSchema, ConversationApiUpdateSchema, ConversationInsertSchema, ConversationListResponse, ConversationResponse, ConversationSelectSchema, ConversationUpdateSchema, CreateCredentialInStoreRequestSchema, CreateCredentialInStoreResponseSchema, CredentialReferenceApiInsertSchema, CredentialReferenceApiSelectSchema, CredentialReferenceApiUpdateSchema, CredentialReferenceInsertSchema, CredentialReferenceListResponse, CredentialReferenceResponse, CredentialReferenceSelectSchema, CredentialReferenceUpdateSchema, CredentialStoreListResponseSchema, CredentialStoreSchema, DataComponentApiInsertSchema, DataComponentApiSelectSchema, DataComponentApiUpdateSchema, DataComponentArrayResponse, DataComponentBaseSchema, DataComponentInsertSchema, DataComponentListResponse, DataComponentResponse, DataComponentSelectSchema, DataComponentUpdateSchema, ErrorResponseSchema, ExistsResponseSchema, ExternalAgentApiInsertSchema, ExternalAgentApiSelectSchema, ExternalAgentApiUpdateSchema, ExternalAgentInsertSchema, ExternalAgentListResponse, ExternalAgentResponse, ExternalAgentSelectSchema, ExternalAgentUpdateSchema, ExternalSubAgentRelationApiInsertSchema, ExternalSubAgentRelationInsertSchema, FetchConfigSchema, FetchDefinitionSchema, FullAgentAgentInsertSchema, FullProjectDefinitionResponse, 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, McpToolListResponse, McpToolResponse, McpToolSchema, McpTransportConfigSchema, MessageApiInsertSchema, MessageApiSelectSchema, MessageApiUpdateSchema, MessageInsertSchema, MessageListResponse, MessageResponse, MessageSelectSchema, MessageUpdateSchema, ModelSchema, ModelSettingsSchema, OAuthCallbackQuerySchema, OAuthLoginQuerySchema, PaginationQueryParamsSchema, PaginationSchema, ProjectApiInsertSchema, ProjectApiSelectSchema, ProjectApiUpdateSchema, ProjectInsertSchema, ProjectListResponse, ProjectModelSchema, ProjectResponse, ProjectSelectSchema, ProjectUpdateSchema, RelatedAgentInfoListResponse, RelatedAgentInfoSchema, RemovedResponseSchema, SingleResponseSchema, StatusComponentSchema, StatusUpdateSchema, StopWhenSchema, SubAgentApiInsertSchema, SubAgentApiSelectSchema, SubAgentApiUpdateSchema, SubAgentArtifactComponentApiInsertSchema, SubAgentArtifactComponentApiSelectSchema, SubAgentArtifactComponentApiUpdateSchema, SubAgentArtifactComponentInsertSchema, SubAgentArtifactComponentListResponse, SubAgentArtifactComponentResponse, SubAgentArtifactComponentSelectSchema, SubAgentArtifactComponentUpdateSchema, SubAgentDataComponentApiInsertSchema, SubAgentDataComponentApiSelectSchema, SubAgentDataComponentApiUpdateSchema, SubAgentDataComponentInsertSchema, SubAgentDataComponentListResponse, SubAgentDataComponentResponse, SubAgentDataComponentSelectSchema, SubAgentDataComponentUpdateSchema, SubAgentExternalAgentRelationApiInsertSchema, SubAgentExternalAgentRelationApiSelectSchema, SubAgentExternalAgentRelationApiUpdateSchema, SubAgentExternalAgentRelationInsertSchema, SubAgentExternalAgentRelationListResponse, SubAgentExternalAgentRelationResponse, SubAgentExternalAgentRelationSelectSchema, SubAgentExternalAgentRelationUpdateSchema, SubAgentInsertSchema, SubAgentListResponse, SubAgentRelationApiInsertSchema, SubAgentRelationApiSelectSchema, SubAgentRelationApiUpdateSchema, SubAgentRelationInsertSchema, SubAgentRelationListResponse, SubAgentRelationQuerySchema, SubAgentRelationResponse, SubAgentRelationSelectSchema, SubAgentRelationUpdateSchema, SubAgentResponse, SubAgentSelectSchema, SubAgentStopWhenSchema, SubAgentTeamAgentRelationApiInsertSchema, SubAgentTeamAgentRelationApiSelectSchema, SubAgentTeamAgentRelationApiUpdateSchema, SubAgentTeamAgentRelationInsertSchema, SubAgentTeamAgentRelationListResponse, SubAgentTeamAgentRelationResponse, SubAgentTeamAgentRelationSelectSchema, SubAgentTeamAgentRelationUpdateSchema, SubAgentToolRelationApiInsertSchema, SubAgentToolRelationApiSelectSchema, SubAgentToolRelationApiUpdateSchema, SubAgentToolRelationInsertSchema, SubAgentToolRelationListResponse, SubAgentToolRelationResponse, SubAgentToolRelationSelectSchema, SubAgentToolRelationUpdateSchema, SubAgentUpdateSchema, TaskApiInsertSchema, TaskApiSelectSchema, TaskApiUpdateSchema, TaskInsertSchema, TaskRelationApiInsertSchema, TaskRelationApiSelectSchema, TaskRelationApiUpdateSchema, TaskRelationInsertSchema, TaskRelationSelectSchema, TaskRelationUpdateSchema, TaskSelectSchema, TaskUpdateSchema, TeamAgentSchema, TenantIdParamsSchema, TenantParamsSchema, TenantProjectAgentIdParamsSchema, TenantProjectAgentParamsSchema, TenantProjectAgentSubAgentIdParamsSchema, TenantProjectAgentSubAgentParamsSchema, TenantProjectIdParamsSchema, TenantProjectParamsSchema, ToolApiInsertSchema, ToolApiSelectSchema, ToolApiUpdateSchema, ToolInsertSchema, ToolListResponse, ToolResponse, ToolSelectSchema, ToolStatusSchema, ToolUpdateSchema, URL_SAFE_ID_PATTERN, canDelegateToExternalAgentSchema, canDelegateToTeamAgentSchema, resourceIdSchema, validatePropsAsJsonSchema } from '../chunk-DYGTCLJO.js';
@@ -0,0 +1,115 @@
1
+ CREATE TABLE "account" (
2
+ "id" text PRIMARY KEY NOT NULL,
3
+ "account_id" text NOT NULL,
4
+ "provider_id" text NOT NULL,
5
+ "user_id" text NOT NULL,
6
+ "access_token" text,
7
+ "refresh_token" text,
8
+ "id_token" text,
9
+ "access_token_expires_at" timestamp,
10
+ "refresh_token_expires_at" timestamp,
11
+ "scope" text,
12
+ "password" text,
13
+ "created_at" timestamp DEFAULT now() NOT NULL,
14
+ "updated_at" timestamp NOT NULL
15
+ );
16
+ --> statement-breakpoint
17
+ CREATE TABLE "invitation" (
18
+ "id" text PRIMARY KEY NOT NULL,
19
+ "organization_id" text NOT NULL,
20
+ "email" text NOT NULL,
21
+ "role" text,
22
+ "status" text DEFAULT 'pending' NOT NULL,
23
+ "expires_at" timestamp NOT NULL,
24
+ "inviter_id" text NOT NULL
25
+ );
26
+ --> statement-breakpoint
27
+ CREATE TABLE "member" (
28
+ "id" text PRIMARY KEY NOT NULL,
29
+ "organization_id" text NOT NULL,
30
+ "user_id" text NOT NULL,
31
+ "role" text DEFAULT 'member' NOT NULL,
32
+ "created_at" timestamp NOT NULL
33
+ );
34
+ --> statement-breakpoint
35
+ CREATE TABLE "organization" (
36
+ "id" text PRIMARY KEY NOT NULL,
37
+ "name" text NOT NULL,
38
+ "slug" text NOT NULL,
39
+ "logo" text,
40
+ "created_at" timestamp NOT NULL,
41
+ "metadata" text,
42
+ CONSTRAINT "organization_slug_unique" UNIQUE("slug")
43
+ );
44
+ --> statement-breakpoint
45
+ CREATE TABLE "session" (
46
+ "id" text PRIMARY KEY NOT NULL,
47
+ "expires_at" timestamp NOT NULL,
48
+ "token" text NOT NULL,
49
+ "created_at" timestamp DEFAULT now() NOT NULL,
50
+ "updated_at" timestamp NOT NULL,
51
+ "ip_address" text,
52
+ "user_agent" text,
53
+ "user_id" text NOT NULL,
54
+ "active_organization_id" text,
55
+ CONSTRAINT "session_token_unique" UNIQUE("token")
56
+ );
57
+ --> statement-breakpoint
58
+ CREATE TABLE "sso_provider" (
59
+ "id" text PRIMARY KEY NOT NULL,
60
+ "issuer" text NOT NULL,
61
+ "oidc_config" text,
62
+ "saml_config" text,
63
+ "user_id" text,
64
+ "provider_id" text NOT NULL,
65
+ "organization_id" text,
66
+ "domain" text NOT NULL,
67
+ CONSTRAINT "sso_provider_provider_id_unique" UNIQUE("provider_id")
68
+ );
69
+ --> statement-breakpoint
70
+ CREATE TABLE "user" (
71
+ "id" text PRIMARY KEY NOT NULL,
72
+ "name" text NOT NULL,
73
+ "email" text NOT NULL,
74
+ "email_verified" boolean DEFAULT false NOT NULL,
75
+ "image" text,
76
+ "created_at" timestamp DEFAULT now() NOT NULL,
77
+ "updated_at" timestamp DEFAULT now() NOT NULL,
78
+ CONSTRAINT "user_email_unique" UNIQUE("email")
79
+ );
80
+ --> statement-breakpoint
81
+ CREATE TABLE "verification" (
82
+ "id" text PRIMARY KEY NOT NULL,
83
+ "identifier" text NOT NULL,
84
+ "value" text NOT NULL,
85
+ "expires_at" timestamp NOT NULL,
86
+ "created_at" timestamp DEFAULT now() NOT NULL,
87
+ "updated_at" timestamp DEFAULT now() NOT NULL
88
+ );
89
+ --> statement-breakpoint
90
+ -- Data migration: Create organizations for all existing tenant_ids in projects and api_keys tables
91
+ INSERT INTO "organization" ("id", "name", "slug", "created_at", "metadata")
92
+ SELECT DISTINCT
93
+ tenant_id,
94
+ tenant_id,
95
+ tenant_id,
96
+ NOW(),
97
+ NULL
98
+ FROM (
99
+ SELECT tenant_id FROM "projects"
100
+ UNION
101
+ SELECT tenant_id FROM "api_keys"
102
+ ) AS all_tenants
103
+ WHERE tenant_id IS NOT NULL
104
+ ON CONFLICT ("id") DO NOTHING;
105
+ --> statement-breakpoint
106
+ ALTER TABLE "sub_agents" ALTER COLUMN "conversation_history_config" SET DEFAULT '{"mode":"full","limit":50,"maxOutputTokens":4000,"includeInternal":false,"messageTypes":["chat","tool-result"]}'::jsonb;--> statement-breakpoint
107
+ ALTER TABLE "account" ADD CONSTRAINT "account_user_id_user_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."user"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
108
+ ALTER TABLE "invitation" ADD CONSTRAINT "invitation_organization_id_organization_id_fk" FOREIGN KEY ("organization_id") REFERENCES "public"."organization"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
109
+ ALTER TABLE "invitation" ADD CONSTRAINT "invitation_inviter_id_user_id_fk" FOREIGN KEY ("inviter_id") REFERENCES "public"."user"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
110
+ ALTER TABLE "member" ADD CONSTRAINT "member_organization_id_organization_id_fk" FOREIGN KEY ("organization_id") REFERENCES "public"."organization"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
111
+ ALTER TABLE "member" ADD CONSTRAINT "member_user_id_user_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."user"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
112
+ ALTER TABLE "session" ADD CONSTRAINT "session_user_id_user_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."user"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
113
+ ALTER TABLE "sso_provider" ADD CONSTRAINT "sso_provider_user_id_user_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."user"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
114
+ ALTER TABLE "api_keys" ADD CONSTRAINT "api_keys_organization_fk" FOREIGN KEY ("tenant_id") REFERENCES "public"."organization"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
115
+ ALTER TABLE "projects" ADD CONSTRAINT "projects_tenant_id_fk" FOREIGN KEY ("tenant_id") REFERENCES "public"."organization"("id") ON DELETE cascade ON UPDATE no action;