From d84cffb4d7d16a1b75d4d0d0643df656d74d802b Mon Sep 17 00:00:00 2001 From: Lasse Hyldahl Jensen Date: Tue, 21 Feb 2023 20:25:00 +0100 Subject: [PATCH] Rename field `error_code` to `errorCode` in `ValidationErrorItem` --- src/framework/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/framework/types.ts b/src/framework/types.ts index 57601da0..6f7c58a4 100644 --- a/src/framework/types.ts +++ b/src/framework/types.ts @@ -558,7 +558,7 @@ export interface ValidationError { export interface ValidationErrorItem { path: string; message: string; - error_code?: string; + errorCode?: string; } interface ErrorHeaders {