Skip to content

Commit 6370863

Browse files
authored
Merge pull request #100 from airbytehq/speakeasy-sdk-regen-1721179278
chore: 🐝 Update SDK - Generate
2 parents 090e850 + e1e312a commit 6370863

File tree

7 files changed

+24
-14
lines changed

7 files changed

+24
-14
lines changed

.speakeasy/gen.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ management:
55
docVersion: 1.0.0
66
speakeasyVersion: 1.337.1
77
generationVersion: 2.373.2
8-
releaseVersion: 1.5.6
9-
configChecksum: 78f04711a7ee3d2616ef89625c4ba8fc
8+
releaseVersion: 1.5.7
9+
configChecksum: 665b60af38afd9b8c5f5519a98ea7088
1010
repoURL: https://github.com/airbytehq/airbyte-api-java-sdk.git
1111
repoSubDirectory: .
1212
published: true

.speakeasy/workflow.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ sources:
99
- main
1010
sample-source:
1111
sourceNamespace: my-source
12-
sourceRevisionDigest: sha256:ae1458922028c585899e924550deb102771e785502796350b07e0318e63dc3c5
13-
sourceBlobDigest: sha256:f8ca9ad89a0c2b7c34a61f37b54738b3145684d626855b551abe57898a3837be
12+
sourceRevisionDigest: sha256:84c035221761f746e65967de0ed9c8b01ff1d97fff7111d106df2710fd305b3d
13+
sourceBlobDigest: sha256:0a3016ebd2c390c0064f08603f883d730712411cb731216658d123d67213563a
1414
tags:
1515
- latest
1616
- main
@@ -24,8 +24,8 @@ targets:
2424
testing:
2525
source: sample-source
2626
sourceNamespace: my-source
27-
sourceRevisionDigest: sha256:ae1458922028c585899e924550deb102771e785502796350b07e0318e63dc3c5
28-
sourceBlobDigest: sha256:f8ca9ad89a0c2b7c34a61f37b54738b3145684d626855b551abe57898a3837be
27+
sourceRevisionDigest: sha256:84c035221761f746e65967de0ed9c8b01ff1d97fff7111d106df2710fd305b3d
28+
sourceBlobDigest: sha256:0a3016ebd2c390c0064f08603f883d730712411cb731216658d123d67213563a
2929
outLocation: /github/workspace/repo
3030
workflow:
3131
workflowVersion: 1.0.0

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ The samples below show how a published SDK artifact is used:
2626

2727
Gradle:
2828
```groovy
29-
implementation 'com.airbyte:api:1.5.6'
29+
implementation 'com.airbyte:api:1.5.7'
3030
```
3131

3232
Maven:
3333
```xml
3434
<dependency>
3535
<groupId>com.airbyte</groupId>
3636
<artifactId>api</artifactId>
37-
<version>1.5.6</version>
37+
<version>1.5.7</version>
3838
</dependency>
3939
```
4040

RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1141,4 +1141,14 @@ Based on:
11411141
### Generated
11421142
- [java v1.5.6] .
11431143
### Releases
1144-
- [Maven Central v1.5.6] https://central.sonatype.com/artifact/com.airbyte/api/1.5.6 - .
1144+
- [Maven Central v1.5.6] https://central.sonatype.com/artifact/com.airbyte/api/1.5.6 - .
1145+
1146+
## 2024-07-17 01:21:13
1147+
### Changes
1148+
Based on:
1149+
- OpenAPI Doc
1150+
- Speakeasy CLI 1.337.1 (2.373.2) https://github.com/speakeasy-api/speakeasy
1151+
### Generated
1152+
- [java v1.5.7] .
1153+
### Releases
1154+
- [Maven Central v1.5.7] https://central.sonatype.com/artifact/com.airbyte/api/1.5.7 - .

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ tasks.withType(Javadoc) {
6161
options.addStringOption('Xdoclint:none', '-quiet')
6262
}
6363
group = "com.airbyte"
64-
version = "1.5.6"
64+
version = "1.5.7"
6565

6666
sourcesJar {
6767
archiveBaseName = "api"
@@ -98,7 +98,7 @@ publishing {
9898
maven(MavenPublication) {
9999
groupId = 'com.airbyte'
100100
artifactId = 'api'
101-
version = '1.5.6'
101+
version = '1.5.7'
102102

103103
from components.java
104104

gen.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ generation:
1111
auth:
1212
oAuth2ClientCredentialsEnabled: true
1313
java:
14-
version: 1.5.6
14+
version: 1.5.7
1515
additionalDependencies: []
1616
additionalPlugins: []
1717
artifactID: api

src/main/java/com/airbyte/api/SDKConfiguration.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ public Optional<SecuritySource> securitySource() {
2222
public int serverIdx = 0;
2323
public String language = "java";
2424
public String openapiDocVersion = "1.0.0";
25-
public String sdkVersion = "1.5.6";
25+
public String sdkVersion = "1.5.7";
2626
public String genVersion = "2.373.2";
27-
public String userAgent = "speakeasy-sdk/java 1.5.6 2.373.2 1.0.0 com.airbyte.api";
27+
public String userAgent = "speakeasy-sdk/java 1.5.7 2.373.2 1.0.0 com.airbyte.api";
2828

2929
private com.airbyte.api.utils.Hooks _hooks = createHooks();
3030

0 commit comments

Comments
 (0)