Changelog
v1.30.0
GrpcWebImpl
constructorDeepPartial
request types for grpc-web callsChangelog
v1.29.0
toJSON
with maps of messages (#124 by @mscolnick)Changelog
v1.28.0
enum
keyword for modeling keywords againgoogle.protobuf.Timestamp
sgoogle.type.Date
@improbable-eng/grpc-web
runtimeChangelog
v1.27.1
Changelog
v1.27.0
addNestjsRestParameter=true
that adds a ...rest: any
parameter to use NestJS decorators like @CurrentUser
(@ToonvanStrijp)Changelog
v1.26.0
oneof=properties
that generates oneof
s as an Abstract Data Type (ADT) of each option (@philikon)Changelog
v1.25.0
useOptionals=true
option that makes non-scaler/oneof fields optional, i.e. message?: Message
instead of message: Message | undefined
(@philikon)Changelog
v1.24.0
Changelog
v1.23.0
Added a env=both
option and made that the default
This restores the pre-1.22.0 behavior that bytes are Uint8Array
so that the Buffer
support is not a breaking change. Users have to opt-in with env=node
.
Also fixes a bug introduced in 1.22.0 that output an as Buffer
without first checking env=node
.
Changelog
v1.22.0
Added a env=node
/env=browser
option that defaults to env=node
Currently env=node
only changes the types of bytes
from Uint8Array
to Buffer
, as a convenience for Node programming where Buffer
(which is the defacto subclass of Uint8Array
) is more widely used (@dolsup)