Skip to content

Commit ba0e42a

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.548.4
1 parent 3bf52f7 commit ba0e42a

File tree

25 files changed

+290
-310
lines changed

25 files changed

+290
-310
lines changed

.speakeasy/gen.lock

Lines changed: 153 additions & 215 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,21 +1,21 @@
1-
speakeasyVersion: 1.545.0
1+
speakeasyVersion: 1.548.4
22
sources:
33
java-source:
44
sourceNamespace: java-source
5-
sourceRevisionDigest: sha256:5ef795f5d0c13110971084276bd543208120c42745b77a7c68da89ac36fdf742
6-
sourceBlobDigest: sha256:3335b7cd5bed3d4fe1bc8f15e852ca6b1dd5b1f17360757b53ebe1492df05ad7
5+
sourceRevisionDigest: sha256:f0b1f1d9fb5543147f1fef5668d37055fe525fadd54972bbdffe904e56ed7b8f
6+
sourceBlobDigest: sha256:59bcadff7a68128bedeb34285f6e2f08283f6222a02b32c9e1c7c2adc047397a
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1747354141
9+
- speakeasy-sdk-regen-1747872535
1010
- 0.0.1
1111
targets:
1212
hathora-java:
1313
source: java-source
1414
sourceNamespace: java-source
15-
sourceRevisionDigest: sha256:5ef795f5d0c13110971084276bd543208120c42745b77a7c68da89ac36fdf742
16-
sourceBlobDigest: sha256:3335b7cd5bed3d4fe1bc8f15e852ca6b1dd5b1f17360757b53ebe1492df05ad7
15+
sourceRevisionDigest: sha256:f0b1f1d9fb5543147f1fef5668d37055fe525fadd54972bbdffe904e56ed7b8f
16+
sourceBlobDigest: sha256:59bcadff7a68128bedeb34285f6e2f08283f6222a02b32c9e1c7c2adc047397a
1717
codeSamplesNamespace: code-samples-java-hathora-java
18-
codeSamplesRevisionDigest: sha256:35e4d9070e86e50bac4cef87c90007e9aea0a8296aa041ac2c1eb430602550a5
18+
codeSamplesRevisionDigest: sha256:a59a2293e0a6e77723471ff7af04a06de5cbe87259910f51bb4fab0296b2937f
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ The samples below show how a published SDK artifact is used:
3636

3737
Gradle:
3838
```groovy
39-
implementation 'dev.hathora:cloud-sdk:3.1.5'
39+
implementation 'dev.hathora:cloud-sdk:3.1.6'
4040
```
4141

4242
Maven:
4343
```xml
4444
<dependency>
4545
<groupId>dev.hathora</groupId>
4646
<artifactId>cloud-sdk</artifactId>
47-
<version>3.1.5</version>
47+
<version>3.1.6</version>
4848
</dependency>
4949
```
5050

@@ -606,7 +606,7 @@ public class Application {
606606

607607
CreateLobbyRequest req = CreateLobbyRequest.builder()
608608
.createLobbyV3Params(CreateLobbyV3Params.builder()
609-
.region(Region.SEATTLE)
609+
.region(Region.DUBAI)
610610
.visibility(LobbyVisibility.PRIVATE)
611611
.roomConfig("{\"name\":\"my-room\"}")
612612
.build())

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1109,4 +1109,14 @@ Based on:
11091109
### Generated
11101110
- [java v3.1.5] .
11111111
### Releases
1112-
- [Maven Central v3.1.5] https://central.sonatype.com/artifact/dev.hathora/cloud-sdk/3.1.5 - .
1112+
- [Maven Central v3.1.5] https://central.sonatype.com/artifact/dev.hathora/cloud-sdk/3.1.5 - .
1113+
1114+
## 2025-05-22 00:08:38
1115+
### Changes
1116+
Based on:
1117+
- OpenAPI Doc
1118+
- Speakeasy CLI 1.548.4 (2.605.6) https://github.com/speakeasy-api/speakeasy
1119+
### Generated
1120+
- [java v3.1.6] .
1121+
### Releases
1122+
- [Maven Central v3.1.6] https://central.sonatype.com/artifact/dev.hathora/cloud-sdk/3.1.6 - .

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 = "dev.hathora"
105105
artifactId = "cloud-sdk"
106-
version = "3.1.5"
106+
version = "3.1.6"
107107

108108
from components.java
109109

codeSamples.yaml

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

docs/sdks/appsv2/README.md

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,25 @@ public class Application {
269269
PatchAppResponse res = sdk.appsV2().patchApp()
270270
.partialAppConfigWithServiceConfig(PartialAppConfigWithServiceConfig.builder()
271271
.serviceConfig(ServiceConfig.builder()
272-
.staticProcessAllocation(List.of())
272+
.staticProcessAllocation(List.of(
273+
StaticProcessAllocationConfig.builder()
274+
.maxProcesses(3)
275+
.minProcesses(1)
276+
.region(Region.TOKYO)
277+
.targetProcesses(2)
278+
.build(),
279+
StaticProcessAllocationConfig.builder()
280+
.maxProcesses(3)
281+
.minProcesses(1)
282+
.region(Region.TOKYO)
283+
.targetProcesses(2)
284+
.build(),
285+
StaticProcessAllocationConfig.builder()
286+
.maxProcesses(3)
287+
.minProcesses(1)
288+
.region(Region.TOKYO)
289+
.targetProcesses(2)
290+
.build()))
273291
.build())
274292
.build())
275293
.appId("app-af469a92-5b45-4565-b3c4-b79878de67d2")
@@ -335,7 +353,19 @@ public class Application {
335353
.authConfiguration(AuthConfiguration.builder()
336354
.build())
337355
.serviceConfig(ServiceConfig.builder()
338-
.staticProcessAllocation(List.of())
356+
.staticProcessAllocation(List.of(
357+
StaticProcessAllocationConfig.builder()
358+
.maxProcesses(3)
359+
.minProcesses(1)
360+
.region(Region.SAO_PAULO)
361+
.targetProcesses(2)
362+
.build(),
363+
StaticProcessAllocationConfig.builder()
364+
.maxProcesses(3)
365+
.minProcesses(1)
366+
.region(Region.SAO_PAULO)
367+
.targetProcesses(2)
368+
.build()))
339369
.build())
340370
.build())
341371
.appId("app-af469a92-5b45-4565-b3c4-b79878de67d2")

docs/sdks/billingv1/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ public class Application {
321321

322322
InitStripeCustomerPortalUrlResponse res = sdk.billingV1().initStripeCustomerPortalUrl()
323323
.customerPortalUrl(CustomerPortalUrl.builder()
324-
.returnUrl("https://smart-puppet.biz/")
324+
.returnUrl("https://sunny-majority.com/")
325325
.build())
326326
.call();
327327

docs/sdks/buildsv1/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ public class Application {
281281
RunBuildDeprecatedResponse res = sdk.buildsV1().runBuildDeprecated()
282282
.requestBody(RunBuildDeprecatedRequestBody.builder()
283283
.file(File.builder()
284-
.content("0x9C4e3B3eB2".getBytes(StandardCharsets.UTF_8))
284+
.content("0xDBaE05075A".getBytes(StandardCharsets.UTF_8))
285285
.fileName("example.file")
286286
.build())
287287
.build())
@@ -310,8 +310,8 @@ public class Application {
310310

311311
### Errors
312312

313-
| Error Type | Status Code | Content Type |
314-
| ---------------------- | ---------------------- | ---------------------- |
315-
| models/errors/ApiError | 400, 401, 404, 429 | application/json |
316-
| models/errors/ApiError | 500 | application/json |
317-
| models/errors/SDKError | 4XX, 5XX | \*/\* |
313+
| Error Type | Status Code | Content Type |
314+
| ----------------------- | ----------------------- | ----------------------- |
315+
| models/errors/ApiError | 400, 401, 404, 422, 429 | application/json |
316+
| models/errors/ApiError | 500 | application/json |
317+
| models/errors/SDKError | 4XX, 5XX | \*/\* |

docs/sdks/buildsv2/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ public class Application {
171171

172172
CreateWithMultipartUploadsV2DeprecatedResponse res = sdk.buildsV2().createWithMultipartUploadsV2Deprecated()
173173
.createMultipartBuildParams(CreateMultipartBuildParams.builder()
174-
.buildSizeInBytes(3146.66)
174+
.buildSizeInBytes(5282.13)
175175
.buildId("bld-6d4c6a71-2d75-4b42-94e1-f312f57f33c5")
176176
.buildTag("0.1.14-14c793")
177177
.build())
@@ -436,8 +436,8 @@ public class Application {
436436

437437
### Errors
438438

439-
| Error Type | Status Code | Content Type |
440-
| ---------------------- | ---------------------- | ---------------------- |
441-
| models/errors/ApiError | 400, 401, 404, 429 | application/json |
442-
| models/errors/ApiError | 500 | application/json |
443-
| models/errors/SDKError | 4XX, 5XX | \*/\* |
439+
| Error Type | Status Code | Content Type |
440+
| ----------------------- | ----------------------- | ----------------------- |
441+
| models/errors/ApiError | 400, 401, 404, 422, 429 | application/json |
442+
| models/errors/ApiError | 500 | application/json |
443+
| models/errors/SDKError | 4XX, 5XX | \*/\* |

0 commit comments

Comments
 (0)