Stephen Haberman
Stephen Haberman
Just wanted to say thanks again @timostamm ! Really appreciate the help on this PR, and looking forward to @bufbuild/protobuf being a much better runtime for us! :pray:
Hm, I've not seen this, but I don't use `focusworkspaceoncurrentmonitor` just `movecurrentworkspacetomonitor` and every seems fine -- I've tried to spam moving things around to/from empty monitors/workpsaces (abliet without `focusworkspaceoncurrentmonitor`)...
Huh; I thought this was a pretty straight-forward approach, but I'm getting test failures in rehydration:  That shows the `&` getting dropped; but if anything I thought it would...
I reverted to a simpler approach, that doesn't use `replace` and instead uses a `pseudoPrefix` flag to mean "put the class name at the end of `pseudo`". This passes the...
Hi @oliveryasuna , @Simon-Chenzw ts-proto's current behavior stems from two things: a) proto3's original "all message fields are always optional" behavior, and b) ts-proto's POJO-based approach. In proto clients that...
Fwiw I renamed the title; originally it had said "for required fields", but technically your example was using "singular fields" (where singular are "fields that aren't otherwise marked as optional...
Hi @anthony-dandrea , I guess it depends on your interpretation of "safe" :-) . Afaiu there are no scary bugs/broken behaviors in `improbable-eng` , i.e. it is "safe for production"...
Hi @corwinsheahan-wf apologies for not replying sooner; I'd skimmed the PR a few times and couldn't quite succinctly articulate my thoughts/am not super-close to the use case, so just had...
Another use case: ```ts readonly latestVersion: Reference = hasOneDerived( "versions", (tli) => tli.versions.get.find((tliv) => !tliv.final.isSet), ); ``` Could be: ```ts readonly latestVersion: Reference = hasSome("versions", { final: undefined}); ``` *...
Another use case, doing a `hasReactiveReference` that doesn't load the entire collection into memory: ```ts readonly previous: Reference = hasOne( // we return TLIVs TLIV, // the fields within us,...