Skip to content

Commit cd29301

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.568.0
1 parent 04b5134 commit cd29301

File tree

276 files changed

+14954
-1841
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

276 files changed

+14954
-1841
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
**/.speakeasy/temp/
2+
**/.speakeasy/logs/
13
.speakeasy/reports
24
# Ignore IDE-specific configs
35
.project

.speakeasy/gen.lock

Lines changed: 282 additions & 114 deletions
Large diffs are not rendered by default.

.speakeasy/workflow.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
speakeasyVersion: 1.533.0
1+
speakeasyVersion: 1.568.0
22
sources:
33
my-source:
44
sourceNamespace: my-source
@@ -9,11 +9,11 @@ sources:
99
- main
1010
sample-source:
1111
sourceNamespace: my-source
12-
sourceRevisionDigest: sha256:5c4ac3b133a9b0d18d00a131ead78279d8d36a49e31f5f562d1a200fa11caec3
13-
sourceBlobDigest: sha256:7866415b04810057478603476c27c4042cd2561a5f539d7181e4d5eac8ffca0a
12+
sourceRevisionDigest: sha256:b87adaf6ee8ca1deb3c9ea5893fe94b78c3480643242a52bc6fd8e071efd8f93
13+
sourceBlobDigest: sha256:22d318697ade2dfa10f829c8dcd40b316fbbc209e39ea736212b787a34cf4fc0
1414
tags:
1515
- latest
16-
- speakeasy-sdk-regen-1733962674
16+
- speakeasy-sdk-regen-1747700380
1717
- 1.0.0
1818
targets:
1919
airbyte-api:
@@ -24,10 +24,10 @@ targets:
2424
testing:
2525
source: sample-source
2626
sourceNamespace: my-source
27-
sourceRevisionDigest: sha256:5c4ac3b133a9b0d18d00a131ead78279d8d36a49e31f5f562d1a200fa11caec3
28-
sourceBlobDigest: sha256:7866415b04810057478603476c27c4042cd2561a5f539d7181e4d5eac8ffca0a
27+
sourceRevisionDigest: sha256:b87adaf6ee8ca1deb3c9ea5893fe94b78c3480643242a52bc6fd8e071efd8f93
28+
sourceBlobDigest: sha256:22d318697ade2dfa10f829c8dcd40b316fbbc209e39ea736212b787a34cf4fc0
2929
codeSamplesNamespace: my-source-java-code-samples
30-
codeSamplesRevisionDigest: sha256:b4a63e27822e0b961739d46a6b15049756d339c93f1008fae50a8052afce6cd9
30+
codeSamplesRevisionDigest: sha256:2abfad25294cef11f35ff8f3ae3837ce16de0ae48fd4a254906ba8dbb547a19a
3131
workflow:
3232
workflowVersion: 1.0.0
3333
speakeasyVersion: latest

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ The samples below show how a published SDK artifact is used:
4242

4343
Gradle:
4444
```groovy
45-
implementation 'com.airbyte:api:2.0.0'
45+
implementation 'com.airbyte:api:2.1.0'
4646
```
4747

4848
Maven:
4949
```xml
5050
<dependency>
5151
<groupId>com.airbyte</groupId>
5252
<artifactId>api</artifactId>
53-
<version>2.0.0</version>
53+
<version>2.1.0</version>
5454
</dependency>
5555
```
5656

@@ -122,6 +122,7 @@ public class Application {
122122
.destinationId("e478de0d-a3a0-475c-b019-25f7dd29e281")
123123
.sourceId("95e66a59-8045-4307-9678-63bc3c9b8c93")
124124
.name("Postgres-to-Bigquery")
125+
.namespaceFormat("${SOURCE_NAMESPACE}")
125126
.build();
126127

127128
CreateConnectionResponse res = sdk.connections().createConnection()
@@ -175,6 +176,7 @@ public class Application {
175176
.destinationId("e478de0d-a3a0-475c-b019-25f7dd29e281")
176177
.sourceId("95e66a59-8045-4307-9678-63bc3c9b8c93")
177178
.name("Postgres-to-Bigquery")
179+
.namespaceFormat("${SOURCE_NAMESPACE}")
178180
.build();
179181

180182
CreateConnectionResponse res = sdk.connections().createConnection()
@@ -242,6 +244,7 @@ public class Application {
242244

243245
### [organizations()](docs/sdks/organizations/README.md)
244246

247+
* [createOrUpdateOrganizationOAuthCredentials](docs/sdks/organizations/README.md#createorupdateorganizationoauthcredentials) - Create OAuth override credentials for an organization and source type.
245248
* [listOrganizationsForUser](docs/sdks/organizations/README.md#listorganizationsforuser) - List all organizations for a user
246249

247250
### [permissions()](docs/sdks/permissions/README.md)
@@ -336,6 +339,7 @@ public class Application {
336339
.destinationId("e478de0d-a3a0-475c-b019-25f7dd29e281")
337340
.sourceId("95e66a59-8045-4307-9678-63bc3c9b8c93")
338341
.name("Postgres-to-Bigquery")
342+
.namespaceFormat("${SOURCE_NAMESPACE}")
339343
.build();
340344

341345
CreateConnectionResponse res = sdk.connections().createConnection()
@@ -382,6 +386,7 @@ public class Application {
382386
.destinationId("e478de0d-a3a0-475c-b019-25f7dd29e281")
383387
.sourceId("95e66a59-8045-4307-9678-63bc3c9b8c93")
384388
.name("Postgres-to-Bigquery")
389+
.namespaceFormat("${SOURCE_NAMESPACE}")
385390
.build();
386391

387392
CreateConnectionResponse res = sdk.connections().createConnection()

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1201,4 +1201,14 @@ Based on:
12011201
### Generated
12021202
- [java v2.0.0] .
12031203
### Releases
1204-
- [Maven Central v2.0.0] https://central.sonatype.com/artifact/com.airbyte/api/2.0.0 - .
1204+
- [Maven Central v2.0.0] https://central.sonatype.com/artifact/com.airbyte/api/2.0.0 - .
1205+
1206+
## 2025-06-23 00:20:49
1207+
### Changes
1208+
Based on:
1209+
- OpenAPI Doc
1210+
- Speakeasy CLI 1.568.0 (2.632.2) https://github.com/speakeasy-api/speakeasy
1211+
### Generated
1212+
- [java v2.1.0] .
1213+
### Releases
1214+
- [Maven Central v2.1.0] https://central.sonatype.com/artifact/com.airbyte/api/2.1.0 - .

USAGE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public class Application {
2424
.destinationId("e478de0d-a3a0-475c-b019-25f7dd29e281")
2525
.sourceId("95e66a59-8045-4307-9678-63bc3c9b8c93")
2626
.name("Postgres-to-Bigquery")
27+
.namespaceFormat("${SOURCE_NAMESPACE}")
2728
.build();
2829

2930
CreateConnectionResponse res = sdk.connections().createConnection()

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ publishing {
103103
// https://github.com/gradle/gradle/issues/18619
104104
groupId = "com.airbyte"
105105
artifactId = "api"
106-
version = "2.0.0"
106+
version = "2.1.0"
107107

108108
from components.java
109109

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# CreateOrUpdateOrganizationOAuthCredentialsRequest
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- |
8+
| `organizationOAuthCredentialsRequest` | [OrganizationOAuthCredentialsRequest](../../models/shared/OrganizationOAuthCredentialsRequest.md) | :heavy_check_mark: | N/A |
9+
| `organizationId` | *String* | :heavy_check_mark: | N/A |
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# CreateOrUpdateOrganizationOAuthCredentialsResponse
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
8+
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
9+
| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
10+
| `rawResponse` | [HttpResponse\<InputStream>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |

0 commit comments

Comments
 (0)