@@ -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
4444Gradle:
4545``` groovy
46- implementation 'com.stackone:stackone-client-java:0.1.2 '
46+ implementation 'com.stackone:stackone-client-java:0.1.3 '
4747```
4848
4949Maven:
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```
0 commit comments