Skip to content

Commit cffda82

Browse files
github-actions[bot]speakeasybotspeakeasy-github[bot]
authored
chore: 🐝 Update SDK - Generate 0.19.0 (#39)
* ## Java SDK Changes: * `stackone.ats.listJobPostings()`: `response.data.[]` **Changed** **Breaking** ⚠️ * `stackone.lms.createUserAssignment()`: `request.lmscreateassignmentrequestdto` **Changed** **Breaking** ⚠️ * `stackone.ats.getJobPosting()`: `response.data` **Changed** **Breaking** ⚠️ * `stackone.hris.listTasks()`: * `request.filter` **Changed** * `stackone.lms.listUserCompletions()`: `response.data.[].score` **Added** * `stackone.hris.listEmployeeTasks()`: * `request.filter` **Changed** * `stackone.hris.listPositions()`: * `request.status` **Changed** * `stackone.lms.listUserAssignments()`: `response.data.[].assignedAt` **Added** * `stackone.connectSessions.authenticateConnectSession()`: `response.integration_id` **Added** * `stackone.lms.getUserAssignment()`: `response.data.assignedAt` **Added** * `stackone.connectSessions.createConnectSession()`: * `request.integrationId` **Added** * `response.integration_id` **Added** * `stackone.lms.createUserCompletion()`: * `request.lmscreatecompletionrequestdto.score` **Added** * `stackone.lms.getUserCompletion()`: `response.data.score` **Added** * `stackone.lms.listCompletions()`: `response.data.[].score` **Added** * `stackone.lms.getCompletion()`: `response.data.score` **Added** * `stackone.lms.listAssignments()`: `response.data.[].assignedAt` **Added** * `stackone.lms.getAssignment()`: `response.data.assignedAt` **Added** * empty commit to trigger [run-tests] workflow --------- Co-authored-by: speakeasybot <[email protected]> Co-authored-by: speakeasy-github[bot] <128539517+speakeasy-github[bot]@users.noreply.github.com>
1 parent 59656fc commit cffda82

Some content is hidden

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

45 files changed

+1129
-215
lines changed

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

Lines changed: 24 additions & 20 deletions
Large diffs are not rendered by default.

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

Lines changed: 2 additions & 1 deletion
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.1
28+
version: 0.19.0
2929
additionalDependencies: []
3030
additionalPlugins: []
3131
artifactID: stackone-client-java
@@ -60,6 +60,7 @@ java:
6060
shortName: MIT
6161
url: https://mit-license.org/
6262
maxMethodParams: 4
63+
multipartArrayFormat: legacy
6364
nullFriendlyParameters: false
6465
openUnions: true
6566
operationScopedParams: true

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

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

β€ŽREADME.mdβ€Ž

Lines changed: 2 additions & 2 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.1'
49+
implementation 'com.stackone:stackone-client-java:0.19.0'
5050
```
5151

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

β€ŽRELEASES.mdβ€Ž

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,4 +308,14 @@ Based on:
308308
### Generated
309309
- [java v0.18.1] .
310310
### Releases
311-
- [Maven Central v0.18.1] https://central.sonatype.com/artifact/com.stackone/stackone-client-java/0.18.1 - .
311+
- [Maven Central v0.18.1] https://central.sonatype.com/artifact/com.stackone/stackone-client-java/0.18.1 - .
312+
313+
## 2025-12-03 00:06:07
314+
### Changes
315+
Based on:
316+
- OpenAPI Doc
317+
- Speakeasy CLI 1.666.2 (2.768.1) https://github.com/speakeasy-api/speakeasy
318+
### Generated
319+
- [java v0.19.0] .
320+
### Releases
321+
- [Maven Central v0.19.0] https://central.sonatype.com/artifact/com.stackone/stackone-client-java/0.19.0 - .

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
| `progress` | *JsonNullable\<Double>* | :heavy_minus_sign: | The progress associated with this assigment | 40 |
1616
| `updatedAt` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | The date the assignment was last updated | 2021-07-21T14:00:00.000Z |
1717
| `createdAt` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | The date the assignment was created | 2021-07-21T14:00:00.000Z |
18+
| `assignedAt` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | The date the assignment was assigned | 2021-07-21T14:00:00.000Z |
1819
| `dueDate` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | The date the assignment is due to be completed | 2021-07-21T14:00:00.000Z |
1920
| `status` | [JsonNullable\<AssignmentStatus>](../../models/components/AssignmentStatus.md) | :heavy_minus_sign: | The status of the assignment | |
2021
| `learningObjectType` | [JsonNullable\<LearningObjectType>](../../models/components/LearningObjectType.md) | :heavy_minus_sign: | The learning object type of the assignment | |

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,5 @@
2727
| ~~`contentId`~~ | *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/>The content ID associated with this completion | 16873-ENG-VIDEO-1 |
2828
| ~~`remoteContentId`~~ | *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/>Provider's unique identifier of the content associated with the completion | e3cb75bf-aa84-466e-a6c1-b8322b257a48 |
2929
| ~~`courseId`~~ | *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/>The course ID associated with this completion | 16873-ENG-COURSE-1 |
30-
| ~~`remoteCourseId`~~ | *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/>Provider's unique identifier of the course associated with the completion | e3cb75bf-aa84-466e-a6c1-b8322b257a48 |
30+
| ~~`remoteCourseId`~~ | *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/>Provider's unique identifier of the course associated with the completion | e3cb75bf-aa84-466e-a6c1-b8322b257a48 |
31+
| `score` | [JsonNullable\<CompletionScore>](../../models/components/CompletionScore.md) | :heavy_minus_sign: | The score associated with this completion | {<br/>"percentage": 87,<br/>"raw_value": "87 / 100"<br/>} |
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# CompletionScore
2+
3+
The score associated with this completion
4+
5+
6+
## Fields
7+
8+
| Field | Type | Required | Description | Example |
9+
| -------------------------- | -------------------------- | -------------------------- | -------------------------- | -------------------------- |
10+
| `percentage` | *JsonNullable\<Double>* | :heavy_minus_sign: | The score percentage | 87.5 |
11+
| `rawValue` | *JsonNullable\<String>* | :heavy_minus_sign: | The raw string score value | 87 |

0 commit comments

Comments
Β (0)