⬆️ Upgrade Sentry and FastAPI (#2181)

* ⬆️ Update Sentry and FastAPI

* 🎨 Auto format and update with pre-commit

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Patrick Arminio
2026-02-12 11:42:15 +00:00
committed by GitHub
parent db4532678c
commit 51295d09b7
4 changed files with 316 additions and 11 deletions

View File

@@ -544,6 +544,13 @@ export const ValidationErrorSchema = {
type: {
type: 'string',
title: 'Error Type'
},
input: {
title: 'Input'
},
ctx: {
type: 'object',
title: 'Context'
}
},
type: 'object',

View File

@@ -107,6 +107,10 @@ export type ValidationError = {
loc: Array<(string | number)>;
msg: string;
type: string;
input?: unknown;
ctx?: {
[key: string]: unknown;
};
};
export type ItemsReadItemsData = {