Merge branch 'main' into feat/mobile-ocr

This commit is contained in:
Yaros
2026-05-04 10:34:24 +02:00
committed by GitHub
332 changed files with 3462 additions and 1590 deletions
@@ -1,9 +1,16 @@
import { HttpError } from '@oazapfts/runtime';
export interface ApiValidationError {
code: string;
path: (string | number)[];
message: string;
}
export interface ApiExceptionResponse {
message: string;
error?: string;
statusCode: number;
errors?: ApiValidationError[];
}
export interface ApiHttpError extends HttpError {