Expand data model with companies, approvals, costs, and heartbeats
Add new DB schemas: companies, agent_api_keys, approvals, cost_events,
heartbeat_runs, issue_comments. Add corresponding shared types and
validators. Update existing schemas (agents, goals, issues, projects)
with new fields for company association, budgets, and richer metadata.
Generate initial Drizzle migration. Update seed data.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 09:07:22 -06:00
|
|
|
export { companies } from "./companies.js";
|
2026-03-16 09:25:39 -05:00
|
|
|
export { companyLogos } from "./company_logos.js";
|
feat: add auth/access foundation - deps, DB schema, shared types, and config
Add Better Auth, drizzle-orm, @dnd-kit, and remark-gfm dependencies.
Introduce DB schema for auth tables (user, session, account, verification),
company memberships, instance user roles, permission grants, invites, and
join requests. Add assigneeUserId to issues. Extend shared config schema
with deployment mode/exposure/auth settings, add access types and validators,
and wire up new API path constants.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-23 14:40:16 -06:00
|
|
|
export { authUsers, authSessions, authAccounts, authVerifications } from "./auth.js";
|
2026-03-17 09:24:28 -05:00
|
|
|
export { instanceSettings } from "./instance_settings.js";
|
feat: add auth/access foundation - deps, DB schema, shared types, and config
Add Better Auth, drizzle-orm, @dnd-kit, and remark-gfm dependencies.
Introduce DB schema for auth tables (user, session, account, verification),
company memberships, instance user roles, permission grants, invites, and
join requests. Add assigneeUserId to issues. Extend shared config schema
with deployment mode/exposure/auth settings, add access types and validators,
and wire up new API path constants.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-23 14:40:16 -06:00
|
|
|
export { instanceUserRoles } from "./instance_user_roles.js";
|
2026-02-16 13:31:52 -06:00
|
|
|
export { agents } from "./agents.js";
|
2026-03-23 07:48:03 -05:00
|
|
|
export { boardApiKeys } from "./board_api_keys.js";
|
|
|
|
|
export { cliAuthChallenges } from "./cli_auth_challenges.js";
|
feat: add auth/access foundation - deps, DB schema, shared types, and config
Add Better Auth, drizzle-orm, @dnd-kit, and remark-gfm dependencies.
Introduce DB schema for auth tables (user, session, account, verification),
company memberships, instance user roles, permission grants, invites, and
join requests. Add assigneeUserId to issues. Extend shared config schema
with deployment mode/exposure/auth settings, add access types and validators,
and wire up new API path constants.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-23 14:40:16 -06:00
|
|
|
export { companyMemberships } from "./company_memberships.js";
|
|
|
|
|
export { principalPermissionGrants } from "./principal_permission_grants.js";
|
|
|
|
|
export { invites } from "./invites.js";
|
|
|
|
|
export { joinRequests } from "./join_requests.js";
|
2026-03-14 22:00:12 -05:00
|
|
|
export { budgetPolicies } from "./budget_policies.js";
|
|
|
|
|
export { budgetIncidents } from "./budget_incidents.js";
|
2026-02-19 13:02:14 -06:00
|
|
|
export { agentConfigRevisions } from "./agent_config_revisions.js";
|
Expand data model with companies, approvals, costs, and heartbeats
Add new DB schemas: companies, agent_api_keys, approvals, cost_events,
heartbeat_runs, issue_comments. Add corresponding shared types and
validators. Update existing schemas (agents, goals, issues, projects)
with new fields for company association, budgets, and richer metadata.
Generate initial Drizzle migration. Update seed data.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 09:07:22 -06:00
|
|
|
export { agentApiKeys } from "./agent_api_keys.js";
|
2026-02-17 12:24:38 -06:00
|
|
|
export { agentRuntimeState } from "./agent_runtime_state.js";
|
2026-02-19 14:01:40 -06:00
|
|
|
export { agentTaskSessions } from "./agent_task_sessions.js";
|
2026-02-17 12:24:38 -06:00
|
|
|
export { agentWakeupRequests } from "./agent_wakeup_requests.js";
|
2026-02-16 13:31:52 -06:00
|
|
|
export { projects } from "./projects.js";
|
2026-02-25 08:38:37 -06:00
|
|
|
export { projectWorkspaces } from "./project_workspaces.js";
|
2026-03-13 17:12:25 -05:00
|
|
|
export { executionWorkspaces } from "./execution_workspaces.js";
|
2026-03-17 09:36:35 -05:00
|
|
|
export { workspaceOperations } from "./workspace_operations.js";
|
2026-03-10 10:58:38 -05:00
|
|
|
export { workspaceRuntimeServices } from "./workspace_runtime_services.js";
|
2026-02-20 13:43:25 -06:00
|
|
|
export { projectGoals } from "./project_goals.js";
|
2026-02-16 13:31:52 -06:00
|
|
|
export { goals } from "./goals.js";
|
|
|
|
|
export { issues } from "./issues.js";
|
2026-04-04 13:56:04 -05:00
|
|
|
export { issueRelations } from "./issue_relations.js";
|
2026-03-19 08:39:24 -05:00
|
|
|
export { routines, routineTriggers, routineRuns } from "./routines.js";
|
2026-03-13 17:12:25 -05:00
|
|
|
export { issueWorkProducts } from "./issue_work_products.js";
|
2026-02-25 08:38:37 -06:00
|
|
|
export { labels } from "./labels.js";
|
|
|
|
|
export { issueLabels } from "./issue_labels.js";
|
2026-02-19 13:02:14 -06:00
|
|
|
export { issueApprovals } from "./issue_approvals.js";
|
Expand data model with companies, approvals, costs, and heartbeats
Add new DB schemas: companies, agent_api_keys, approvals, cost_events,
heartbeat_runs, issue_comments. Add corresponding shared types and
validators. Update existing schemas (agents, goals, issues, projects)
with new fields for company association, budgets, and richer metadata.
Generate initial Drizzle migration. Update seed data.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 09:07:22 -06:00
|
|
|
export { issueComments } from "./issue_comments.js";
|
2026-04-06 08:40:38 -05:00
|
|
|
export { issueExecutionDecisions } from "./issue_execution_decisions.js";
|
2026-03-26 08:19:16 -05:00
|
|
|
export { issueInboxArchives } from "./issue_inbox_archives.js";
|
2026-04-02 09:11:49 -05:00
|
|
|
export { feedbackVotes } from "./feedback_votes.js";
|
|
|
|
|
export { feedbackExports } from "./feedback_exports.js";
|
2026-03-06 08:34:19 -06:00
|
|
|
export { issueReadStates } from "./issue_read_states.js";
|
2026-02-20 10:31:56 -06:00
|
|
|
export { assets } from "./assets.js";
|
|
|
|
|
export { issueAttachments } from "./issue_attachments.js";
|
2026-03-13 21:30:48 -05:00
|
|
|
export { documents } from "./documents.js";
|
|
|
|
|
export { documentRevisions } from "./document_revisions.js";
|
|
|
|
|
export { issueDocuments } from "./issue_documents.js";
|
Expand data model with companies, approvals, costs, and heartbeats
Add new DB schemas: companies, agent_api_keys, approvals, cost_events,
heartbeat_runs, issue_comments. Add corresponding shared types and
validators. Update existing schemas (agents, goals, issues, projects)
with new fields for company association, budgets, and richer metadata.
Generate initial Drizzle migration. Update seed data.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 09:07:22 -06:00
|
|
|
export { heartbeatRuns } from "./heartbeat_runs.js";
|
2026-02-17 12:24:38 -06:00
|
|
|
export { heartbeatRunEvents } from "./heartbeat_run_events.js";
|
Expand data model with companies, approvals, costs, and heartbeats
Add new DB schemas: companies, agent_api_keys, approvals, cost_events,
heartbeat_runs, issue_comments. Add corresponding shared types and
validators. Update existing schemas (agents, goals, issues, projects)
with new fields for company association, budgets, and richer metadata.
Generate initial Drizzle migration. Update seed data.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 09:07:22 -06:00
|
|
|
export { costEvents } from "./cost_events.js";
|
2026-03-14 22:00:12 -05:00
|
|
|
export { financeEvents } from "./finance_events.js";
|
Expand data model with companies, approvals, costs, and heartbeats
Add new DB schemas: companies, agent_api_keys, approvals, cost_events,
heartbeat_runs, issue_comments. Add corresponding shared types and
validators. Update existing schemas (agents, goals, issues, projects)
with new fields for company association, budgets, and richer metadata.
Generate initial Drizzle migration. Update seed data.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 09:07:22 -06:00
|
|
|
export { approvals } from "./approvals.js";
|
2026-02-19 09:10:38 -06:00
|
|
|
export { approvalComments } from "./approval_comments.js";
|
2026-02-16 13:31:52 -06:00
|
|
|
export { activityLog } from "./activity_log.js";
|
2026-02-19 15:43:43 -06:00
|
|
|
export { companySecrets } from "./company_secrets.js";
|
|
|
|
|
export { companySecretVersions } from "./company_secret_versions.js";
|
2026-03-14 10:55:04 -05:00
|
|
|
export { companySkills } from "./company_skills.js";
|
2026-03-13 16:22:34 -05:00
|
|
|
export { plugins } from "./plugins.js";
|
|
|
|
|
export { pluginConfig } from "./plugin_config.js";
|
|
|
|
|
export { pluginCompanySettings } from "./plugin_company_settings.js";
|
|
|
|
|
export { pluginState } from "./plugin_state.js";
|
|
|
|
|
export { pluginEntities } from "./plugin_entities.js";
|
|
|
|
|
export { pluginJobs, pluginJobRuns } from "./plugin_jobs.js";
|
|
|
|
|
export { pluginWebhookDeliveries } from "./plugin_webhooks.js";
|
|
|
|
|
export { pluginLogs } from "./plugin_logs.js";
|