chore: 🐝 Update SDK - SDK Generation KOMBO-TYPESCRIPT 1.3.5 - #53
Open
kombo-sdk-generator[bot] wants to merge 1 commit into
Open
chore: 🐝 Update SDK - SDK Generation KOMBO-TYPESCRIPT 1.3.5#53kombo-sdk-generator[bot] wants to merge 1 commit into
kombo-sdk-generator[bot] wants to merge 1 commit into
Conversation
kombo-sdk-generator
Bot
force-pushed
the
speakeasy-sdk-regen-1785543426
branch
8 times, most recently
from
August 9, 2026 00:07
d76e4a9 to
de5eb79
Compare
kombo-sdk-generator
Bot
force-pushed
the
speakeasy-sdk-regen-1785543426
branch
from
August 10, 2026 00:08
de5eb79 to
620f04d
Compare
* `kombo.ats.getAtsNotes()`: **Added** * `kombo.ats.createCandidate()`: * `request.remoteFields` **Changed** * `kombo.ats.createApplication()`: * `request.body.remoteFields` **Changed**
kombo-sdk-generator
Bot
force-pushed
the
speakeasy-sdk-regen-1785543426
branch
from
August 11, 2026 00:08
620f04d to
ee9074e
Compare
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using default effort and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit ee9074e. Configure here.
| PostAtsCandidatesRequestBodyPilogaCandidate | ||
| > = z.object({ | ||
| street: z.string().optional(), | ||
| geburtsdatum: z.date().transform(v => v.toISOString()).optional(), |
There was a problem hiding this comment.
Birth date serialized as datetime
Medium Severity
The new geburtsdatum remote field is documented as YYYY-MM-DD, but the outbound schema serializes it with toISOString(), which emits a full datetime (and can shift the calendar day across timezones). That breaks P&I Loga create-candidate and create-application requests that set this field.
Additional Locations (1)
Reviewed by Cursor Bugbot for commit ee9074e. Configure here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


SDK update
Versioning
Version Bump Type: [patch] - 🤖 (automated)
Tip
If updates to your OpenAPI document introduce breaking changes, be sure to update the
info.versionfield to trigger the correct version bump.Speakeasy supports manual control of SDK versioning through multiple methods.
Typescript SDK Changes:
kombo.ats.getAtsNotes(): Addedkombo.ats.createCandidate():request.remoteFieldsChangedkombo.ats.createApplication():request.body.remoteFieldsChangedView full SDK changelog
OpenAPI Change Summary
View full report
Linting Report
0 errors, 320 warnings, 198 hintsView full report
TYPESCRIPT CHANGELOG
No relevant generator changes
Based on Speakeasy CLI 1.793.0
Last updated by Speakeasy workflow
Note
Low Risk
Additive patch release with a new read endpoint and regenerated request/response types; no auth or write-path behavior changes in this repo beyond spec-aligned type updates.
Overview
Speakeasy-regenerated TypeScript SDK bump to v1.3.5 (package, JSR, and lock metadata).
The main consumer-facing addition is
kombo.ats.getAtsNotes()— a paginated read for ATS notes, with models for note results (candidate/application/author links, HTML content, privacy flags) and query filters such ascandidate_idsandapplication_ids. Docs and README list the new ATS method;KomboAtsErrornow covers one more endpoint (62 methods total).remoteFieldson create candidate and create application were regenerated to match the OpenAPI spec (e.g. Bullhornjob_submissionshape and Piloga candidatestreetvalidation/docs). Webhook/sync typing addsats_notesto the changed-model name union.get applicationsrequest docs now describeupdated_afterforcurrent_stageas not triggering on linked-record changes alone.No hand-written runtime logic beyond generated funcs, models, and docs.
Reviewed by Cursor Bugbot for commit ee9074e. Bugbot is set up for automated code reviews on this repo. Configure here.