File tree Expand file tree Collapse file tree 6 files changed +26
-8
lines changed
src/main/java/com/airbyte/api Expand file tree Collapse file tree 6 files changed +26
-8
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ The Developer Portal UI can also be used to help build your integration by showi
2121### Gradle
2222
2323``` groovy
24- implementation 'com.airbyte.api:public-api:0.31.1 '
24+ implementation 'com.airbyte.api:public-api:0.33.0 '
2525```
2626<!-- End SDK Installation -->
2727
Original file line number Diff line number Diff line change @@ -607,4 +607,20 @@ Based on:
607607- OpenAPI Doc 1.0.0
608608- Speakeasy CLI 1.66.1 (2.75.2) https://github.com/speakeasy-api/speakeasy
609609### Releases
610- - [ Maven Central v0.31.1] https://central.sonatype.com/artifact/com.airbyte/api/0.31.1 - .
610+ - [ Maven Central v0.31.1] https://central.sonatype.com/artifact/com.airbyte/api/0.31.1 - .
611+
612+ ## 2023-08-03 00:13:15
613+ ### Changes
614+ Based on:
615+ - OpenAPI Doc 1.0.0
616+ - Speakeasy CLI 1.68.1 (2.77.1) https://github.com/speakeasy-api/speakeasy
617+ ### Releases
618+ - [ Maven Central v0.32.0] https://central.sonatype.com/artifact/com.airbyte/api/0.32.0 - .
619+
620+ ## 2023-08-04 00:13:25
621+ ### Changes
622+ Based on:
623+ - OpenAPI Doc 1.0.0
624+ - Speakeasy CLI 1.68.3 (2.81.1) https://github.com/speakeasy-api/speakeasy
625+ ### Releases
626+ - [ Maven Central v0.33.0] https://central.sonatype.com/artifact/com.airbyte/api/0.33.0 - .
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ configVersion: 1.0.0
22management :
33 docChecksum : bb2011e16a0ec78eb8a13a803e08b4aa
44 docVersion : 1.0.0
5- speakeasyVersion : 1.66.1
6- generationVersion : 2.75.2
5+ speakeasyVersion : 1.68.3
6+ generationVersion : 2.81.1
77generation :
88 comments :
99 disableComments : false
@@ -14,7 +14,7 @@ generation:
1414 tagNamespacingDisabled : false
1515 telemetryEnabled : true
1616java :
17- version : 0.31.1
17+ version : 0.33.0
1818 artifactID : api
1919 companyEmail : info@airbyte.com
2020 companyName : Airbyte
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ publishing {
4141 maven(MavenPublication ) {
4242 groupId = ' com.airbyte'
4343 artifactId = ' api'
44- version = ' 0.31.1 '
44+ version = ' 0.33.0 '
4545
4646 from components. java
4747
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ class SDKConfiguration {
1515 public int serverIdx = 0 ;
1616 public String language = "java" ;
1717 public String openapiDocVersion = "1.0.0" ;
18- public String sdkVersion = "0.31.1 " ;
19- public String genVersion = "2.75.2 " ;
18+ public String sdkVersion = "0.33.0 " ;
19+ public String genVersion = "2.81.1 " ;
2020
2121}
Original file line number Diff line number Diff line change 55package com .airbyte .api .utils ;
66
77import com .fasterxml .jackson .databind .DeserializationFeature ;
8+ import com .fasterxml .jackson .databind .SerializationFeature ;
89import com .fasterxml .jackson .databind .ObjectMapper ;
910
1011public class JSON {
1112 public static ObjectMapper getMapper () {
1213 ObjectMapper mapper = new ObjectMapper ();
1314 mapper .findAndRegisterModules ();
1415 mapper .configure (DeserializationFeature .FAIL_ON_UNKNOWN_PROPERTIES , false );
16+ mapper .configure (SerializationFeature .FAIL_ON_EMPTY_BEANS , false );
1517 return mapper ;
1618 }
1719}
You can’t perform that action at this time.
0 commit comments