From 9fe0b5facfc5d936c285b9618532a57517884b22 Mon Sep 17 00:00:00 2001 From: Alexander Cerutti Date: Thu, 25 Sep 2025 18:20:16 +0200 Subject: [PATCH] Fixed usage of deprecated Field interface Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/schemas/PassFieldContent.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/schemas/PassFieldContent.ts b/src/schemas/PassFieldContent.ts index a615789..586cac8 100644 --- a/src/schemas/PassFieldContent.ts +++ b/src/schemas/PassFieldContent.ts @@ -63,7 +63,7 @@ export interface PassFieldContentWithRow extends PassFieldContent { */ export type FieldWithRow = PassFieldContentWithRow; -export const PassFieldContent = Joi.object().keys({ +export const PassFieldContent = Joi.object().keys({ attributedValue: Joi.alternatives( Joi.string().allow(""), Joi.number(),