Skip to content

Commit 51e12c8

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.30.0
1 parent 506b8f5 commit 51e12c8

13 files changed

+26
-16
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.2'
24+
implementation 'com.airbyte.api:public-api:0.7.3'
2525
```
2626
<!-- End SDK Installation -->
2727

RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,4 +239,12 @@ Based on:
239239
- OpenAPI Doc 1.0.0 https://prod.speakeasyapi.dev/v1/apis/public-api/version/v0.1.0/schema/download
240240
- Speakeasy CLI 1.29.2 (2.26.2) https://github.com/speakeasy-api/speakeasy
241241
### Releases
242-
- [Maven Central v0.7.2] https://central.sonatype.com/artifact/com.airbyte/api/0.7.2 - .
242+
- [Maven Central v0.7.2] https://central.sonatype.com/artifact/com.airbyte/api/0.7.2 - .
243+
244+
## 2023-05-11 00:12:07
245+
### Changes
246+
Based on:
247+
- OpenAPI Doc 1.0.0 https://prod.speakeasyapi.dev/v1/apis/public-api/version/v0.1.0/schema/download
248+
- Speakeasy CLI 1.30.0 (2.26.3) https://github.com/speakeasy-api/speakeasy
249+
### Releases
250+
- [Maven Central v0.7.3] https://central.sonatype.com/artifact/com.airbyte/api/0.7.3 - .

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.29.2
6-
generationVersion: 2.26.2
5+
speakeasyVersion: 1.30.0
6+
generationVersion: 2.26.3
77
generation:
88
telemetryEnabled: true
99
sdkClassName: airbyte
1010
singleTagPerOp: false
1111
java:
12-
version: 0.7.2
12+
version: 0.7.3
1313
artifactID: api
1414
companyEmail: info@airbyte.com
1515
companyName: Airbyte

lib/build.gradle

Lines changed: 3 additions & 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.2'
44+
version = '0.7.3'
4545

4646
from components.java
4747

@@ -83,6 +83,8 @@ signing {
8383
}
8484

8585
javadoc {
86+
options.encoding = "UTF-8"
87+
8688
if(JavaVersion.current().isJava9Compatible()) {
8789
options.addBooleanOption('html5', true)
8890
}

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.2";
34-
private String _genVersion = "2.26.2";
33+
private String _sdkVersion = "0.7.3";
34+
private String _genVersion = "2.26.3";
3535
/**
3636
* The Builder class allows the configuration of a new instance of the SDK.
3737
*/

lib/src/main/java/com/airbyte/api/models/shared/ConnectionCreateRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public ConnectionCreateRequest withNamespaceFormat(String namespaceFormat) {
7575
}
7676

7777
/**
78-
* Prefix that will be prepended to the name of each stream when it is written to the destination (ex. \u201cairbyte_\u201d causes \u201cprojects\u201d =&gt; \u201cairbyte_projects\u201d).
78+
* Prefix that will be prepended to the name of each stream when it is written to the destination (ex. “airbyte_” causes “projects” =&gt; “airbyte_projects”).
7979
*/
8080
@JsonInclude(Include.NON_ABSENT)
8181
@JsonProperty("prefix")

lib/src/main/java/com/airbyte/api/models/shared/DestinationBigquery.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public DestinationBigquery withProjectId(String projectId) {
9090
}
9191

9292
/**
93-
* Interactive run type means that the query is executed as soon as possible, and these queries count towards concurrent rate limit and daily limit. Read more about interactive run type &lt;a href="https://cloud.google.com/bigquery/docs/running-queries#queries"&gt;here&lt;/a&gt;. Batch queries are queued and started as soon as idle resources are available in the BigQuery shared resource pool, which usually occurs within a few minutes. Batch queries don\u2019t count towards your concurrent rate limit. Read more about batch queries &lt;a href="https://cloud.google.com/bigquery/docs/running-queries#batch"&gt;here&lt;/a&gt;. The default "interactive" value is used if not set explicitly.
93+
* Interactive run type means that the query is executed as soon as possible, and these queries count towards concurrent rate limit and daily limit. Read more about interactive run type &lt;a href="https://cloud.google.com/bigquery/docs/running-queries#queries"&gt;here&lt;/a&gt;. Batch queries are queued and started as soon as idle resources are available in the BigQuery shared resource pool, which usually occurs within a few minutes. Batch queries don’t count towards your concurrent rate limit. Read more about batch queries &lt;a href="https://cloud.google.com/bigquery/docs/running-queries#batch"&gt;here&lt;/a&gt;. The default "interactive" value is used if not set explicitly.
9494
*/
9595
@JsonInclude(Include.NON_ABSENT)
9696
@JsonProperty("transformation_priority")

lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryTransformationQueryRunTypeEnum.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import com.fasterxml.jackson.annotation.JsonValue;
88

99
/**
10-
* DestinationBigqueryTransformationQueryRunTypeEnum - Interactive run type means that the query is executed as soon as possible, and these queries count towards concurrent rate limit and daily limit. Read more about interactive run type &lt;a href="https://cloud.google.com/bigquery/docs/running-queries#queries"&gt;here&lt;/a&gt;. Batch queries are queued and started as soon as idle resources are available in the BigQuery shared resource pool, which usually occurs within a few minutes. Batch queries don\u2019t count towards your concurrent rate limit. Read more about batch queries &lt;a href="https://cloud.google.com/bigquery/docs/running-queries#batch"&gt;here&lt;/a&gt;. The default "interactive" value is used if not set explicitly.
10+
* DestinationBigqueryTransformationQueryRunTypeEnum - Interactive run type means that the query is executed as soon as possible, and these queries count towards concurrent rate limit and daily limit. Read more about interactive run type &lt;a href="https://cloud.google.com/bigquery/docs/running-queries#queries"&gt;here&lt;/a&gt;. Batch queries are queued and started as soon as idle resources are available in the BigQuery shared resource pool, which usually occurs within a few minutes. Batch queries don’t count towards your concurrent rate limit. Read more about batch queries &lt;a href="https://cloud.google.com/bigquery/docs/running-queries#batch"&gt;here&lt;/a&gt;. The default "interactive" value is used if not set explicitly.
1111
*/
1212
public enum DestinationBigqueryTransformationQueryRunTypeEnum {
1313
INTERACTIVE("interactive"),

lib/src/main/java/com/airbyte/api/models/shared/SourceFacebookMarketing.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*/
1919
public class SourceFacebookMarketing {
2020
/**
21-
* The value of the generated access token. From your App\u2019s Dashboard, click on "Marketing API" then "Tools". Select permissions &lt;b&gt;ads_management, ads_read, read_insights, business_management&lt;/b&gt;. Then click on "Get token". See the &lt;a href="https://docs.airbyte.com/integrations/sources/facebook-marketing"&gt;docs&lt;/a&gt; for more information.
21+
* The value of the generated access token. From your App’s Dashboard, click on "Marketing API" then "Tools". Select permissions &lt;b&gt;ads_management, ads_read, read_insights, business_management&lt;/b&gt;. Then click on "Get token". See the &lt;a href="https://docs.airbyte.com/integrations/sources/facebook-marketing"&gt;docs&lt;/a&gt; for more information.
2222
*/
2323
@JsonProperty("access_token")
2424
public String accessToken;

lib/src/main/java/com/airbyte/api/models/shared/SourceMicrosoftTeamsCredentialsAuthenticateViaMicrosoft.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public SourceMicrosoftTeamsCredentialsAuthenticateViaMicrosoft withClientSecret(
4444
}
4545

4646
/**
47-
* A globally unique identifier (GUID) that is different than your organization name or domain. Follow these steps to obtain: open one of the Teams where you belong inside the Teams Application -&gt; Click on the \u2026 next to the Team title -&gt; Click on Get link to team -&gt; Copy the link to the team and grab the tenant ID form the URL
47+
* A globally unique identifier (GUID) that is different than your organization name or domain. Follow these steps to obtain: open one of the Teams where you belong inside the Teams Application -&gt; Click on the next to the Team title -&gt; Click on Get link to team -&gt; Copy the link to the team and grab the tenant ID form the URL
4848
*/
4949
@JsonProperty("tenant_id")
5050
public String tenantId;

0 commit comments

Comments
 (0)