Skip to content

Commit 92485ff

Browse files
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.296.1 (#90)
Co-authored-by: speakeasybot <[email protected]>
1 parent 73babe5 commit 92485ff

File tree

7 files changed

+23
-14
lines changed

7 files changed

+23
-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.296.1
77
generationVersion: 2.338.1
8-
releaseVersion: 1.4.0
9-
configChecksum: d1d49e1d5acec0edd00c23da3fff400f
8+
releaseVersion: 1.4.1
9+
configChecksum: 7f0146c31f8d45dea6e579afdf257bf7
1010
repoURL: https://github.com/airbytehq/airbyte-api-java-sdk.git
1111
repoSubDirectory: .
1212
published: true

.speakeasy/workflow.lock

+4-5
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ speakeasyVersion: 1.296.1
22
sources:
33
my-source:
44
sourceNamespace: my-source
5-
sourceRevisionDigest: sha256:9ed7623b652ec818569cb47fce0127fe6783e16704ab9adf9e46b71af8aae9ec
6-
sourceBlobDigest: sha256:8875c40e813888ed64de348464aa44c0e6e46fe0b90982cbfbe08c9801a87c99
5+
sourceRevisionDigest: sha256:cbe1ea7fa525a68f8250c64f057920dfb5ed187159ed0f287f2e34fa958815dd
6+
sourceBlobDigest: sha256:9e76a245dfc56887dcadaf1e1f0ffe6c0abbe10e9e25b6ad3093ad778055c1a2
77
tags:
88
- latest
99
- main
1010
targets:
1111
airbyte-api:
1212
source: my-source
1313
sourceNamespace: my-source
14-
sourceRevisionDigest: sha256:9ed7623b652ec818569cb47fce0127fe6783e16704ab9adf9e46b71af8aae9ec
15-
sourceBlobDigest: sha256:8875c40e813888ed64de348464aa44c0e6e46fe0b90982cbfbe08c9801a87c99
14+
sourceRevisionDigest: sha256:cbe1ea7fa525a68f8250c64f057920dfb5ed187159ed0f287f2e34fa958815dd
15+
sourceBlobDigest: sha256:9e76a245dfc56887dcadaf1e1f0ffe6c0abbe10e9e25b6ad3093ad778055c1a2
1616
outLocation: /github/workspace/repo
1717
workflow:
1818
workflowVersion: 1.0.0
@@ -33,4 +33,3 @@ workflow:
3333
ossrhPassword: $OSSRH_PASSWORD
3434
gpgSecretKey: $JAVA_GPG_SECRET_KEY
3535
gpgPassPhrase: $JAVA_GPG_PASSPHRASE
36-
useSonatypeLegacy: true

README.md

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

2525
Gradle:
2626
```groovy
27-
implementation 'com.airbyte.api:public-api:1.4.0'
27+
implementation 'com.airbyte.api:public-api:1.4.1'
2828
```
2929

3030
Maven:
3131
```xml
3232
<dependency>
3333
<groupId>com.airbyte.api</groupId>
3434
<artifactId>public-api</artifactId>
35-
<version>1.4.0</version>
35+
<version>1.4.1</version>
3636
</dependency>
3737
```
3838

RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1061,4 +1061,14 @@ Based on:
10611061
### Generated
10621062
- [java v1.4.0] .
10631063
### Releases
1064-
- [Maven Central v1.4.0] https://central.sonatype.com/artifact/com.airbyte/api/1.4.0 - .
1064+
- [Maven Central v1.4.0] https://central.sonatype.com/artifact/com.airbyte/api/1.4.0 - .
1065+
1066+
## 2024-05-25 00:15:47
1067+
### Changes
1068+
Based on:
1069+
- OpenAPI Doc
1070+
- Speakeasy CLI 1.296.1 (2.338.1) https://github.com/speakeasy-api/speakeasy
1071+
### Generated
1072+
- [java v1.4.1] .
1073+
### Releases
1074+
- [Maven Central v1.4.1] https://central.sonatype.com/artifact/com.airbyte/api/1.4.1 - .

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ publishing {
6565
maven(MavenPublication) {
6666
groupId = 'com.airbyte'
6767
artifactId = 'api'
68-
version = '1.4.0'
68+
version = '1.4.1'
6969

7070
from components.java
7171

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.4.0
14+
version: 1.4.1
1515
additionalDependencies: []
1616
artifactID: api
1717
clientServerStatusCodesAsErrors: true

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ public Optional<SecuritySource> securitySource() {
2121
public int serverIdx = 0;
2222
public String language = "java";
2323
public String openapiDocVersion = "1.0.0";
24-
public String sdkVersion = "1.4.0";
24+
public String sdkVersion = "1.4.1";
2525
public String genVersion = "2.338.1";
26-
public String userAgent = "speakeasy-sdk/java 1.4.0 2.338.1 1.0.0 com.airbyte.api";
26+
public String userAgent = "speakeasy-sdk/java 1.4.1 2.338.1 1.0.0 com.airbyte.api";
2727

2828
private com.airbyte.api.utils.Hooks _hooks = new com.airbyte.api.utils.Hooks();
2929

0 commit comments

Comments
 (0)