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
should be represented as an object { id: 1, fields: ['foo', 'bar', 'baz.quux'] }.
Now it is represented as { id: 1, fields: { paths: ['foo', 'bar', 'baz.quux'] }.
The text was updated successfully, but these errors were encountered:
Closing this out thanks to @buyology 's PR; thanks Robin!
(@alexeyten fwiw I'm open to a follow up issue to represent FieldMask as a string[] directly in the message as well; currently it's a string[] in the JSON, but still a FieldMask message type.)
https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask
This should serialize to JSON as a comma-separated string.
And probably in JS this should be represented as an array of string. E.g. this
should be represented as an object
{ id: 1, fields: ['foo', 'bar', 'baz.quux'] }
.Now it is represented as
{ id: 1, fields: { paths: ['foo', 'bar', 'baz.quux'] }
.The text was updated successfully, but these errors were encountered: