Rexios
Rexios
I meant equivalent as in they represent the same event. The answer should be yes.
So if I understood it correctly... only the group events are new in the websocket? Everything else is the same?
How do we want to handle this? I see a few options: 1. Rename the old APIs - Old notification APIs become: `OldNotificaiton`, `OldNotificationsApi`, etc. - New notification APIs are...
Kind of unrelated, but I still have to manually modify the generated dart code to fix an issue with the instances field on the world object
Old generated code that works: ```dart BuiltList? get instances; ``` New generated code that doesn't: ```dart BuiltList? get instances; ``` The exception: ```console Unhandled exception: DioError [DioErrorType.other]: Deserializing '[id, wrld_4cf554b4-430c-4f8f-b53e-1f294eed230b,...
I handle this manually in the Dart SDK
We made a public tenant
Instead of having users with no tenant id, we just made sure everyone has a tenant
All it would take is modifying this method in the Android SDK: ```java public void setTenantId(@NonNull String var1) { Preconditions.checkNotEmpty(var1); synchronized(this.zzj) { this.zzk = var1; } } ``` It looks...
WASM support is stable with Flutter 3.22.0. I would have expected this to be ready for the release or even well before so developers know what packages work with it...