From 50c2e5f427b624ac8e5e507e4ae7455ffa6c3bf2 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Tue, 28 Apr 2026 17:52:45 +0100 Subject: [PATCH] Ensure that the ApiErrorCode type is exported --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index c7f2209..327e561 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,5 @@ export { OwlBoardClient } from './lib/client.js'; -export { ValidationError, ApiError } from './lib/errors.js'; +export { ValidationError, ApiError, type ApiErrorCode } from './lib/errors.js'; // Re-export API Schema types export type * from '@owlboard/api-schema-types'