@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.
- package/dist/esm/protocol.d.ts +0 -2
- package/package.json +1 -1
- package/src/protocol.ts +0 -2
package/dist/esm/protocol.d.ts
CHANGED
|
@@ -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
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 = {
|