Skip to content

Commit 62adc20

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.459.2
1 parent 1e3db9b commit 62adc20

File tree

1,328 files changed

+17159
-765
lines changed

Some content is hidden

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

1,328 files changed

+17159
-765
lines changed

.speakeasy/gen.lock

+73-24
Large diffs are not rendered by default.

.speakeasy/workflow.lock

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
speakeasyVersion: 1.453.10
1+
speakeasyVersion: 1.459.2
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:aa3c5e64a0c5b50601e64821c42101dc6e22d9c63c67fc5b2c6df95683549fc3
13-
sourceBlobDigest: sha256:fa5143179ee978611fb032f3948584f4cbf071857ff2ff6611fbac17e1b67eb9
12+
sourceRevisionDigest: sha256:4e603832f1dea6b91dba09ae01cce3f0f3cca6b4857b169f8f8767d5b1ba0ffc
13+
sourceBlobDigest: sha256:986e0a204bd4d6b411c07dbccc22df6b14844a5ce43aabe0d640fe9ef7446e52
1414
tags:
1515
- latest
16-
- speakeasy-sdk-regen-1733271463
16+
- speakeasy-sdk-regen-1733962674
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:aa3c5e64a0c5b50601e64821c42101dc6e22d9c63c67fc5b2c6df95683549fc3
28-
sourceBlobDigest: sha256:fa5143179ee978611fb032f3948584f4cbf071857ff2ff6611fbac17e1b67eb9
27+
sourceRevisionDigest: sha256:4e603832f1dea6b91dba09ae01cce3f0f3cca6b4857b169f8f8767d5b1ba0ffc
28+
sourceBlobDigest: sha256:986e0a204bd4d6b411c07dbccc22df6b14844a5ce43aabe0d640fe9ef7446e52
2929
codeSamplesNamespace: my-source-java-code-samples
30-
codeSamplesRevisionDigest: sha256:4bcdc1c05c1002038c44996ff6e1425317394805a9bbc73842fbd2e75ccfab04
30+
codeSamplesRevisionDigest: sha256:e7e5720274012b805cc591b8984775c6133b050d5fd3afa23694971d77c279be
3131
workflow:
3232
workflowVersion: 1.0.0
3333
speakeasyVersion: latest

RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1191,4 +1191,14 @@ Based on:
11911191
### Generated
11921192
- [java v1.6.0] .
11931193
### Releases
1194-
- [Maven Central v1.6.0] https://central.sonatype.com/artifact/com.airbyte/api/1.6.0 - .
1194+
- [Maven Central v1.6.0] https://central.sonatype.com/artifact/com.airbyte/api/1.6.0 - .
1195+
1196+
## 2024-12-21 00:16:07
1197+
### Changes
1198+
Based on:
1199+
- OpenAPI Doc
1200+
- Speakeasy CLI 1.459.2 (2.483.1) https://github.com/speakeasy-api/speakeasy
1201+
### Generated
1202+
- [java v1.7.0] .
1203+
### Releases
1204+
- [Maven Central v1.7.0] https://central.sonatype.com/artifact/com.airbyte/api/1.7.0 - .

build.gradle

+8-9
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ tasks.withType(Javadoc) {
6363
}
6464

6565
group = "com.airbyte"
66-
version = "1.6.0"
66+
version = "1.7.0"
6767

6868
sourcesJar {
6969
archiveBaseName = "api"
@@ -101,7 +101,7 @@ publishing {
101101
maven(MavenPublication) {
102102
groupId = 'com.airbyte'
103103
artifactId = 'api'
104-
version = '1.6.0'
104+
version = '1.7.0'
105105

106106
from components.java
107107

@@ -145,14 +145,13 @@ if (!project.hasProperty('skip.signing')) {
145145
}
146146

147147
dependencies {
148-
api 'com.fasterxml.jackson.core:jackson-annotations:2.17.2'
149-
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.2'
150-
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.2'
151-
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.17.2'
148+
api 'com.fasterxml.jackson.core:jackson-annotations:2.18.2'
149+
implementation 'com.fasterxml.jackson.core:jackson-databind:2.18.2'
150+
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.2'
151+
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.18.2'
152152
api('org.openapitools:jackson-databind-nullable:0.2.6') {exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind'}
153-
implementation 'org.apache.httpcomponents:httpclient:4.5.14'
154-
implementation 'org.apache.httpcomponents:httpmime:4.5.14'
155-
implementation 'commons-io:commons-io:2.15.1'
153+
implementation 'org.apache.httpcomponents.client5:httpclient5:5.4.1'
154+
implementation 'commons-io:commons-io:2.18.0'
156155
}
157156

158157

docs/models/shared/Allow.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ Allow SSL mode.
55

66
## Fields
77

8-
| Field | Type | Required | Description |
9-
| ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ |
10-
| `mode` | [Optional\<DestinationPostgresMode>](../../models/shared/DestinationPostgresMode.md) | :heavy_minus_sign: | N/A |
8+
| Field | Type | Required | Description |
9+
| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- |
10+
| `mode` | [Optional\<DestinationPostgresSchemasMode>](../../models/shared/DestinationPostgresSchemasMode.md) | :heavy_minus_sign: | N/A |

docs/models/shared/AzureOpenAI.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ Use the Azure-hosted OpenAI API to embed text. This option is using the text-emb
55

66
## Fields
77

8-
| Field | Type | Required | Description | Example |
9-
| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
10-
| `apiBase` | *String* | :heavy_check_mark: | The base URL for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource | https://your-resource-name.openai.azure.com |
11-
| `deployment` | *String* | :heavy_check_mark: | The deployment for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource | your-resource-name |
12-
| `mode` | [Optional\<DestinationAstraSchemasEmbeddingMode>](../../models/shared/DestinationAstraSchemasEmbeddingMode.md) | :heavy_minus_sign: | N/A | |
13-
| `openaiKey` | *String* | :heavy_check_mark: | The API key for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource | |
8+
| Field | Type | Required | Description | Example |
9+
| -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- |
10+
| `apiBase` | *String* | :heavy_check_mark: | The base URL for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource | https://your-resource-name.openai.azure.com |
11+
| `deployment` | *String* | :heavy_check_mark: | The deployment for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource | your-resource-name |
12+
| `mode` | [Optional\<DestinationAstraSchemasEmbeddingEmbeddingMode>](../../models/shared/DestinationAstraSchemasEmbeddingEmbeddingMode.md) | :heavy_minus_sign: | N/A | |
13+
| `openaiKey` | *String* | :heavy_check_mark: | The API key for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource | |

docs/models/shared/Cohere.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Use the Cohere API to embed text.
55

66
## Fields
77

8-
| Field | Type | Required | Description |
9-
| ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ |
10-
| `cohereKey` | *String* | :heavy_check_mark: | N/A |
11-
| `mode` | [Optional\<DestinationAstraMode>](../../models/shared/DestinationAstraMode.md) | :heavy_minus_sign: | N/A |
8+
| Field | Type | Required | Description |
9+
| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- |
10+
| `cohereKey` | *String* | :heavy_check_mark: | N/A |
11+
| `mode` | [Optional\<DestinationAstraSchemasMode>](../../models/shared/DestinationAstraSchemasMode.md) | :heavy_minus_sign: | N/A |

docs/models/shared/ConfiguredStreamMapper.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55

66
| Field | Type | Required | Description |
77
| ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- |
8+
| `id` | *Optional\<String>* | :heavy_minus_sign: | N/A |
89
| `mapperConfiguration` | [MapperConfiguration](../../models/shared/MapperConfiguration.md) | :heavy_check_mark: | The values required to configure the mapper. |
910
| `type` | [StreamMapperType](../../models/shared/StreamMapperType.md) | :heavy_check_mark: | N/A |

0 commit comments

Comments
 (0)