Skip to content

Commit 06611aa

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.478.1
1 parent 8f38f40 commit 06611aa

File tree

641 files changed

+21792
-53395
lines changed

Some content is hidden

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

641 files changed

+21792
-53395
lines changed

.speakeasy/gen.lock

+553-466
Large diffs are not rendered by default.

.speakeasy/workflow.lock

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
speakeasyVersion: 1.477.0
1+
speakeasyVersion: 1.478.1
22
sources:
33
first-source: {}
44
my-source:
55
sourceNamespace: my-source-new
6-
sourceRevisionDigest: sha256:a5d41191536d900d3b43bbc446e9548186e359397d85e306ef198ff4a0bd558a
7-
sourceBlobDigest: sha256:c06cc83921f8f24dfc098c977539857c3b7ff65302887ea14acb0fe3d5b17c62
6+
sourceRevisionDigest: sha256:070ee466f213e87dc1cc8e79d01856a73a62dfe5bd7aca382db1c3234e89f202
7+
sourceBlobDigest: sha256:1a182b146866e277ee41d3f7e904d77ce307832a0699fff816b52a7d13dd735d
88
tags:
99
- latest
10-
- speakeasy-sdk-regen-1738095674
10+
- speakeasy-sdk-regen-1738269618
1111
- 0.4.0
1212
targets:
1313
java-target:
1414
source: my-source
1515
sourceNamespace: my-source-new
16-
sourceRevisionDigest: sha256:a5d41191536d900d3b43bbc446e9548186e359397d85e306ef198ff4a0bd558a
17-
sourceBlobDigest: sha256:c06cc83921f8f24dfc098c977539857c3b7ff65302887ea14acb0fe3d5b17c62
16+
sourceRevisionDigest: sha256:070ee466f213e87dc1cc8e79d01856a73a62dfe5bd7aca382db1c3234e89f202
17+
sourceBlobDigest: sha256:1a182b146866e277ee41d3f7e904d77ce307832a0699fff816b52a7d13dd735d
1818
codeSamplesNamespace: my-source-java-code-samples
19-
codeSamplesRevisionDigest: sha256:c92b38b635d3abbece02f5529d5b65a651fdb7f0ea863d689a40767cce1bccbb
19+
codeSamplesRevisionDigest: sha256:39c9c0e6d734cdd63760bd6a07c78f0d1bb11dec7336738b8097bda3f22d51a9
2020
py:
2121
source: first-source
2222
ts:
@@ -27,7 +27,7 @@ workflow:
2727
sources:
2828
my-source:
2929
inputs:
30-
- location: https://speakeasy.com/openapi.yaml
30+
- location: openapi.yaml
3131
registry:
3232
location: registry.speakeasyapi.dev/chase-test/chase-test/my-source-new
3333
targets:

README.md

+175-191
Large diffs are not rendered by default.

RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -2116,4 +2116,14 @@ Based on:
21162116
### Generated
21172117
- [java v7.24.1] .
21182118
### Releases
2119-
- [Maven Central v7.24.1] https://central.sonatype.com/artifact/dev.speakeasyapi/javaclientsdk/7.24.1 - .
2119+
- [Maven Central v7.24.1] https://central.sonatype.com/artifact/dev.speakeasyapi/javaclientsdk/7.24.1 - .
2120+
2121+
## 2025-01-30 20:40:01
2122+
### Changes
2123+
Based on:
2124+
- OpenAPI Doc
2125+
- Speakeasy CLI 1.478.1 (2.498.4) https://github.com/speakeasy-api/speakeasy
2126+
### Generated
2127+
- [java v7.25.0] .
2128+
### Releases
2129+
- [Maven Central v7.25.0] https://central.sonatype.com/artifact/dev.speakeasyapi/javaclientsdk/7.25.0 - .

USAGE.md

+8-16
Original file line numberDiff line numberDiff line change
@@ -3,39 +3,31 @@
33
package hello.world;
44

55
import dev.speakeasyapi.javaclientsdk.RyanTest;
6-
import dev.speakeasyapi.javaclientsdk.models.errors.Error;
7-
import dev.speakeasyapi.javaclientsdk.models.operations.CreateRemoteSourceResponse;
8-
import dev.speakeasyapi.javaclientsdk.models.shared.RemoteDocument;
9-
import dev.speakeasyapi.javaclientsdk.models.shared.RemoteSource;
6+
import dev.speakeasyapi.javaclientsdk.models.operations.GetApisRequest;
7+
import dev.speakeasyapi.javaclientsdk.models.operations.GetApisResponse;
108
import dev.speakeasyapi.javaclientsdk.models.shared.Security;
119
import java.lang.Exception;
12-
import java.util.List;
1310

1411
public class Application {
1512

16-
public static void main(String[] args) throws Error, Exception {
13+
public static void main(String[] args) throws Exception {
1714

1815
RyanTest sdk = RyanTest.builder()
1916
.security(Security.builder()
2017
.apiKey("<YOUR_API_KEY_HERE>")
2118
.build())
2219
.build();
2320

24-
RemoteSource req = RemoteSource.builder()
25-
.inputs(List.of(
26-
RemoteDocument.builder()
27-
.registryUrl("https://productive-swine.net")
28-
.build()))
29-
.output(RemoteDocument.builder()
30-
.registryUrl("https://spiteful-apricot.info")
31-
.build())
21+
GetApisRequest req = GetApisRequest.builder()
3222
.build();
3323

34-
CreateRemoteSourceResponse res = sdk.artifacts().createRemoteSource()
24+
GetApisResponse res = sdk.apis().getApis()
3525
.request(req)
3626
.call();
3727

38-
// handle response
28+
if (res.apis().isPresent()) {
29+
// handle response
30+
}
3931
}
4032
}
4133
```

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ tasks.withType(Javadoc) {
6161
}
6262

6363
group = "dev.speakeasyapi"
64-
version = "7.24.1"
64+
version = "7.25.0"
6565

6666
sourcesJar {
6767
archiveBaseName = "javaclientsdk"
@@ -88,7 +88,7 @@ publishing {
8888
maven(MavenPublication) {
8989
groupId = 'dev.speakeasyapi'
9090
artifactId = 'javaclientsdk'
91-
version = '7.24.1'
91+
version = '7.25.0'
9292

9393
from components.java
9494

0 commit comments

Comments
 (0)