plugin-framework
- Service methods options not showing up in the CodeGeneratorRequest
#192
Unanswered
stefanosusini
asked this question in
Q&A
Replies: 1 comment 1 reply
-
The data of the option Have a look at the plugin's interpreter for an example how to read the unknown fields. What the interpreter does is actually a bit more involved than what you need. What you want is field no 72295728 (see google/api/annotations.proto), and should be able to decode the binary field data using a |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone! Thanks for your time and the great tool! 👍
I'm trying to use the
@protobuf-ts/plugin-framework
to create a specific library for which I need to generate my own ts code.The tool works great in providing all the files to generate and all the dependency files, so I can have the full picture when I generate the code.
My problem rises when I found to a service like the following:
The request contains the following data:
My issue is that the request data has no mention of the
google.api.http
option and its value.Am I doing something wrong? (most likely 😝)
Can anyone give me some insight on this?
Thanks again!
Beta Was this translation helpful? Give feedback.
All reactions