From fe194ab7dc20ea67ae3fa56e3c1788d07a13d00a Mon Sep 17 00:00:00 2001 From: stainless-bot Date: Wed, 23 Oct 2024 20:57:53 +0000 Subject: [PATCH] feat(api): api update --- .../src/main/kotlin/com/braintrustdata/api/core/Values.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/braintrust-java-core/src/main/kotlin/com/braintrustdata/api/core/Values.kt b/braintrust-java-core/src/main/kotlin/com/braintrustdata/api/core/Values.kt index 45e19b1c..1dfdbfa7 100755 --- a/braintrust-java-core/src/main/kotlin/com/braintrustdata/api/core/Values.kt +++ b/braintrust-java-core/src/main/kotlin/com/braintrustdata/api/core/Values.kt @@ -142,6 +142,8 @@ sealed class JsonField { // This filter should not be used directly and should instead use the @ExcludeMissing annotation class IsMissing { override fun equals(other: Any?): Boolean = other is JsonMissing + + override fun hashCode(): Int = Objects.hash() } class Deserializer(private val type: JavaType? = null) :