Skip to content

Commit ecd6426

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0.0, Speakeasy CLI 1.120.0
1 parent ce390b2 commit ecd6426

File tree

13 files changed

+77
-30
lines changed

13 files changed

+77
-30
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.44.2'
24+
implementation 'com.airbyte.api:public-api:0.44.3'
2525
```
2626
<!-- End SDK Installation -->
2727

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -841,4 +841,14 @@ Based on:
841841
### Generated
842842
- [java v0.44.2] .
843843
### Releases
844-
- [Maven Central v0.44.2] https://central.sonatype.com/artifact/com.airbyte/api/0.44.2 - .
844+
- [Maven Central v0.44.2] https://central.sonatype.com/artifact/com.airbyte/api/0.44.2 - .
845+
846+
## 2023-11-14 21:52:02
847+
### Changes
848+
Based on:
849+
- OpenAPI Doc 1.0.0
850+
- Speakeasy CLI 1.120.0 (2.188.3) https://github.com/speakeasy-api/speakeasy
851+
### Generated
852+
- [java v0.44.3] .
853+
### Releases
854+
- [Maven Central v0.44.3] https://central.sonatype.com/artifact/com.airbyte/api/0.44.3 - .

docs/models/shared/DestinationCreateRequest.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33

44
## Fields
55

6-
| Field | Type | Required | Description | Example |
7-
| ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- |
8-
| `configuration` | *Object* | :heavy_check_mark: | The values required to configure the destination. | [object Object] |
9-
| `name` | *String* | :heavy_check_mark: | N/A | |
10-
| `workspaceId` | *String* | :heavy_check_mark: | N/A | |
6+
| Field | Type | Required | Description | Example |
7+
| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- |
8+
| `configuration` | *Object* | :heavy_check_mark: | The values required to configure the destination. | [object Object] |
9+
| `definitionId` | *String* | :heavy_minus_sign: | The UUID of the connector definition. One of name or definitionId must be provided. | |
10+
| `name` | *String* | :heavy_minus_sign: | Name of the destination type e.g. mysql. One of name or definitionId must be provided. | |
11+
| `workspaceId` | *String* | :heavy_check_mark: | N/A | |

docs/models/shared/OAuthActorNames.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
| `GITLAB` | gitlab |
1717
| `GOOGLE_ADS` | google-ads |
1818
| `GOOGLE_ANALYTICS_DATA_API` | google-analytics-data-api |
19-
| `GOOGLE_ANALYTICS_V4` | google-analytics-v4 |
19+
| `GOOGLE_DRIVE` | google-drive |
2020
| `GOOGLE_SEARCH_CONSOLE` | google-search-console |
2121
| `GOOGLE_SHEETS` | google-sheets |
2222
| `HARVEST` | harvest |
@@ -43,7 +43,6 @@
4343
| `TIKTOK_MARKETING` | tiktok-marketing |
4444
| `TRELLO` | trello |
4545
| `TYPEFORM` | typeform |
46-
| `XERO` | xero |
4746
| `YOUTUBE_ANALYTICS` | youtube-analytics |
4847
| `ZENDESK_CHAT` | zendesk-chat |
4948
| `ZENDESK_SUNSHINE` | zendesk-sunshine |

docs/models/shared/SourceCreateRequest.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33

44
## Fields
55

6-
| Field | Type | Required | Description | Example |
7-
| ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- |
8-
| `configuration` | *Object* | :heavy_check_mark: | The values required to configure the source. | [object Object] |
9-
| `name` | *String* | :heavy_check_mark: | N/A | |
10-
| `secretId` | *String* | :heavy_minus_sign: | Optional secretID obtained through the public API OAuth redirect flow. | |
11-
| `workspaceId` | *String* | :heavy_check_mark: | N/A | |
6+
| Field | Type | Required | Description | Example |
7+
| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- |
8+
| `configuration` | *Object* | :heavy_check_mark: | The values required to configure the source. | [object Object] |
9+
| `definitionId` | *String* | :heavy_minus_sign: | The UUID of the connector definition. One of name or definitionId must be provided. | |
10+
| `name` | *String* | :heavy_minus_sign: | Name of the source type e.g. mysql. One of name or definitionId must be provided. | |
11+
| `secretId` | *String* | :heavy_minus_sign: | Optional secretID obtained through the public API OAuth redirect flow. | |
12+
| `workspaceId` | *String* | :heavy_check_mark: | N/A | |

docs/sdks/destinations/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ public class Application {
3636
}})
3737
.build();
3838

39-
com.airbyte.api.models.shared.DestinationCreateRequest req = new DestinationCreateRequest("string", "string", "8360860a-d46e-48e6-af62-08e5ba5019ef");
39+
com.airbyte.api.models.shared.DestinationCreateRequest req = new DestinationCreateRequest("string", "8360860a-d46e-48e6-af62-08e5ba5019ef"){{
40+
definitionId = "3492fc0e-ef56-45b0-b0c7-3d4dfc9aec3c";
41+
name = "string";
42+
}};
4043

4144
CreateDestinationResponse res = sdk.destinations.createDestination(req);
4245

docs/sdks/sources/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ public class Application {
3737
}})
3838
.build();
3939

40-
com.airbyte.api.models.shared.SourceCreateRequest req = new SourceCreateRequest("string", "string", "a2cf0f31-f3dd-4c98-88c3-4bdfb109056a"){{
40+
com.airbyte.api.models.shared.SourceCreateRequest req = new SourceCreateRequest("string", "a2cf0f31-f3dd-4c98-88c3-4bdfb109056a"){{
41+
definitionId = "a6d6dedf-297b-4eb8-860e-3afe15240dda";
42+
name = "string";
4143
secretId = "string";
4244
}};
4345

@@ -201,7 +203,7 @@ public class Application {
201203
}})
202204
.build();
203205

204-
com.airbyte.api.models.shared.InitiateOauthRequest req = new InitiateOauthRequest("string", OAuthActorNames.GOOGLE_ADS, "fd28130d-9919-4ffa-a67d-4e12eb099447"){{
206+
com.airbyte.api.models.shared.InitiateOauthRequest req = new InitiateOauthRequest("string", OAuthActorNames.GITLAB, "fd28130d-9919-4ffa-a67d-4e12eb099447"){{
205207
oAuthInputConfiguration = new OAuthInputConfiguration();
206208
}};
207209

gen.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
configVersion: 1.0.0
22
management:
3-
docChecksum: 5b9a9a6f493e89e080a57e42997074be
3+
docChecksum: 0a67114cdc878ccfed29fbe00f4f928f
44
docVersion: 1.0.0
5-
speakeasyVersion: 1.119.1
5+
speakeasyVersion: 1.120.0
66
generationVersion: 2.188.3
77
generation:
88
comments: {}
@@ -16,7 +16,7 @@ features:
1616
globalSecurity: 2.81.1
1717
globalServerURLs: 2.82.0
1818
java:
19-
version: 0.44.2
19+
version: 0.44.3
2020
artifactID: api
2121
companyEmail: info@airbyte.com
2222
companyName: Airbyte

lib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ publishing {
5656
maven(MavenPublication) {
5757
groupId = 'com.airbyte'
5858
artifactId = 'api'
59-
version = '0.44.2'
59+
version = '0.44.3'
6060

6161
from components.java
6262

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ class SDKConfiguration {
1515
public int serverIdx = 0;
1616
public String language = "java";
1717
public String openapiDocVersion = "1.0.0";
18-
public String sdkVersion = "0.44.2";
18+
public String sdkVersion = "0.44.3";
1919
public String genVersion = "2.188.3";
20-
public String userAgent = "speakeasy-sdk/java 0.44.2 2.188.3 1.0.0 <no value>";
20+
public String userAgent = "speakeasy-sdk/java 0.44.3 2.188.3 1.0.0 <no value>";
2121

2222

2323
}

0 commit comments

Comments
 (0)