feat(sdk): expose raw command API across foreign clients#3691
Open
spetz wants to merge 12 commits into
Open
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #3691 +/- ##
============================================
- Coverage 74.31% 74.15% -0.16%
- Complexity 937 950 +13
============================================
Files 1303 1303
Lines 148600 148413 -187
Branches 124041 124009 -32
============================================
- Hits 110427 110056 -371
- Misses 34705 34812 +107
- Partials 3468 3545 +77
🚀 New features to boost your workflow:
|
slbotbm
requested changes
Jul 17, 2026
Contributor
Author
|
/ready |
slbotbm
requested changes
Jul 19, 2026
slbotbm
left a comment
Contributor
There was a problem hiding this comment.
other than one comments, looks alright
slbotbm
previously approved these changes
Jul 19, 2026
hubcio
requested changes
Jul 20, 2026
hubcio
left a comment
Contributor
There was a problem hiding this comment.
besides below findings i noticed that the rust sdk exposes this publicly as send_binary_request while every foreign sdk ships sendRawWithResponse (which matches the rust internal transport method). while everything is pre-release a rename either way is free; after release it's breaking.
Contributor
Author
|
/ready |
numinnex
previously approved these changes
Jul 20, 2026
This was referenced Jul 20, 2026
slbotbm
previously approved these changes
Jul 20, 2026
mmodzelewski
approved these changes
Jul 21, 2026
numinnex
approved these changes
Jul 21, 2026
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.
Foreign SDK users could not send protocol commands without a typed
client API, which blocked applications from using new command codes
until every SDK added dedicated methods.
Expose code-and-payload methods across Python, PHP, C++, Node, Go,
C#, and Java while preserving each client's framing, authentication,
error mapping, and transport behavior. Reject session-control codes
before sending so typed login state remains consistent.
Add shared BDD coverage for known, unknown, and session-control
commands across every SDK runner. Bump each foreign SDK version for
the new public API.