You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So for me generating the types with --ts_proto_opt=outputServices=grpc-js apparently changes the output stubs, but still imports e.g. the Metadata etc. dependencies from grpc but shouldn't it include them from @grpc/grpc-js instead?
So I expect
import{Metadata}from'@grpc/grpc-js';
but I got
import{Metadata}from'grpc';
so I guess that's probably a bug?
The text was updated successfully, but these errors were encountered:
after after a quick test I realized it doesn't work in combination with --ts_proto_opt=nestJs=true which might was intentional but actually NestJS will switch to grpc-js in v8 so those options should probably work together in the future 🥳
So for me generating the types with
--ts_proto_opt=outputServices=grpc-js
apparently changes the output stubs, but still imports e.g. theMetadata
etc. dependencies fromgrpc
but shouldn't it include them from@grpc/grpc-js
instead?So I expect
but I got
so I guess that's probably a bug?
The text was updated successfully, but these errors were encountered: