Skip to content

Commit dcb40c9

Browse files
github-actions[bot]speakeasybotspeakeasy-github[bot]
authored
chore: 🐝 Update SDK - Generate 0.2.1 (#7)
* 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 8863f7f commit dcb40c9

File tree

476 files changed

+16969
-4670
lines changed

Some content is hidden

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

476 files changed

+16969
-4670
lines changed

.speakeasy/gen.lock

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

.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.3
18+
version: 0.2.1
1919
additionalDependencies: []
2020
additionalPlugins: []
2121
artifactID: stackone-client-java

.speakeasy/workflow.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@ speakeasyVersion: 1.517.0
22
sources:
33
StackOne-OAS:
44
sourceNamespace: stackone-oas
5-
sourceRevisionDigest: sha256:607b22a98375c34c346e14473aa780832531d851aeb06ee69e419ac9ccfcade7
6-
sourceBlobDigest: sha256:cc8fcf37cc70b993fb95b8be5b10a070de2cce9361f7456ccf538367a4bbfad8
5+
sourceRevisionDigest: sha256:a45516a3ed40968bb0b61e3300ad7eab77f93c0dd7b9fcbcd9f5c5f86d20d3fb
6+
sourceBlobDigest: sha256:713d7f48bbc20383e3c6feefb33fe7da058f528bbfcecc705f3d23a30f0ccde8
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1741729260
9+
- speakeasy-sdk-regen-1742384136
1010
- 1.0.0
1111
targets:
1212
stackone:
1313
source: StackOne-OAS
1414
sourceNamespace: stackone-oas
15-
sourceRevisionDigest: sha256:607b22a98375c34c346e14473aa780832531d851aeb06ee69e419ac9ccfcade7
16-
sourceBlobDigest: sha256:cc8fcf37cc70b993fb95b8be5b10a070de2cce9361f7456ccf538367a4bbfad8
15+
sourceRevisionDigest: sha256:a45516a3ed40968bb0b61e3300ad7eab77f93c0dd7b9fcbcd9f5c5f86d20d3fb
16+
sourceBlobDigest: sha256:713d7f48bbc20383e3c6feefb33fe7da058f528bbfcecc705f3d23a30f0ccde8
1717
codeSamplesNamespace: stack-one-oas-java-code-samples
18-
codeSamplesRevisionDigest: sha256:cc28b085c165ed03b9b6b24cf42e15255ff679fc4c8f1eb808575fa2803840b5
18+
codeSamplesRevisionDigest: sha256:8540c2b1f97c96716d141be541da4d9d2d2b744b564fe5bdabedcc50c3d89456
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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.3'
46+
implementation 'com.stackone:stackone-client-java:0.2.1'
4747
```
4848

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

@@ -97,10 +97,12 @@ public class Application {
9797

9898
HrisListEmployeesRequest req = HrisListEmployeesRequest.builder()
9999
.xAccountId("<id>")
100+
.raw(false)
100101
.fields("id,remote_id,first_name,last_name,name,display_name,gender,ethnicity,date_of_birth,birthday,marital_status,avatar_url,avatar,personal_email,personal_phone_number,work_email,work_phone_number,job_id,remote_job_id,job_title,job_description,department_id,remote_department_id,department,cost_centers,benefits,company,manager_id,remote_manager_id,hire_date,start_date,tenure,work_anniversary,employment_type,employment_contract_type,employment_status,termination_date,company_name,company_id,remote_company_id,preferred_language,citizenships,home_location,work_location,employments,custom_fields,documents,created_at,updated_at,employee_number,national_identity_number,national_identity_numbers,skills")
101102
.filter(HrisListEmployeesQueryParamFilter.builder()
102103
.updatedAfter("2020-01-01T00:00:00.000Z")
103104
.build())
105+
.pageSize("25")
104106
.updatedAfter("2020-01-01T00:00:00.000Z")
105107
.expand("company,employments,work_location,home_location,groups,skills")
106108
.include("avatar_url,avatar,custom_fields,job_description,benefits")
@@ -263,8 +265,8 @@ public class Application {
263265
* [createEmployeeEmployment](docs/sdks/hris/README.md#createemployeeemployment) - Create Employee Employment
264266
* [getEmployeeEmployment](docs/sdks/hris/README.md#getemployeeemployment) - Get Employee Employment
265267
* [updateEmployeeEmployment](docs/sdks/hris/README.md#updateemployeeemployment) - Update Employee Employment
266-
* [listLocations](docs/sdks/hris/README.md#listlocations) - List locations
267-
* [getLocation](docs/sdks/hris/README.md#getlocation) - Get Location
268+
* [listLocations](docs/sdks/hris/README.md#listlocations) - List Work Locations
269+
* [getLocation](docs/sdks/hris/README.md#getlocation) - Get Work Location
268270
* [listTimeOffRequests](docs/sdks/hris/README.md#listtimeoffrequests) - List time off requests
269271
* [createTimeOffRequest](docs/sdks/hris/README.md#createtimeoffrequest) - Creates a time off request
270272
* [getTimeOffRequest](docs/sdks/hris/README.md#gettimeoffrequest) - Get time off request
@@ -295,6 +297,8 @@ public class Application {
295297

296298
* [listUsers](docs/sdks/iam/README.md#listusers) - List Users
297299
* [getUser](docs/sdks/iam/README.md#getuser) - Get User
300+
* [deleteUser](docs/sdks/iam/README.md#deleteuser) - Delete User
301+
* [updateUser](docs/sdks/iam/README.md#updateuser) - Update User
298302
* [listRoles](docs/sdks/iam/README.md#listroles) - List Roles
299303
* [getRole](docs/sdks/iam/README.md#getrole) - Get Role
300304
* [listGroups](docs/sdks/iam/README.md#listgroups) - List Groups
@@ -399,10 +403,12 @@ public class Application {
399403

400404
HrisListCompaniesRequest req = HrisListCompaniesRequest.builder()
401405
.xAccountId("<id>")
406+
.raw(false)
402407
.fields("id,remote_id,name,full_name,display_name,created_at,updated_at")
403408
.filter(Filter.builder()
404409
.updatedAfter("2020-01-01T00:00:00.000Z")
405410
.build())
411+
.pageSize("25")
406412
.updatedAfter("2020-01-01T00:00:00.000Z")
407413
.build();
408414

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,14 @@ Based on:
3838
### Generated
3939
- [java v0.1.3] .
4040
### Releases
41-
- [Maven Central v0.1.3] https://central.sonatype.com/artifact/com.stackone/stackone-client-java/0.1.3 - .
41+
- [Maven Central v0.1.3] https://central.sonatype.com/artifact/com.stackone/stackone-client-java/0.1.3 - .
42+
43+
## 2025-03-19 11:35:20
44+
### Changes
45+
Based on:
46+
- OpenAPI Doc
47+
- Speakeasy CLI 1.517.0 (2.548.1) https://github.com/speakeasy-api/speakeasy
48+
### Generated
49+
- [java v0.2.1] .
50+
### Releases
51+
- [Maven Central v0.2.1] https://central.sonatype.com/artifact/com.stackone/stackone-client-java/0.2.1 - .

USAGE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,12 @@ public class Application {
2323

2424
HrisListEmployeesRequest req = HrisListEmployeesRequest.builder()
2525
.xAccountId("<id>")
26+
.raw(false)
2627
.fields("id,remote_id,first_name,last_name,name,display_name,gender,ethnicity,date_of_birth,birthday,marital_status,avatar_url,avatar,personal_email,personal_phone_number,work_email,work_phone_number,job_id,remote_job_id,job_title,job_description,department_id,remote_department_id,department,cost_centers,benefits,company,manager_id,remote_manager_id,hire_date,start_date,tenure,work_anniversary,employment_type,employment_contract_type,employment_status,termination_date,company_name,company_id,remote_company_id,preferred_language,citizenships,home_location,work_location,employments,custom_fields,documents,created_at,updated_at,employee_number,national_identity_number,national_identity_numbers,skills")
2728
.filter(HrisListEmployeesQueryParamFilter.builder()
2829
.updatedAfter("2020-01-01T00:00:00.000Z")
2930
.build())
31+
.pageSize("25")
3032
.updatedAfter("2020-01-01T00:00:00.000Z")
3133
.expand("company,employments,work_location,home_location,groups,skills")
3234
.include("avatar_url,avatar,custom_fields,job_description,benefits")

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.3"
66+
version = "0.2.1"
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.3'
104+
version = '0.2.1'
105105

106106
from components.java
107107

docs/models/components/AssignmentStatus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ The status of the assignment
77

88
| Field | Type | Required | Description | Example |
99
| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- |
10-
| `value` | [JsonNullable\<AssignmentValue>](../../models/components/AssignmentValue.md) | :heavy_minus_sign: | N/A | in-progress |
10+
| `value` | [JsonNullable\<AssignmentValue>](../../models/components/AssignmentValue.md) | :heavy_minus_sign: | N/A | in_progress |
1111
| `sourceValue` | [JsonNullable\<AssignmentSourceValue>](../../models/components/AssignmentSourceValue.md) | :heavy_minus_sign: | N/A | |

docs/models/components/AtsCreateJobRequestDto.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
| `unifiedCustomFields` | Map\<String, *Object*> | :heavy_minus_sign: | Custom Unified Fields configured in your StackOne project | {<br/>"my_project_custom_field_1": "REF-1236",<br/>"my_project_custom_field_2": "some other value"<br/>} |
99
| `code` | *JsonNullable\<String>* | :heavy_minus_sign: | Code of the job | 184919 |
1010
| `title` | *JsonNullable\<String>* | :heavy_minus_sign: | Title of the job | Software Engineer |
11+
| `description` | *JsonNullable\<String>* | :heavy_minus_sign: | Description of the job | Responsible for identifying business requirements |
1112
| ~~`status`~~ | *JsonNullable\<String>* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.<br/><br/>Status of the job | archived |
1213
| `jobStatus` | [JsonNullable\<AtsCreateJobRequestDtoJobStatus>](../../models/components/AtsCreateJobRequestDtoJobStatus.md) | :heavy_minus_sign: | Status of the job | |
1314
| `departmentIds` | List\<*String*> | :heavy_minus_sign: | Department ids of the job | [<br/>"308570",<br/>"308571",<br/>"308572"<br/>] |

docs/models/components/AtsUpdateJobRequestDto.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
| `unifiedCustomFields` | Map\<String, *Object*> | :heavy_minus_sign: | Custom Unified Fields configured in your StackOne project | {<br/>"my_project_custom_field_1": "REF-1236",<br/>"my_project_custom_field_2": "some other value"<br/>} |
99
| `code` | *JsonNullable\<String>* | :heavy_minus_sign: | Code of the job | 184919 |
1010
| `title` | *JsonNullable\<String>* | :heavy_minus_sign: | Title of the job | Software Engineer |
11+
| `description` | *JsonNullable\<String>* | :heavy_minus_sign: | Description of the job | Responsible for identifying business requirements |
1112
| ~~`status`~~ | *JsonNullable\<String>* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.<br/><br/>Status of the job | archived |
1213
| `jobStatus` | [JsonNullable\<AtsUpdateJobRequestDtoJobStatus>](../../models/components/AtsUpdateJobRequestDtoJobStatus.md) | :heavy_minus_sign: | Status of the job | |
1314
| `departmentIds` | List\<*String*> | :heavy_minus_sign: | Department ids of the job | [<br/>"308570",<br/>"308571",<br/>"308572"<br/>] |

0 commit comments

Comments
 (0)