From 77ed3c3752478a06a82027cf8e5c455038ad6d82 Mon Sep 17 00:00:00 2001 From: SachinAkash01 Date: Wed, 27 Nov 2024 11:47:36 +0530 Subject: [PATCH] Fix failing integration tests --- .../resources/ballerina_sources/resources/expected_types.bal | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/openapi-integration-tests/src/test/resources/ballerina_sources/resources/expected_types.bal b/openapi-integration-tests/src/test/resources/ballerina_sources/resources/expected_types.bal index d7dd22840..a8e945459 100644 --- a/openapi-integration-tests/src/test/resources/ballerina_sources/resources/expected_types.bal +++ b/openapi-integration-tests/src/test/resources/ballerina_sources/resources/expected_types.bal @@ -102,4 +102,8 @@ public type ConnectionConfig record {| http:ProxyConfig proxy?; # Enables the inbound payload validation functionality which provided by the constraint package. Enabled by default boolean validation = true; + # Enables or disables relaxed data binding on the client side. Disabled by default. + # When enabled, the JSON data will be projected to the Ballerina record type and during the projection, + # nil values will be considered as optional fields and absent fields will be considered for nilable types + boolean laxDataBinding = true; |};