From af00304b0cf09fae96913b796ea97a92fb63e80d Mon Sep 17 00:00:00 2001 From: Luis Pater Date: Mon, 8 Dec 2025 23:28:01 +0800 Subject: [PATCH] fix(antigravity): remove `exclusiveMaximum` from JSON during key deletion --- internal/runtime/executor/antigravity_executor.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/runtime/executor/antigravity_executor.go b/internal/runtime/executor/antigravity_executor.go index b2aa231f..730a32fb 100644 --- a/internal/runtime/executor/antigravity_executor.go +++ b/internal/runtime/executor/antigravity_executor.go @@ -536,6 +536,7 @@ func (e *AntigravityExecutor) buildRequest(ctx context.Context, auth *cliproxyau strJSON = util.DeleteKey(strJSON, "minLength") strJSON = util.DeleteKey(strJSON, "maxLength") strJSON = util.DeleteKey(strJSON, "exclusiveMinimum") + strJSON = util.DeleteKey(strJSON, "exclusiveMaximum") paths = make([]string, 0) util.Walk(gjson.Parse(strJSON), "", "anyOf", &paths)