@verdant-web/common 3.1.0 → 3.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -129,8 +129,6 @@ export type PresenceChangedMessage = {
129
129
  export type PresenceOfflineMessage = {
130
130
  type: 'presence-offline';
131
131
  userId: string;
132
- /** The last replicaID seen by the server before the user was offline */
133
- replicaId: string;
134
132
  };
135
133
  export type GlobalAckMessage = {
136
134
  type: 'global-ack';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdant-web/common",
3
- "version": "3.1.0",
3
+ "version": "3.2.0",
4
4
  "access": "public",
5
5
  "type": "module",
6
6
  "exports": {
package/src/protocol.ts CHANGED
@@ -149,8 +149,6 @@ export type PresenceChangedMessage = {
149
149
  export type PresenceOfflineMessage = {
150
150
  type: 'presence-offline';
151
151
  userId: string;
152
- /** The last replicaID seen by the server before the user was offline */
153
- replicaId: string;
154
152
  };
155
153
 
156
154
  export type GlobalAckMessage = {