From 91ff6f3b908d9307d8794a9f81e37ae14c3a0fef Mon Sep 17 00:00:00 2001 From: Rob Marsal Date: Fri, 10 Oct 2025 14:41:16 +0100 Subject: [PATCH] fix: allow unknown properties to prevent breaking the SDK until a new version is released --- config.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/config.yml b/config.yml index c3321c3..0dd5473 100644 --- a/config.yml +++ b/config.yml @@ -15,4 +15,7 @@ scmConnection: scm:git:git@github.com:RevEngAI/sdk-java.git scmDeveloperConnection: scm:git:git@github.com:RevEngAI/sdk-java.git scmUrl: https://github.com/RevEngAI/sdk-java library: okhttp-gson -hideGenerationTimestamp: true \ No newline at end of file +# Do not include timestamps in the generated files to avoid unnecessary diffs +hideGenerationTimestamp: true +# Allow unknown properties to avoid breaking when the API adds new fields, and we haven't updated the SDK yet +failOnUnknownProperties: false \ No newline at end of file