Files
pr-preview/node_modules/effect/dist/esm/ConfigError.js
T
space a71f801c3f feat: initial scaffold - backend, frontend, Prisma schema, Docker
- Prisma schema: User, Session, RepoConfig, Preview, Job, WebhookToken, NoConfigComment, AdminSettings
- Backend: auth (login/logout/me/first-user setup), webhook handler with HMAC verification, EC2 service, SSH service, deploy pipeline, job queue worker, cron workers
- Frontend: Login with first-user detection, Dashboard, PreviewDetail with live log streaming, Settings, Repos config, Admin panel, SetupWizard, Privacy page
- Docker Compose and Dockerfile for self-hosted deployment
- Uses bcryptjs for Node 24 compatibility

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-07-25 00:18:08 +02:00

107 lines
2.4 KiB
JavaScript

import * as internal from "./internal/configError.js";
/**
* @since 2.0.0
* @category symbols
*/
export const ConfigErrorTypeId = internal.ConfigErrorTypeId;
/**
* @since 2.0.0
* @category constructors
*/
export const And = internal.And;
/**
* @since 2.0.0
* @category constructors
*/
export const Or = internal.Or;
/**
* @since 2.0.0
* @category constructors
*/
export const MissingData = internal.MissingData;
/**
* @since 2.0.0
* @category constructors
*/
export const InvalidData = internal.InvalidData;
/**
* @since 2.0.0
* @category constructors
*/
export const SourceUnavailable = internal.SourceUnavailable;
/**
* @since 2.0.0
* @category constructors
*/
export const Unsupported = internal.Unsupported;
/**
* Returns `true` if the specified value is a `ConfigError`, `false` otherwise.
*
* @since 2.0.0
* @category refinements
*/
export const isConfigError = internal.isConfigError;
/**
* Returns `true` if the specified `ConfigError` is an `And`, `false` otherwise.
*
* @since 2.0.0
* @category refinements
*/
export const isAnd = internal.isAnd;
/**
* Returns `true` if the specified `ConfigError` is an `Or`, `false` otherwise.
*
* @since 2.0.0
* @category refinements
*/
export const isOr = internal.isOr;
/**
* Returns `true` if the specified `ConfigError` is an `InvalidData`, `false`
* otherwise.
*
* @since 2.0.0
* @category refinements
*/
export const isInvalidData = internal.isInvalidData;
/**
* Returns `true` if the specified `ConfigError` is an `MissingData`, `false`
* otherwise.
*
* @since 2.0.0
* @category refinements
*/
export const isMissingData = internal.isMissingData;
/**
* Returns `true` if the specified `ConfigError` contains only `MissingData` errors, `false` otherwise.
*
* @since 2.0.0
* @categer getters
*/
export const isMissingDataOnly = internal.isMissingDataOnly;
/**
* Returns `true` if the specified `ConfigError` is a `SourceUnavailable`,
* `false` otherwise.
*
* @since 2.0.0
* @category refinements
*/
export const isSourceUnavailable = internal.isSourceUnavailable;
/**
* Returns `true` if the specified `ConfigError` is an `Unsupported`, `false`
* otherwise.
*
* @since 2.0.0
* @category refinements
*/
export const isUnsupported = internal.isUnsupported;
/**
* @since 2.0.0
* @category utils
*/
export const prefixed = internal.prefixed;
/**
* @since 2.0.0
* @category folding
*/
export const reduceWithContext = internal.reduceWithContext;
//# sourceMappingURL=ConfigError.js.map