common: add writable request streams#1586
Merged
callmehiphop merged 2 commits intogoogleapis:masterfrom Sep 9, 2016
Merged
Conversation
| GrpcServiceObject.prototype.request = function(protoOpts, reqOpts, callback) { | ||
| return this.parent.request(protoOpts, reqOpts, callback); | ||
| GrpcServiceObject.prototype.request = function() { | ||
| return this.parent.request.apply(this, arguments); |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
| * Make an authenticated streaming request with gRPC. | ||
| * | ||
| * @param {object} protoOpts - The proto options. | ||
| * @param {string} protoOpts.service - The service git stat. |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
sofisl
pushed a commit
that referenced
this pull request
Feb 24, 2026
Source-Author: Benjamin E. Coe <bencoe@google.com> Source-Date: Mon Aug 9 12:14:49 2021 -0400 Source-Repo: googleapis/synthtool Source-Sha: 5605f38f153e7627ba4441a2c5181060b664d224 Source-Link: googleapis/synthtool@5605f38
sofisl
pushed a commit
that referenced
this pull request
Feb 25, 2026
Deprecated properties still show up with api-extractor. To get the same behavior as with JSDocs, we need to mark deprected items `internal`. See https://api-extractor.com/pages/tsdoc/tag_deprecated/
sofisl
pushed a commit
that referenced
this pull request
Feb 26, 2026
- [ ] Regenerate this pull request now. Committer: @summer-ji-eng PiperOrigin-RevId: 434859890 Source-Link: googleapis/googleapis@bc2432d Source-Link: googleapis/googleapis-gen@930b673 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiOTMwYjY3MzEwM2U5MjUyM2Y4Y2ZlZDM4ZGVjZDdkM2FmYWU4ZWJlNyJ9
GautamSharda
pushed a commit
that referenced
this pull request
Mar 12, 2026
* common: add writable request streams * correct context
4 tasks
sofisl
pushed a commit
that referenced
this pull request
Mar 17, 2026
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | [`^20.12.10` -> `^20.12.11`](https://renovatebot.com/diffs/npm/@types%2fnode/20.12.10/20.12.11) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/googleapis/gapic-generator-typescript). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNDAuMTAiLCJ1cGRhdGVkSW5WZXIiOiIzNy4zNDAuMTAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=-->
thiyaguk09
pushed a commit
to thiyaguk09/google-cloud-node-fork
that referenced
this pull request
Mar 18, 2026
…leapis#1586) Deprecated properties still show up with api-extractor. To get the same behavior as with JSDocs, we need to mark deprected items `internal`. See https://api-extractor.com/pages/tsdoc/tag_deprecated/
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.
This is pulled out from the Speech PR (#1407) to add a writable request stream.