Skip to content

Commit 121b777

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.30.1
1 parent 51e12c8 commit 121b777

File tree

6 files changed

+20
-12
lines changed

6 files changed

+20
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.7.3'
24+
implementation 'com.airbyte.api:public-api:0.7.4'
2525
```
2626
<!-- End SDK Installation -->
2727

RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,4 +247,12 @@ Based on:
247247
- OpenAPI Doc 1.0.0 https://prod.speakeasyapi.dev/v1/apis/public-api/version/v0.1.0/schema/download
248248
- Speakeasy CLI 1.30.0 (2.26.3) https://github.com/speakeasy-api/speakeasy
249249
### Releases
250-
- [Maven Central v0.7.3] https://central.sonatype.com/artifact/com.airbyte/api/0.7.3 - .
250+
- [Maven Central v0.7.3] https://central.sonatype.com/artifact/com.airbyte/api/0.7.3 - .
251+
252+
## 2023-05-12 00:11:30
253+
### Changes
254+
Based on:
255+
- OpenAPI Doc 1.0.0 https://prod.speakeasyapi.dev/v1/apis/public-api/version/v0.1.0/schema/download
256+
- Speakeasy CLI 1.30.1 (2.26.4) https://github.com/speakeasy-api/speakeasy
257+
### Releases
258+
- [Maven Central v0.7.4] https://central.sonatype.com/artifact/com.airbyte/api/0.7.4 - .

gen.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ configVersion: 1.0.0
22
management:
33
docChecksum: b33273ead3e10c4bc4f9bfeed6ad97a4
44
docVersion: 1.0.0
5-
speakeasyVersion: 1.30.0
6-
generationVersion: 2.26.3
5+
speakeasyVersion: 1.30.1
6+
generationVersion: 2.26.4
77
generation:
88
telemetryEnabled: true
99
sdkClassName: airbyte
1010
singleTagPerOp: false
1111
java:
12-
version: 0.7.3
12+
version: 0.7.4
1313
artifactID: api
1414
companyEmail: info@airbyte.com
1515
companyName: Airbyte

lib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ publishing {
4141
maven(MavenPublication) {
4242
groupId = 'com.airbyte'
4343
artifactId = 'api'
44-
version = '0.7.3'
44+
version = '0.7.4'
4545

4646
from components.java
4747

lib/src/main/java/com/airbyte/api/Airbyte.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ public class Airbyte {
3030
private com.airbyte.api.models.shared.Security _security;
3131
private String _serverUrl;
3232
private String _language = "java";
33-
private String _sdkVersion = "0.7.3";
34-
private String _genVersion = "2.26.3";
33+
private String _sdkVersion = "0.7.4";
34+
private String _genVersion = "2.26.4";
3535
/**
3636
* The Builder class allows the configuration of a new instance of the SDK.
3737
*/

lib/src/main/java/com/airbyte/api/utils/QueryParameters.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,12 @@ private static List<NameValuePair> parseDelimitedParams(QueryParamsMetadata quer
114114
if (queryParamsMetadata.explode) {
115115
params.add(new BasicNameValuePair(key, val));
116116
} else {
117-
items.add(String.format("%s,%s", key, val));
117+
items.add(String.format("%s%s%s", key, delimiter, val));
118118
}
119119
}
120120

121121
if (items.size() > 0) {
122-
params.add(new BasicNameValuePair(queryParamsMetadata.name, String.join(",", items)));
122+
params.add(new BasicNameValuePair(queryParamsMetadata.name, String.join(delimiter, items)));
123123
}
124124
break;
125125
}
@@ -142,12 +142,12 @@ private static List<NameValuePair> parseDelimitedParams(QueryParamsMetadata quer
142142
if (queryParamsMetadata.explode) {
143143
params.add(new BasicNameValuePair(metadata.name, Utils.valToString(val)));
144144
} else {
145-
items.add(String.format("%s,%s", metadata.name, Utils.valToString(val)));
145+
items.add(String.format("%s%s%s", metadata.name, delimiter, Utils.valToString(val)));
146146
}
147147
}
148148

149149
if (items.size() > 0) {
150-
params.add(new BasicNameValuePair(queryParamsMetadata.name, String.join(",", items)));
150+
params.add(new BasicNameValuePair(queryParamsMetadata.name, String.join(delimiter, items)));
151151
}
152152
break;
153153
}

0 commit comments

Comments
 (0)