Skip to content

Commit 8863f7f

Browse files
github-actions[bot]speakeasybotspeakeasy-github[bot]
authored
chore: 🐝 Update SDK - Generate 0.1.3 (#5)
* ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.517.0 * empty commit to trigger [run-tests] workflow --------- Co-authored-by: speakeasybot <bot@speakeasyapi.dev> Co-authored-by: speakeasy-github[bot] <128539517+speakeasy-github[bot]@users.noreply.github.com>
1 parent e42ca9f commit 8863f7f

File tree

7 files changed

+34
-23
lines changed

7 files changed

+34
-23
lines changed

.speakeasy/gen.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ id: 90080b12-9e47-459d-875f-5a0a3b2545d2
33
management:
44
docChecksum: 1ea3d7ffe20401b061e635d771065573
55
docVersion: 1.0.0
6-
speakeasyVersion: 1.514.1
7-
generationVersion: 2.546.3
8-
releaseVersion: 0.1.2
9-
configChecksum: 7f7ee97f3760e4df55e5566ac5fd6ca1
6+
speakeasyVersion: 1.517.0
7+
generationVersion: 2.548.1
8+
releaseVersion: 0.1.3
9+
configChecksum: 355476c5d5b8002d17bbe44908c43c59
1010
repoURL: https://github.com/StackOneHQ/stackone-client-java.git
1111
published: true
1212
features:

.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ generation:
1515
oAuth2ClientCredentialsEnabled: false
1616
oAuth2PasswordEnabled: false
1717
java:
18-
version: 0.1.2
18+
version: 0.1.3
1919
additionalDependencies: []
2020
additionalPlugins: []
2121
artifactID: stackone-client-java

.speakeasy/workflow.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
speakeasyVersion: 1.514.1
1+
speakeasyVersion: 1.517.0
22
sources:
33
StackOne-OAS:
44
sourceNamespace: stackone-oas
5-
sourceRevisionDigest: sha256:f98b1f8c0aad377963e14342e5f8b31a2d895d63e06c8e30ff0a3e091109b20b
5+
sourceRevisionDigest: sha256:607b22a98375c34c346e14473aa780832531d851aeb06ee69e419ac9ccfcade7
66
sourceBlobDigest: sha256:cc8fcf37cc70b993fb95b8be5b10a070de2cce9361f7456ccf538367a4bbfad8
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1741706284
9+
- speakeasy-sdk-regen-1741729260
1010
- 1.0.0
1111
targets:
1212
stackone:
1313
source: StackOne-OAS
1414
sourceNamespace: stackone-oas
15-
sourceRevisionDigest: sha256:f98b1f8c0aad377963e14342e5f8b31a2d895d63e06c8e30ff0a3e091109b20b
15+
sourceRevisionDigest: sha256:607b22a98375c34c346e14473aa780832531d851aeb06ee69e419ac9ccfcade7
1616
sourceBlobDigest: sha256:cc8fcf37cc70b993fb95b8be5b10a070de2cce9361f7456ccf538367a4bbfad8
1717
codeSamplesNamespace: stack-one-oas-java-code-samples
18-
codeSamplesRevisionDigest: sha256:a7ad89894d48e9e092808e20112d6f7e86ee51ac01bbba68b67fb562931c7d0d
18+
codeSamplesRevisionDigest: sha256:cc28b085c165ed03b9b6b24cf42e15255ff679fc4c8f1eb808575fa2803840b5
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ LMS: The documentation for the StackOne Unified API - LMS
1717
<!-- Start Table of Contents [toc] -->
1818
## Table of Contents
1919
<!-- $toc-max-depth=2 -->
20-
* [openapi](#openapi)
20+
* [stackone-client-java](#stackone-client-java)
2121
* [SDK Installation](#sdk-installation)
2222
* [SDK Example Usage](#sdk-example-usage)
2323
* [Available Resources and Operations](#available-resources-and-operations)
@@ -43,15 +43,15 @@ The samples below show how a published SDK artifact is used:
4343

4444
Gradle:
4545
```groovy
46-
implementation 'com.stackone:stackone-client-java:0.1.2'
46+
implementation 'com.stackone:stackone-client-java:0.1.3'
4747
```
4848

4949
Maven:
5050
```xml
5151
<dependency>
5252
<groupId>com.stackone</groupId>
5353
<artifactId>stackone-client-java</artifactId>
54-
<version>0.1.2</version>
54+
<version>0.1.3</version>
5555
</dependency>
5656
```
5757

@@ -101,17 +101,18 @@ public class Application {
101101
.filter(HrisListEmployeesQueryParamFilter.builder()
102102
.updatedAfter("2020-01-01T00:00:00.000Z")
103103
.build())
104+
.updatedAfter("2020-01-01T00:00:00.000Z")
104105
.expand("company,employments,work_location,home_location,groups,skills")
105106
.include("avatar_url,avatar,custom_fields,job_description,benefits")
106107
.build();
107108

108109
sdk.hris().listEmployees()
109110
.request(req)
110-
.call()
111-
.employeesPaginated().get().data()
112-
.forEach(item -> {
113-
// handle item
114-
});
111+
.callAsStream()
112+
.forEach(item -> {
113+
// handle item
114+
});
115+
115116
}
116117
}
117118
```

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,14 @@ Based on:
2828
### Generated
2929
- [java v0.1.2] .
3030
### Releases
31-
- [Maven Central v0.1.2] https://central.sonatype.com/artifact/com.stackone/stackone-client-java/0.1.2 - .
31+
- [Maven Central v0.1.2] https://central.sonatype.com/artifact/com.stackone/stackone-client-java/0.1.2 - .
32+
33+
## 2025-03-11 21:40:42
34+
### Changes
35+
Based on:
36+
- OpenAPI Doc
37+
- Speakeasy CLI 1.517.0 (2.548.1) https://github.com/speakeasy-api/speakeasy
38+
### Generated
39+
- [java v0.1.3] .
40+
### Releases
41+
- [Maven Central v0.1.3] https://central.sonatype.com/artifact/com.stackone/stackone-client-java/0.1.3 - .

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ tasks.withType(Javadoc) {
6363
}
6464

6565
group = "com.stackone"
66-
version = "0.1.2"
66+
version = "0.1.3"
6767

6868
sourcesJar {
6969
archiveBaseName = "stackone-client-java"
@@ -101,7 +101,7 @@ publishing {
101101
maven(MavenPublication) {
102102
groupId = 'com.stackone'
103103
artifactId = 'stackone-client-java'
104-
version = '0.1.2'
104+
version = '0.1.3'
105105

106106
from components.java
107107

src/main/java/com/stackone/stackone_client_java/SDKConfiguration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ public String resolvedServerUrl() {
2727
public int serverIdx = 0;
2828
private static final String LANGUAGE = "java";
2929
public static final String OPENAPI_DOC_VERSION = "1.0.0";
30-
public static final String SDK_VERSION = "0.1.2";
31-
public static final String GEN_VERSION = "2.546.3";
30+
public static final String SDK_VERSION = "0.1.3";
31+
public static final String GEN_VERSION = "2.548.1";
3232
private static final String BASE_PACKAGE = "com.stackone.stackone_client_java";
3333
public static final String USER_AGENT =
3434
String.format("speakeasy-sdk/%s %s %s %s %s",

0 commit comments

Comments
 (0)