Skip to content

Commit a8bc0a3

Browse files
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.335.2 (#93)
Co-authored-by: speakeasybot <[email protected]>
1 parent 71f1e03 commit a8bc0a3

File tree

265 files changed

+7968
-3653
lines changed

Some content is hidden

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

265 files changed

+7968
-3653
lines changed

.speakeasy/gen.lock

+110-80
Large diffs are not rendered by default.

.speakeasy/workflow.lock

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

README.md

+20-5
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,21 @@ The Developer Portal UI can also be used to help build your integration by showi
2020

2121
### Getting started
2222

23+
JDK 11 or later is required.
24+
2325
The samples below show how a published SDK artifact is used:
2426

2527
Gradle:
2628
```groovy
27-
implementation 'com.airbyte.api:public-api:1.4.1'
29+
implementation 'com.airbyte:api:1.5.0'
2830
```
2931

3032
Maven:
3133
```xml
3234
<dependency>
33-
<groupId>com.airbyte.api</groupId>
34-
<artifactId>public-api</artifactId>
35-
<version>1.4.1</version>
35+
<groupId>com.airbyte</groupId>
36+
<artifactId>api</artifactId>
37+
<version>1.5.0</version>
3638
</dependency>
3739
```
3840

@@ -106,6 +108,7 @@ public class Application {
106108
// handle exception
107109
throw e;
108110
}
111+
109112
}
110113
}
111114
```
@@ -142,6 +145,10 @@ public class Application {
142145
* [getJob](docs/sdks/jobs/README.md#getjob) - Get Job status and details
143146
* [listJobs](docs/sdks/jobs/README.md#listjobs) - List Jobs by sync type
144147

148+
### [organizations()](docs/sdks/organizations/README.md)
149+
150+
* [listOrganizationsForUser](docs/sdks/organizations/README.md#listorganizationsforuser) - List all organizations for a user
151+
145152
### [permissions()](docs/sdks/permissions/README.md)
146153

147154
* [createPermission](docs/sdks/permissions/README.md#createpermission) - Create a permission
@@ -164,6 +171,10 @@ public class Application {
164171

165172
* [getStreamProperties](docs/sdks/streams/README.md#getstreamproperties) - Get stream properties
166173

174+
### [users()](docs/sdks/users/README.md)
175+
176+
* [listUsersWithinAnOrganization](docs/sdks/users/README.md#listuserswithinanorganization) - List all users within an organization
177+
167178
### [workspaces()](docs/sdks/workspaces/README.md)
168179

169180
* [createOrUpdateWorkspaceOAuthCredentials](docs/sdks/workspaces/README.md#createorupdateworkspaceoauthcredentials) - Create OAuth override credentials for a workspace and source type.
@@ -240,6 +251,7 @@ public class Application {
240251
// handle exception
241252
throw e;
242253
}
254+
243255
}
244256
}
245257
```
@@ -299,6 +311,7 @@ public class Application {
299311
// handle exception
300312
throw e;
301313
}
314+
302315
}
303316
}
304317
```
@@ -311,7 +324,7 @@ Handling errors in this SDK should largely match your expectations. All operati
311324

312325
| Error Object | Status Code | Content Type |
313326
| ---------------------- | ---------------------- | ---------------------- |
314-
| models/errors/SDKError | 4xx-5xx | */* |
327+
| models/errors/SDKError | 4xx-5xx | \*\/* |
315328

316329
### Example
317330

@@ -365,6 +378,7 @@ public class Application {
365378
// handle exception
366379
throw e;
367380
}
381+
368382
}
369383
}
370384
```
@@ -434,6 +448,7 @@ public class Application {
434448
// handle exception
435449
throw e;
436450
}
451+
437452
}
438453
}
439454
```

RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1071,4 +1071,14 @@ Based on:
10711071
### Generated
10721072
- [java v1.4.1] .
10731073
### Releases
1074-
- [Maven Central v1.4.1] https://central.sonatype.com/artifact/com.airbyte/api/1.4.1 - .
1074+
- [Maven Central v1.4.1] https://central.sonatype.com/artifact/com.airbyte/api/1.4.1 - .
1075+
1076+
## 2024-07-15 18:36:28
1077+
### Changes
1078+
Based on:
1079+
- OpenAPI Doc
1080+
- Speakeasy CLI 1.335.2 (2.372.3) https://github.com/speakeasy-api/speakeasy
1081+
### Generated
1082+
- [java v1.5.0] .
1083+
### Releases
1084+
- [Maven Central v1.5.0] https://central.sonatype.com/artifact/com.airbyte/api/1.5.0 - .

USAGE.md

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ public class Application {
4949
// handle exception
5050
throw e;
5151
}
52+
5253
}
5354
}
5455
```

build-extras.gradle

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// This file
2+
// * is referred to in an `apply from` command in `build.gradle`
3+
// * can be used to customise `build.gradle`
4+
// * is generated once and not overwritten in SDK generation updates

build.gradle

+13-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11

2+
////////////////////////////////////////////////////////////////////////////////////////////
3+
// This file is generated by Speakeasy and any edits will be lost in generation updates.
4+
//
5+
// If you wish to customize this file then place those customizations in `build-extras.gradle` which
6+
// is not touched by generation updates.
7+
//
8+
// Additions to the plugins block can be made by setting the `additionalPlugins` property (an array
9+
// of string where each string value is an additional line in the block) in gen.yaml.
10+
////////////////////////////////////////////////////////////////////////////////////////////
211
plugins {
312
// Apply the java-library plugin for API and implementation separation.
413
id 'java-library'
@@ -14,13 +23,13 @@ repositories {
1423
// Use Maven Central for resolving dependencies.
1524
mavenCentral()
1625
}
26+
1727
java {
1828
sourceCompatibility = JavaVersion.VERSION_11
1929
targetCompatibility = JavaVersion.VERSION_11
2030
withSourcesJar()
2131
withJavadocJar()
2232
}
23-
2433
model {
2534
tasks.generatePomFileForMavenPublication {
2635
destination = file("$buildDir/pom.xml")
@@ -65,7 +74,7 @@ publishing {
6574
maven(MavenPublication) {
6675
groupId = 'com.airbyte'
6776
artifactId = 'api'
68-
version = '1.4.1'
77+
version = '1.5.0'
6978

7079
from components.java
7180

@@ -119,3 +128,5 @@ dependencies {
119128
}
120129

121130

131+
132+
apply from: 'build-extras.gradle'
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# DestinationLangchainOpenAI
2-
3-
Use the OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
1+
# ListOrganizationsForUserResponse
42

53

64
## Fields
75

86
| Field | Type | Required | Description |
97
| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
10-
| `mode` | [Optional<? extends com.airbyte.api.models.shared.DestinationLangchainMode>](../../models/shared/DestinationLangchainMode.md) | :heavy_minus_sign: | N/A |
11-
| `openaiKey` | *String* | :heavy_check_mark: | N/A |
8+
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
9+
| `organizationsResponse` | [Optional<? extends com.airbyte.api.models.shared.OrganizationsResponse>](../../models/shared/OrganizationsResponse.md) | :heavy_minus_sign: | List user's organizations. |
10+
| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
11+
| `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 |

docs/models/operations/ListPermissionsRequest.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
## Fields
55

6-
| Field | Type | Required | Description |
7-
| ---------------------------- | ---------------------------- | ---------------------------- | ---------------------------- |
8-
| `userId` | *Optional<? extends String>* | :heavy_minus_sign: | User Id in permission. |
6+
| Field | Type | Required | Description |
7+
| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- |
8+
| `organizationId` | *Optional<? extends String>* | :heavy_minus_sign: | This is required if you want to read someone else's permissions, and you should have organization admin or a higher role. |
9+
| `userId` | *Optional<? extends String>* | :heavy_minus_sign: | User Id in permission. |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# ListUsersWithinAnOrganizationRequest
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- |
8+
| `emails` | List<*String*> | :heavy_minus_sign: | List of user emails to filter by |
9+
| `ids` | List<*String*> | :heavy_minus_sign: | List of user IDs to filter by |
10+
| `organizationId` | *String* | :heavy_check_mark: | N/A |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# ListUsersWithinAnOrganizationResponse
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 |
11+
| `usersResponse` | [Optional<? extends com.airbyte.api.models.shared.UsersResponse>](../../models/shared/UsersResponse.md) | :heavy_minus_sign: | List Users. |

docs/models/shared/AESCBCEnvelopeEncryption.md

-11
This file was deleted.

0 commit comments

Comments
 (0)