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

@liveblocks/core

Package Overview
Dependencies
Maintainers
5
Versions
297
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.3-beta1 to 0.19.3-beta2

19

dist/index.d.ts

@@ -735,6 +735,9 @@ /**

}
interface HistoryEvent {
declare type HistoryEvent = {
canUndo: boolean;
canRedo: boolean;
}
};
declare type PendingHasModificationsEvent = {
hasPendingStorageModifications: boolean;
};
declare type BroadcastOptions = {

@@ -856,5 +859,15 @@ /**

* });
*/
(type: "history", listener: Callback<HistoryEvent>): () => void;
/**
* Subscribe to pending storage modifications updates.
*
* @returns Unsubscribe function.
*
* @example
* room.subscribe("pending-storage-modifications", ({ hasPendingStorageModifications }) => {
* // Do something
* });
*/
(type: "history", listener: Callback<HistoryEvent>): () => void;
(type: "pending-storage-modifications", listener: Callback<PendingHasModificationsEvent>): () => void;
};

@@ -861,0 +874,0 @@ /**

2

package.json
{
"name": "@liveblocks/core",
"version": "0.19.3-beta1",
"version": "0.19.3-beta2",
"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