wechaty / grpc

gRPC Service & Protocol Buffers for Wechaty Puppet
https://wechaty.github.io/grpc/
Apache License 2.0
25 stars 22 forks source link

No FileBoxChunk in '@chatie/grpc' #97

Closed windmemory closed 3 years ago

windmemory commented 3 years ago

image

Seems like we haven't export the filebox in the genereated.ts.

// generated.ts
export * from '../generated/wechaty/puppet/base_pb'
export * from '../generated/wechaty/puppet/contact_pb'
export * from '../generated/wechaty/puppet/event_pb'
export * from '../generated/wechaty/puppet/friendship_pb'
export * from '../generated/wechaty/puppet/message_pb'
export * from '../generated/wechaty/puppet/room_invitation_pb'
export * from '../generated/wechaty/puppet/room_member_pb'
export * from '../generated/wechaty/puppet/room_pb'
export * from '../generated/wechaty/puppet/tag_pb'

export * from '../generated/wechaty/puppet_grpc_pb'
export * from '../generated/wechaty/puppet_pb'

So we need to add

export * from '../generated/wechaty/puppet/filebox_pb'

in this file.