Skip to content

Commit 59656fc

Browse files
github-actions[bot]speakeasybotspeakeasy-github[bot]
authored
chore: 🐝 Update SDK - Generate 0.18.1 (#38)
* ## Java SDK Changes Detected: * `stackone.ats.createInterviewNote()`: **Added** * `stackone.ats.updateInterviewNote()`: **Added** * `stackone.lms.updateContent()`: **Deleted** **Breaking** ⚠️ * `stackone.accounts.updateAccount()`: * `request.patchaccountexternaldto.integrationId` **Added** * `stackone.hris.listEmployees()`: `response.data.[].employments.[].manager.[]` **Changed** * `stackone.hris.getEmployee()`: `response.data.employments.[].manager.[]` **Changed** * `stackone.hris.listEmployments()`: `response.data.[].manager.[]` **Changed** * `stackone.hris.getEmployment()`: `response.data.manager.[]` **Changed** * `stackone.hris.listEmployeeEmployments()`: `response.data.[].manager.[]` **Changed** * `stackone.hris.getEmployeeEmployment()`: `response.data.manager.[]` **Changed** * 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 8727ab9 commit 59656fc

File tree

61 files changed

+2602
-2698
lines changed

Some content is hidden

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

61 files changed

+2602
-2698
lines changed

β€Ž.speakeasy/gen.lockβ€Ž

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

β€Ž.speakeasy/gen.yamlβ€Ž

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ generation:
2525
generateNewTests: false
2626
skipResponseBodyAssertions: false
2727
java:
28-
version: 0.18.0
28+
version: 0.18.1
2929
additionalDependencies: []
3030
additionalPlugins: []
3131
artifactID: stackone-client-java
@@ -37,8 +37,8 @@ java:
3737
companyURL: www.stackone.com
3838
defaultErrorName: SDKError
3939
enableCustomCodeRegions: false
40+
enableSlf4jLogging: false
4041
enableStreamingUploads: false
41-
enhancedUnionMemberResolution: true
4242
flattenGlobalSecurity: true
4343
generateOptionalUnionAccessors: false
4444
generateSpringBootStarter: true
@@ -52,6 +52,7 @@ java:
5252
operations: models/operations
5353
shared: models/components
5454
webhooks: models/webhooks
55+
inferUnionDiscriminators: false
5556
inputModelSuffix: input
5657
languageVersion: 11
5758
license:
@@ -61,6 +62,8 @@ java:
6162
maxMethodParams: 4
6263
nullFriendlyParameters: false
6364
openUnions: true
65+
operationScopedParams: true
6466
outputModelSuffix: output
6567
projectName: stackone-client-java
6668
templateVersion: v2
69+
unionStrategy: populated-fields

β€Ž.speakeasy/workflow.lockβ€Ž

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
speakeasyVersion: 1.658.2
1+
speakeasyVersion: 1.661.2
22
sources:
33
StackOne-OAS:
44
sourceNamespace: stackone-oas
5-
sourceRevisionDigest: sha256:c4ff42e2e2b94d90ba3429c149fe9b15581378686fedbe7d2a739689247d4042
6-
sourceBlobDigest: sha256:26db7f2f87f809c7b192277f4f63d5b4ab9bd0637afcf69d703230c11bb7d37f
5+
sourceRevisionDigest: sha256:8afe103a1972759a3a3b4f4e0fd0b8bb9f82c8102eb05a2522a466c44d27b07a
6+
sourceBlobDigest: sha256:024af6adb5a33d4ae7e3300c89dbbd3951cc4b8dd42e05b0d9c61bbf016e4b21
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1762905986
9+
- speakeasy-sdk-regen-1763769977
1010
- 1.0.0
1111
targets:
1212
stackone:
1313
source: StackOne-OAS
1414
sourceNamespace: stackone-oas
15-
sourceRevisionDigest: sha256:c4ff42e2e2b94d90ba3429c149fe9b15581378686fedbe7d2a739689247d4042
16-
sourceBlobDigest: sha256:26db7f2f87f809c7b192277f4f63d5b4ab9bd0637afcf69d703230c11bb7d37f
15+
sourceRevisionDigest: sha256:8afe103a1972759a3a3b4f4e0fd0b8bb9f82c8102eb05a2522a466c44d27b07a
16+
sourceBlobDigest: sha256:024af6adb5a33d4ae7e3300c89dbbd3951cc4b8dd42e05b0d9c61bbf016e4b21
1717
codeSamplesNamespace: stack-one-oas-java-code-samples
18-
codeSamplesRevisionDigest: sha256:807981ea6a035f41207b015b319bf1b4f07bf7d517696d5bc7853b2ffb369585
18+
codeSamplesRevisionDigest: sha256:0fb9465f9a0d765ec2cb8bbc22ef2e7ddc42017df1b965c9f846155f87b39edf
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

β€ŽREADME.mdβ€Ž

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ The samples below show how a published SDK artifact is used:
4646

4747
Gradle:
4848
```groovy
49-
implementation 'com.stackone:stackone-client-java:0.18.0'
49+
implementation 'com.stackone:stackone-client-java:0.18.1'
5050
```
5151

5252
Maven:
5353
```xml
5454
<dependency>
5555
<groupId>com.stackone</groupId>
5656
<artifactId>stackone-client-java</artifactId>
57-
<version>0.18.0</version>
57+
<version>0.18.1</version>
5858
</dependency>
5959
```
6060

@@ -256,6 +256,8 @@ public class Application {
256256
* [getApplicationStage](docs/sdks/ats/README.md#getapplicationstage) - Get Application Stage
257257
* [listInterviews](docs/sdks/ats/README.md#listinterviews) - List Interviews
258258
* [getInterview](docs/sdks/ats/README.md#getinterview) - Get Interview
259+
* [createInterviewNote](docs/sdks/ats/README.md#createinterviewnote) - Create Interview Note
260+
* [updateInterviewNote](docs/sdks/ats/README.md#updateinterviewnote) - Update Interview Note
259261
* [listJobs](docs/sdks/ats/README.md#listjobs) - List Jobs
260262
* [createJob](docs/sdks/ats/README.md#createjob) - Create Job
261263
* [listJobApplicationStages](docs/sdks/ats/README.md#listjobapplicationstages) - List Job Application Stages
@@ -424,7 +426,6 @@ public class Application {
424426
* [listContent](docs/sdks/lms/README.md#listcontent) - List Content
425427
* [upsertContent](docs/sdks/lms/README.md#upsertcontent) - Upsert External Linking Learning Objects
426428
* [getContent](docs/sdks/lms/README.md#getcontent) - Get Content
427-
* [updateContent](docs/sdks/lms/README.md#updatecontent) - Update External Linking Learning Objects
428429
* [listUserCompletions](docs/sdks/lms/README.md#listusercompletions) - List User Completions
429430
* [createUserCompletion](docs/sdks/lms/README.md#createusercompletion) - Create User Completion
430431
* [getUserCompletion](docs/sdks/lms/README.md#getusercompletion) - Get User Completion
@@ -1295,9 +1296,11 @@ public class Application {
12951296
## Debugging
12961297

12971298
### Debug
1299+
12981300
You can setup your SDK to emit debug logs for SDK requests and responses.
12991301

13001302
For request and response logging (especially json bodies), call `enableHTTPDebugLogging(boolean)` on the SDK builder like so:
1303+
13011304
```java
13021305
SDK.builder()
13031306
.enableHTTPDebugLogging(true)
@@ -1315,10 +1318,11 @@ Response body:
13151318
"token": "global"
13161319
}
13171320
```
1318-
__WARNING__: This should only used for temporary debugging purposes. Leaving this option on in a production system could expose credentials/secrets in logs. <i>Authorization</i> headers are redacted by default and there is the ability to specify redacted header names via `SpeakeasyHTTPClient.setRedactedHeaders`.
1321+
__WARNING__: This logging should only be used for temporary debugging purposes. Leaving this option on in a production system could expose credentials/secrets in logs. <i>Authorization</i> headers are redacted by default and there is the ability to specify redacted header names via `SpeakeasyHTTPClient.setRedactedHeaders`.
13191322

13201323
__NOTE__: This is a convenience method that calls `HTTPClient.enableDebugLogging()`. The `SpeakeasyHTTPClient` honors this setting. If you are using a custom HTTP client, it is up to the custom client to honor this setting.
13211324

1325+
13221326
Another option is to set the System property `-Djdk.httpclient.HttpClient.log=all`. However, this second option does not log bodies.
13231327
<!-- End Debugging [debug] -->
13241328

β€ŽRELEASES.mdβ€Ž

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,4 +298,14 @@ Based on:
298298
### Generated
299299
- [java v0.18.0] .
300300
### Releases
301-
- [Maven Central v0.18.0] https://central.sonatype.com/artifact/com.stackone/stackone-client-java/0.18.0 - .
301+
- [Maven Central v0.18.0] https://central.sonatype.com/artifact/com.stackone/stackone-client-java/0.18.0 - .
302+
303+
## 2025-11-26 00:06:11
304+
### Changes
305+
Based on:
306+
- OpenAPI Doc
307+
- Speakeasy CLI 1.661.2 (2.763.3) https://github.com/speakeasy-api/speakeasy
308+
### Generated
309+
- [java v0.18.1] .
310+
### Releases
311+
- [Maven Central v0.18.1] https://central.sonatype.com/artifact/com.stackone/stackone-client-java/0.18.1 - .

β€Ždocs/models/components/EmploymentManagerApiModel.mdβ€Ž

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@
77
| ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ |
88
| `id` | *JsonNullable\<String>* | :heavy_minus_sign: | Unique identifier | 8187e5da-dc77-475e-9949-af0f1fa4e4e3 |
99
| `remoteId` | *JsonNullable\<String>* | :heavy_minus_sign: | Provider's unique identifier | 8187e5da-dc77-475e-9949-af0f1fa4e4e3 |
10+
| `name` | *JsonNullable\<String>* | :heavy_minus_sign: | The manager name | John Doe |
11+
| `email` | *JsonNullable\<String>* | :heavy_minus_sign: | The manager email | john.doe@example.com |
1012
| `role` | [JsonNullable\<Role>](../../models/components/Role.md) | :heavy_minus_sign: | The role of manager | |

0 commit comments

Comments
Β (0)