Skip to content

Commit 54ab13e

Browse files
authored
Merge pull request #73 from airbytehq/speakeasy-sdk-regen-1707955952
chore: 🐝 Update SDK - Generate
2 parents 3f7cd46 + 4401bf8 commit 54ab13e

File tree

13 files changed

+106
-87
lines changed

13 files changed

+106
-87
lines changed

.speakeasy/gen.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ management:
44
docChecksum: c101e6356aa26bcdee80457c4dc64471
55
docVersion: 1.0.0
66
speakeasyVersion: internal
7-
generationVersion: 2.253.0
8-
releaseVersion: 0.48.1
9-
configChecksum: 8694447405c5904c147dfb937af22c20
7+
generationVersion: 2.259.1
8+
releaseVersion: 0.49.1
9+
configChecksum: e3e7c21a61e9ffebaa16be28635d6db0
1010
repoURL: https://github.com/airbytehq/airbyte-api-java-sdk.git
1111
repoSubDirectory: .
1212
published: true
1313
features:
1414
java:
15-
core: 3.2.2
15+
core: 3.5.1
1616
globalSecurity: 2.81.2
1717
globalServerURLs: 2.82.1
1818
generatedFiles:
@@ -29,6 +29,7 @@ generatedFiles:
2929
- gradle/wrapper/gradle-wrapper.properties
3030
- gradlew
3131
- gradlew.bat
32+
- settings.gradle
3233
- lib/build.gradle
3334
- lib/src/main/java/com/airbyte/api/utils/DateTimeDeserializer.java
3435
- lib/src/main/java/com/airbyte/api/utils/DateTimeSerializer.java
@@ -52,7 +53,6 @@ generatedFiles:
5253
- lib/src/main/java/com/airbyte/api/utils/SpeakeasyMetadata.java
5354
- lib/src/main/java/com/airbyte/api/utils/Types.java
5455
- lib/src/main/java/com/airbyte/api/utils/Utils.java
55-
- settings.gradle
5656
- lib/src/main/java/com/airbyte/api/models/operations/CreateConnectionResponse.java
5757
- lib/src/main/java/com/airbyte/api/models/operations/DeleteConnectionRequest.java
5858
- lib/src/main/java/com/airbyte/api/models/operations/DeleteConnectionResponse.java

README.md

+6-6
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.48.1'
24+
implementation 'com.airbyte.api:public-api:0.49.1'
2525
```
2626
<!-- End SDK Installation [installation] -->
2727

@@ -69,21 +69,21 @@ public class Application {
6969
){{
7070
streams = new com.airbyte.api.models.shared.StreamConfiguration[]{{
7171
add(new StreamConfiguration(
72-
"string"){{
73-
name = "string";
72+
"<value>"){{
73+
name = "<value>";
7474
}}),
7575
}};
7676

7777
}};
7878
dataResidency = GeographyEnum.EU;
79-
name = "string";
79+
name = "<value>";
8080
namespaceDefinition = NamespaceDefinitionEnum.CUSTOM_FORMAT;
8181
namespaceFormat = "${SOURCE_NAMESPACE}";
8282
nonBreakingSchemaUpdatesBehavior = NonBreakingSchemaUpdatesBehaviorEnum.IGNORE;
83-
prefix = "string";
83+
prefix = "<value>";
8484
schedule = new ConnectionSchedule(
8585
ScheduleTypeEnum.CRON){{
86-
cronExpression = "string";
86+
cronExpression = "<value>";
8787

8888
}};
8989
status = ConnectionStatusEnum.DEPRECATED;

RELEASES.md

+21-1
Original file line numberDiff line numberDiff line change
@@ -981,4 +981,24 @@ Based on:
981981
### Generated
982982
- [java v0.48.1] .
983983
### Releases
984-
- [Maven Central v0.48.1] https://central.sonatype.com/artifact/com.airbyte/api/0.48.1 - .
984+
- [Maven Central v0.48.1] https://central.sonatype.com/artifact/com.airbyte/api/0.48.1 - .
985+
986+
## 2024-02-15 00:12:30
987+
### Changes
988+
Based on:
989+
- OpenAPI Doc 1.0.0
990+
- Speakeasy CLI 1.180.0 (2.258.0) https://github.com/speakeasy-api/speakeasy
991+
### Generated
992+
- [java v0.49.0] .
993+
### Releases
994+
- [Maven Central v0.49.0] https://central.sonatype.com/artifact/com.airbyte/api/0.49.0 - .
995+
996+
## 2024-02-16 00:12:18
997+
### Changes
998+
Based on:
999+
- OpenAPI Doc 1.0.0
1000+
- Speakeasy CLI 1.182.0 (2.259.1) https://github.com/speakeasy-api/speakeasy
1001+
### Generated
1002+
- [java v0.49.1] .
1003+
### Releases
1004+
- [Maven Central v0.49.1] https://central.sonatype.com/artifact/com.airbyte/api/0.49.1 - .

USAGE.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -38,21 +38,21 @@ public class Application {
3838
){{
3939
streams = new com.airbyte.api.models.shared.StreamConfiguration[]{{
4040
add(new StreamConfiguration(
41-
"string"){{
42-
name = "string";
41+
"<value>"){{
42+
name = "<value>";
4343
}}),
4444
}};
4545

4646
}};
4747
dataResidency = GeographyEnum.EU;
48-
name = "string";
48+
name = "<value>";
4949
namespaceDefinition = NamespaceDefinitionEnum.CUSTOM_FORMAT;
5050
namespaceFormat = "${SOURCE_NAMESPACE}";
5151
nonBreakingSchemaUpdatesBehavior = NonBreakingSchemaUpdatesBehaviorEnum.IGNORE;
52-
prefix = "string";
52+
prefix = "<value>";
5353
schedule = new ConnectionSchedule(
5454
ScheduleTypeEnum.CRON){{
55-
cronExpression = "string";
55+
cronExpression = "<value>";
5656

5757
}};
5858
status = ConnectionStatusEnum.DEPRECATED;

docs/sdks/connections/README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -54,21 +54,21 @@ public class Application {
5454
){{
5555
streams = new com.airbyte.api.models.shared.StreamConfiguration[]{{
5656
add(new StreamConfiguration(
57-
"string"){{
58-
name = "string";
57+
"<value>"){{
58+
name = "<value>";
5959
}}),
6060
}};
6161

6262
}};
6363
dataResidency = GeographyEnum.EU;
64-
name = "string";
64+
name = "<value>";
6565
namespaceDefinition = NamespaceDefinitionEnum.CUSTOM_FORMAT;
6666
namespaceFormat = "${SOURCE_NAMESPACE}";
6767
nonBreakingSchemaUpdatesBehavior = NonBreakingSchemaUpdatesBehaviorEnum.IGNORE;
68-
prefix = "string";
68+
prefix = "<value>";
6969
schedule = new ConnectionSchedule(
7070
ScheduleTypeEnum.CRON){{
71-
cronExpression = "string";
71+
cronExpression = "<value>";
7272

7373
}};
7474
status = ConnectionStatusEnum.DEPRECATED;
@@ -129,7 +129,7 @@ public class Application {
129129
.build();
130130

131131
com.airbyte.api.models.operations.DeleteConnectionRequest req = new DeleteConnectionRequest(
132-
"string");
132+
"<value>");
133133

134134
com.airbyte.api.models.operations.DeleteConnectionResponse res = sdk.connections.deleteConnection(req);
135135

@@ -185,7 +185,7 @@ public class Application {
185185
.build();
186186

187187
com.airbyte.api.models.operations.GetConnectionRequest req = new GetConnectionRequest(
188-
"string");
188+
"<value>");
189189

190190
com.airbyte.api.models.operations.GetConnectionResponse res = sdk.connections.getConnection(req);
191191

@@ -321,27 +321,27 @@ public class Application {
321321
){{
322322
streams = new com.airbyte.api.models.shared.StreamConfiguration[]{{
323323
add(new StreamConfiguration(
324-
"string"){{
325-
name = "string";
324+
"<value>"){{
325+
name = "<value>";
326326
}}),
327327
}};
328328

329329
}};
330330
dataResidency = GeographyEnumNoDefault.AUTO;
331-
name = "string";
331+
name = "<value>";
332332
namespaceDefinition = NamespaceDefinitionEnumNoDefault.SOURCE;
333333
namespaceFormat = "${SOURCE_NAMESPACE}";
334334
nonBreakingSchemaUpdatesBehavior = NonBreakingSchemaUpdatesBehaviorEnumNoDefault.PROPAGATE_FULLY;
335-
prefix = "string";
335+
prefix = "<value>";
336336
schedule = new ConnectionSchedule(
337337
ScheduleTypeEnum.CRON){{
338-
cronExpression = "string";
338+
cronExpression = "<value>";
339339

340340
}};
341341
status = ConnectionStatusEnum.ACTIVE;
342342

343343
}},
344-
"string");
344+
"<value>");
345345

346346
com.airbyte.api.models.operations.PatchConnectionResponse res = sdk.connections.patchConnection(req);
347347

docs/sdks/destinations/README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ public class Application {
4040
.build();
4141

4242
com.airbyte.api.models.shared.DestinationCreateRequest req = new DestinationCreateRequest(
43-
"string",
44-
"string",
43+
"<value>",
44+
"<value>",
4545
"8360860a-d46e-48e6-af62-08e5ba5019ef"){{
4646
definitionId = "3492fc0e-ef56-45b0-b0c7-3d4dfc9aec3c";
4747

@@ -101,7 +101,7 @@ public class Application {
101101
.build();
102102

103103
com.airbyte.api.models.operations.DeleteDestinationRequest req = new DeleteDestinationRequest(
104-
"string");
104+
"<value>");
105105

106106
com.airbyte.api.models.operations.DeleteDestinationResponse res = sdk.destinations.deleteDestination(req);
107107

@@ -157,7 +157,7 @@ public class Application {
157157
.build();
158158

159159
com.airbyte.api.models.operations.GetDestinationRequest req = new GetDestinationRequest(
160-
"string");
160+
"<value>");
161161

162162
com.airbyte.api.models.operations.GetDestinationResponse res = sdk.destinations.getDestination(req);
163163

@@ -278,11 +278,11 @@ public class Application {
278278
.build();
279279

280280
com.airbyte.api.models.operations.PatchDestinationRequest req = new PatchDestinationRequest(
281-
"string"){{
281+
"<value>"){{
282282
destinationPatchRequest = new DestinationPatchRequest(
283283
){{
284-
configuration = "string";
285-
name = "string";
284+
configuration = "<value>";
285+
name = "<value>";
286286

287287
}};
288288

@@ -343,10 +343,10 @@ public class Application {
343343
.build();
344344

345345
com.airbyte.api.models.operations.PutDestinationRequest req = new PutDestinationRequest(
346-
"string"){{
346+
"<value>"){{
347347
destinationPutRequest = new DestinationPutRequest(
348-
"string",
349-
"string");
348+
"<value>",
349+
"<value>");
350350

351351
}};
352352

docs/sdks/jobs/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public class Application {
9595
.build();
9696

9797
com.airbyte.api.models.shared.JobCreateRequest req = new JobCreateRequest(
98-
"string",
98+
"<value>",
9999
JobTypeEnum.SYNC);
100100

101101
com.airbyte.api.models.operations.CreateJobResponse res = sdk.jobs.createJob(req);
@@ -212,13 +212,13 @@ public class Application {
212212

213213
com.airbyte.api.models.operations.ListJobsRequest req = new ListJobsRequest(
214214
){{
215-
connectionId = "string";
215+
connectionId = "<value>";
216216
createdAtEnd = OffsetDateTime.parse("2024-06-04T16:21:45.917Z");
217217
createdAtStart = OffsetDateTime.parse("2023-04-03T04:39:28.005Z");
218218
jobType = JobTypeEnum.SYNC;
219219
limit = 955698;
220220
offset = 624731;
221-
orderBy = "string";
221+
orderBy = "<value>";
222222
status = JobStatusEnum.PENDING;
223223
updatedAtEnd = OffsetDateTime.parse("2023-12-07T18:30:31.244Z");
224224
updatedAtStart = OffsetDateTime.parse("2023-06-02T22:15:44.179Z");

docs/sdks/sources/README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ public class Application {
4141
.build();
4242

4343
com.airbyte.api.models.shared.SourceCreateRequest req = new SourceCreateRequest(
44-
"string",
45-
"string",
44+
"<value>",
45+
"<value>",
4646
"a2cf0f31-f3dd-4c98-88c3-4bdfb109056a"){{
4747
definitionId = "a6d6dedf-297b-4eb8-860e-3afe15240dda";
48-
secretId = "string";
48+
secretId = "<value>";
4949

5050
}};
5151

@@ -103,7 +103,7 @@ public class Application {
103103
.build();
104104

105105
com.airbyte.api.models.operations.DeleteSourceRequest req = new DeleteSourceRequest(
106-
"string");
106+
"<value>");
107107

108108
com.airbyte.api.models.operations.DeleteSourceResponse res = sdk.sources.deleteSource(req);
109109

@@ -159,7 +159,7 @@ public class Application {
159159
.build();
160160

161161
com.airbyte.api.models.operations.GetSourceRequest req = new GetSourceRequest(
162-
"string");
162+
"<value>");
163163

164164
com.airbyte.api.models.operations.GetSourceResponse res = sdk.sources.getSource(req);
165165

@@ -221,7 +221,7 @@ public class Application {
221221
.build();
222222

223223
com.airbyte.api.models.shared.InitiateOauthRequest req = new InitiateOauthRequest(
224-
"string",
224+
"<value>",
225225
OAuthActorNames.GOOGLE_ADS,
226226
"fd28130d-9919-4ffa-a67d-4e12eb099447"){{
227227
oAuthInputConfiguration = new OAuthInputConfiguration(
@@ -348,12 +348,12 @@ public class Application {
348348
.build();
349349

350350
com.airbyte.api.models.operations.PatchSourceRequest req = new PatchSourceRequest(
351-
"string"){{
351+
"<value>"){{
352352
sourcePatchRequest = new SourcePatchRequest(
353353
){{
354-
configuration = "string";
354+
configuration = "<value>";
355355
name = "My source";
356-
secretId = "string";
356+
secretId = "<value>";
357357
workspaceId = "30fc2511-c44f-479e-92c3-0df4fd46c0e4";
358358

359359
}};
@@ -415,10 +415,10 @@ public class Application {
415415
.build();
416416

417417
com.airbyte.api.models.operations.PutSourceRequest req = new PutSourceRequest(
418-
"string"){{
418+
"<value>"){{
419419
sourcePutRequest = new SourcePutRequest(
420-
"string",
421-
"string");
420+
"<value>",
421+
"<value>");
422422

423423
}};
424424

docs/sdks/streams/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ public class Application {
3535
.build();
3636

3737
com.airbyte.api.models.operations.GetStreamPropertiesRequest req = new GetStreamPropertiesRequest(
38-
"string",
39-
"string"){{
38+
"<value>",
39+
"<value>"){{
4040
ignoreCache = false;
4141

4242
}};

0 commit comments

Comments
 (0)