Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
lockVersion: 2.0.0
id: 38254260-287a-40b6-9ac5-c2fcb654c9cc
management:
docChecksum: fec8c2730e982bf83c3099723c55988d
docVersion: 10.21.16
docChecksum: 32980ab2e16f23834a021f4a0220f18a
docVersion: 10.21.17
speakeasyVersion: 1.660.0
generationVersion: 2.760.2
releaseVersion: 0.27.7
configChecksum: e91115f5d020b72fcda97e832283d71c
releaseVersion: 0.27.8
configChecksum: 1f65afec567b61163e7f2cf3b065062e
repoURL: https://github.com/apideck-libraries/sdk-java.git
published: true
features:
Expand Down
2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ generation:
generateNewTests: false
skipResponseBodyAssertions: false
java:
version: 0.27.7
version: 0.27.8
additionalDependencies: []
additionalPlugins: []
artifactID: unify
Expand Down
14 changes: 7 additions & 7 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ speakeasyVersion: 1.660.0
sources:
Apideck-OAS:
sourceNamespace: apideck-oas
sourceRevisionDigest: sha256:85d0d06301e39146f69bd1c0253a1ca571e16ad9dfb1a38813e8070d58803fc8
sourceBlobDigest: sha256:129482fb20633945aba7ec1c30007ea42ccab0819670f2708ad73ddaf642322a
sourceRevisionDigest: sha256:de306d872a1c680564d7ffaca595bf65ca646d4451327091bfc15653cbe5f8d7
sourceBlobDigest: sha256:5ec5d4ac95acd9164fc9a23aeed2a0a045c66059261d98c186f59d559d9d743c
tags:
- latest
- speakeasy-sdk-regen-1763971802
- 10.21.16
- speakeasy-sdk-regen-1764064770
- 10.21.17
targets:
apideck:
source: Apideck-OAS
sourceNamespace: apideck-oas
sourceRevisionDigest: sha256:85d0d06301e39146f69bd1c0253a1ca571e16ad9dfb1a38813e8070d58803fc8
sourceBlobDigest: sha256:129482fb20633945aba7ec1c30007ea42ccab0819670f2708ad73ddaf642322a
sourceRevisionDigest: sha256:de306d872a1c680564d7ffaca595bf65ca646d4451327091bfc15653cbe5f8d7
sourceBlobDigest: sha256:5ec5d4ac95acd9164fc9a23aeed2a0a045c66059261d98c186f59d559d9d743c
codeSamplesNamespace: apideck-oas-java-code-samples
codeSamplesRevisionDigest: sha256:44b6bcee4438a411e12563c6961350b0d9bceee632e86a14ce91d2dd140efe20
codeSamplesRevisionDigest: sha256:d5cee4709a43897fbc3a56eb02d120dbb2c030a5c906dca4c02a724f0e6e9d45
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ The samples below show how a published SDK artifact is used:

Gradle:
```groovy
implementation 'com.apideck:unify:0.27.7'
implementation 'com.apideck:unify:0.27.8'
```

Maven:
```xml
<dependency>
<groupId>com.apideck</groupId>
<artifactId>unify</artifactId>
<version>0.27.7</version>
<version>0.27.8</version>
</dependency>
```

Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -628,4 +628,14 @@ Based on:
### Generated
- [java v0.27.7] .
### Releases
- [Maven Central v0.27.7] https://central.sonatype.com/artifact/com.apideck/unify/0.27.7 - .
- [Maven Central v0.27.7] https://central.sonatype.com/artifact/com.apideck/unify/0.27.7 - .

## 2025-11-25 09:59:02
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.660.0 (2.760.2) https://github.com/speakeasy-api/speakeasy
### Generated
- [java v0.27.8] .
### Releases
- [Maven Central v0.27.8] https://central.sonatype.com/artifact/com.apideck/unify/0.27.8 - .
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
groupId=com.apideck
artifactId=unify
version=0.27.7
version=0.27.8
org.gradle.jvmargs=-Xmx4g -XX:MaxMetaspaceSize=1g
4 changes: 2 additions & 2 deletions src/main/java/com/apideck/unify/SDKConfiguration.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
public class SDKConfiguration {

private static final String LANGUAGE = "java";
public static final String OPENAPI_DOC_VERSION = "10.21.16";
public static final String SDK_VERSION = "0.27.7";
public static final String OPENAPI_DOC_VERSION = "10.21.17";
public static final String SDK_VERSION = "0.27.8";
public static final String GEN_VERSION = "2.760.2";
private static final String BASE_PACKAGE = "com.apideck.unify";
public static final String USER_AGENT =
Expand Down