Introduce testEnvironment() on ServerAdapterModule with structured pass/warn/fail diagnostics for all four adapter types (claude_local, codex_local, process, http). Adds POST test-environment endpoint, shared types/validators, adapter test implementations, and UI API client. Includes asset type foundations used by related features. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
172 lines
3.7 KiB
TypeScript
172 lines
3.7 KiB
TypeScript
export {
|
|
COMPANY_STATUSES,
|
|
AGENT_STATUSES,
|
|
AGENT_ADAPTER_TYPES,
|
|
AGENT_ROLES,
|
|
ISSUE_STATUSES,
|
|
ISSUE_PRIORITIES,
|
|
GOAL_LEVELS,
|
|
GOAL_STATUSES,
|
|
PROJECT_STATUSES,
|
|
APPROVAL_TYPES,
|
|
APPROVAL_STATUSES,
|
|
SECRET_PROVIDERS,
|
|
STORAGE_PROVIDERS,
|
|
HEARTBEAT_INVOCATION_SOURCES,
|
|
HEARTBEAT_RUN_STATUSES,
|
|
WAKEUP_TRIGGER_DETAILS,
|
|
WAKEUP_REQUEST_STATUSES,
|
|
LIVE_EVENT_TYPES,
|
|
type CompanyStatus,
|
|
type AgentStatus,
|
|
type AgentAdapterType,
|
|
type AgentRole,
|
|
type IssueStatus,
|
|
type IssuePriority,
|
|
type GoalLevel,
|
|
type GoalStatus,
|
|
type ProjectStatus,
|
|
type ApprovalType,
|
|
type ApprovalStatus,
|
|
type SecretProvider,
|
|
type StorageProvider,
|
|
type HeartbeatInvocationSource,
|
|
type HeartbeatRunStatus,
|
|
type WakeupTriggerDetail,
|
|
type WakeupRequestStatus,
|
|
type LiveEventType,
|
|
} from "./constants.js";
|
|
|
|
export type {
|
|
Company,
|
|
Agent,
|
|
AgentPermissions,
|
|
AgentKeyCreated,
|
|
AgentConfigRevision,
|
|
AdapterEnvironmentCheckLevel,
|
|
AdapterEnvironmentTestStatus,
|
|
AdapterEnvironmentCheck,
|
|
AdapterEnvironmentTestResult,
|
|
AssetImage,
|
|
Project,
|
|
Issue,
|
|
IssueComment,
|
|
IssueAttachment,
|
|
Goal,
|
|
Approval,
|
|
ApprovalComment,
|
|
CostEvent,
|
|
CostSummary,
|
|
CostByAgent,
|
|
HeartbeatRun,
|
|
HeartbeatRunEvent,
|
|
AgentRuntimeState,
|
|
AgentTaskSession,
|
|
AgentWakeupRequest,
|
|
LiveEvent,
|
|
DashboardSummary,
|
|
ActivityEvent,
|
|
SidebarBadges,
|
|
EnvBinding,
|
|
AgentEnvConfig,
|
|
CompanySecret,
|
|
SecretProviderDescriptor,
|
|
} from "./types/index.js";
|
|
|
|
export {
|
|
createCompanySchema,
|
|
updateCompanySchema,
|
|
type CreateCompany,
|
|
type UpdateCompany,
|
|
createAgentSchema,
|
|
createAgentHireSchema,
|
|
updateAgentSchema,
|
|
createAgentKeySchema,
|
|
wakeAgentSchema,
|
|
resetAgentSessionSchema,
|
|
testAdapterEnvironmentSchema,
|
|
agentPermissionsSchema,
|
|
updateAgentPermissionsSchema,
|
|
type CreateAgent,
|
|
type CreateAgentHire,
|
|
type UpdateAgent,
|
|
type CreateAgentKey,
|
|
type WakeAgent,
|
|
type ResetAgentSession,
|
|
type TestAdapterEnvironment,
|
|
type UpdateAgentPermissions,
|
|
createProjectSchema,
|
|
updateProjectSchema,
|
|
type CreateProject,
|
|
type UpdateProject,
|
|
createIssueSchema,
|
|
updateIssueSchema,
|
|
checkoutIssueSchema,
|
|
addIssueCommentSchema,
|
|
linkIssueApprovalSchema,
|
|
createIssueAttachmentMetadataSchema,
|
|
type CreateIssue,
|
|
type UpdateIssue,
|
|
type CheckoutIssue,
|
|
type AddIssueComment,
|
|
type LinkIssueApproval,
|
|
type CreateIssueAttachmentMetadata,
|
|
createGoalSchema,
|
|
updateGoalSchema,
|
|
type CreateGoal,
|
|
type UpdateGoal,
|
|
createApprovalSchema,
|
|
resolveApprovalSchema,
|
|
requestApprovalRevisionSchema,
|
|
resubmitApprovalSchema,
|
|
addApprovalCommentSchema,
|
|
type CreateApproval,
|
|
type ResolveApproval,
|
|
type RequestApprovalRevision,
|
|
type ResubmitApproval,
|
|
type AddApprovalComment,
|
|
envBindingPlainSchema,
|
|
envBindingSecretRefSchema,
|
|
envBindingSchema,
|
|
envConfigSchema,
|
|
createSecretSchema,
|
|
rotateSecretSchema,
|
|
updateSecretSchema,
|
|
type CreateSecret,
|
|
type RotateSecret,
|
|
type UpdateSecret,
|
|
createCostEventSchema,
|
|
updateBudgetSchema,
|
|
createAssetImageMetadataSchema,
|
|
type CreateCostEvent,
|
|
type UpdateBudget,
|
|
type CreateAssetImageMetadata,
|
|
} from "./validators/index.js";
|
|
|
|
export { API_PREFIX, API } from "./api.js";
|
|
|
|
export {
|
|
paperclipConfigSchema,
|
|
configMetaSchema,
|
|
llmConfigSchema,
|
|
databaseConfigSchema,
|
|
loggingConfigSchema,
|
|
serverConfigSchema,
|
|
secretsConfigSchema,
|
|
storageConfigSchema,
|
|
storageLocalDiskConfigSchema,
|
|
storageS3ConfigSchema,
|
|
secretsLocalEncryptedConfigSchema,
|
|
type PaperclipConfig,
|
|
type LlmConfig,
|
|
type DatabaseConfig,
|
|
type LoggingConfig,
|
|
type ServerConfig,
|
|
type StorageConfig,
|
|
type StorageLocalDiskConfig,
|
|
type StorageS3Config,
|
|
type SecretsConfig,
|
|
type SecretsLocalEncryptedConfig,
|
|
type ConfigMeta,
|
|
} from "./config-schema.js";
|