Skip to content

Commit

Permalink
Merge pull request #57 from airbytehq/speakeasy-sdk-regen-1691021597
Browse files Browse the repository at this point in the history
chore: speakeasy sdk regeneration - Generate
  • Loading branch information
terencecho authored Aug 7, 2023
2 parents 6233cae + 44ee5b0 commit 9f42125
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The Developer Portal UI can also be used to help build your integration by showi
### Gradle

```groovy
implementation 'com.airbyte.api:public-api:0.31.1'
implementation 'com.airbyte.api:public-api:0.33.0'
```
<!-- End SDK Installation -->

Expand Down
18 changes: 17 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -607,4 +607,20 @@ Based on:
- OpenAPI Doc 1.0.0
- Speakeasy CLI 1.66.1 (2.75.2) https://github.com/speakeasy-api/speakeasy
### Releases
- [Maven Central v0.31.1] https://central.sonatype.com/artifact/com.airbyte/api/0.31.1 - .
- [Maven Central v0.31.1] https://central.sonatype.com/artifact/com.airbyte/api/0.31.1 - .

## 2023-08-03 00:13:15
### Changes
Based on:
- OpenAPI Doc 1.0.0
- Speakeasy CLI 1.68.1 (2.77.1) https://github.com/speakeasy-api/speakeasy
### Releases
- [Maven Central v0.32.0] https://central.sonatype.com/artifact/com.airbyte/api/0.32.0 - .

## 2023-08-04 00:13:25
### Changes
Based on:
- OpenAPI Doc 1.0.0
- Speakeasy CLI 1.68.3 (2.81.1) https://github.com/speakeasy-api/speakeasy
### Releases
- [Maven Central v0.33.0] https://central.sonatype.com/artifact/com.airbyte/api/0.33.0 - .
6 changes: 3 additions & 3 deletions gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ configVersion: 1.0.0
management:
docChecksum: bb2011e16a0ec78eb8a13a803e08b4aa
docVersion: 1.0.0
speakeasyVersion: 1.66.1
generationVersion: 2.75.2
speakeasyVersion: 1.68.3
generationVersion: 2.81.1
generation:
comments:
disableComments: false
Expand All @@ -14,7 +14,7 @@ generation:
tagNamespacingDisabled: false
telemetryEnabled: true
java:
version: 0.31.1
version: 0.33.0
artifactID: api
companyEmail: [email protected]
companyName: Airbyte
Expand Down
2 changes: 1 addition & 1 deletion lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ publishing {
maven(MavenPublication) {
groupId = 'com.airbyte'
artifactId = 'api'
version = '0.31.1'
version = '0.33.0'

from components.java

Expand Down
4 changes: 2 additions & 2 deletions lib/src/main/java/com/airbyte/api/SDKConfiguration.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class SDKConfiguration {
public int serverIdx = 0;
public String language = "java";
public String openapiDocVersion = "1.0.0";
public String sdkVersion = "0.31.1";
public String genVersion = "2.75.2";
public String sdkVersion = "0.33.0";
public String genVersion = "2.81.1";

}
2 changes: 2 additions & 0 deletions lib/src/main/java/com/airbyte/api/utils/JSON.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@
package com.airbyte.api.utils;

import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.SerializationFeature;
import com.fasterxml.jackson.databind.ObjectMapper;

public class JSON {
public static ObjectMapper getMapper() {
ObjectMapper mapper = new ObjectMapper();
mapper.findAndRegisterModules();
mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
mapper.configure(SerializationFeature.FAIL_ON_EMPTY_BEANS, false);
return mapper;
}
}

0 comments on commit 9f42125

Please sign in to comment.