Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More β†’
Socket
Sign inDemoInstall
Socket

@liveblocks/core

Package Overview
Dependencies
Maintainers
6
Versions
300
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@liveblocks/core - npm Package Compare versions

Comparing version 0.19.8 to 0.19.9-beta1

15

dist/index.d.ts

@@ -1295,3 +1295,4 @@ /**

INITIAL_STORAGE_STATE = 200,
UPDATE_STORAGE = 201
UPDATE_STORAGE = 201,
REJECT_STORAGE_OP = 299
}

@@ -1301,3 +1302,3 @@ /**

*/
declare type ServerMsg<TPresence extends JsonObject, TUserMeta extends BaseUserMeta, TRoomEvent extends Json> = UpdatePresenceServerMsg<TPresence> | UserJoinServerMsg<TUserMeta> | UserLeftServerMsg | BroadcastedEventServerMsg<TRoomEvent> | RoomStateServerMsg<TUserMeta> | InitialDocumentStateServerMsg | UpdateStorageServerMsg;
declare type ServerMsg<TPresence extends JsonObject, TUserMeta extends BaseUserMeta, TRoomEvent extends Json> = UpdatePresenceServerMsg<TPresence> | UserJoinServerMsg<TUserMeta> | UserLeftServerMsg | BroadcastedEventServerMsg<TRoomEvent> | RoomStateServerMsg<TUserMeta> | InitialDocumentStateServerMsg | UpdateStorageServerMsg | RejectedStorageOpServerMsg;
/**

@@ -1434,2 +1435,12 @@ * Sent by the WebSocket server and broadcasted to all clients to announce that

};
/**
* Sent by the WebSocket server to the client to indicate that certain opIds
* have been received but were rejected because they caused mutations that are
* incompatible with the Room's schema.
*/
declare type RejectedStorageOpServerMsg = {
readonly type: ServerMsgCode.REJECT_STORAGE_OP;
readonly opIds: string[];
readonly reason: string;
};

@@ -1436,0 +1447,0 @@ /**

2

package.json
{
"name": "@liveblocks/core",
"version": "0.19.8",
"version": "0.19.9-beta1",
"description": "Shared code and foundational internals for Liveblocks",

@@ -5,0 +5,0 @@ "main": "./dist/index.js",

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚑️ by Socket Inc