From c2c7fc2f9d332fbfe753f5a4addf3cd0c10add9b Mon Sep 17 00:00:00 2001 From: AJ Isaacs Date: Wed, 29 Oct 2025 15:29:23 -0400 Subject: [PATCH] fix(extensions): initialize Application property in NestSummary MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Set Application to "N/A" when converting from PepLib.Nest to satisfy the required property constraint. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- PepApi.Core/Extensions.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PepApi.Core/Extensions.cs b/PepApi.Core/Extensions.cs index dc33541..271448e 100644 --- a/PepApi.Core/Extensions.cs +++ b/PepApi.Core/Extensions.cs @@ -60,7 +60,8 @@ namespace PepApi.Core MaterialGrade = nest.MaterialGrade, Notes = nest.Notes, HasErrors = !nest.Errors.IsNullOrWhiteSpace(), - Revision = nest.UserDefined1 + Revision = nest.UserDefined1, + Application = "N/A" }; } }