New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@fluidframework/runtime-definitions

Package Overview
Dependencies
Maintainers
0
Versions
595
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fluidframework/runtime-definitions - npm Package Compare versions

Comparing version 2.5.0 to 2.10.0-304831

11

api-report/runtime-definitions.legacy.alpha.api.md

@@ -97,11 +97,4 @@ ## Alpha API Report File for "@fluidframework/runtime-definitions"

export interface IContainerRuntimeBaseEvents extends IEvent {
// (undocumented)
(event: "batchBegin", listener: (op: Omit<ISequencedDocumentMessage, "contents"> & {
contents: unknown;
}) => void): any;
// (undocumented)
(event: "batchEnd", listener: (error: any, op: Omit<ISequencedDocumentMessage, "contents"> & {
contents: unknown;
}) => void): any;
// (undocumented)
(event: "batchBegin", listener: (op: Omit<ISequencedDocumentMessage, "contents">) => void): any;
(event: "batchEnd", listener: (error: any, op: Omit<ISequencedDocumentMessage, "contents">) => void): any;
(event: "op", listener: (op: ISequencedDocumentMessage, runtimeMessage?: boolean) => void): any;

@@ -108,0 +101,0 @@ // (undocumented)

22

dist/dataStoreContext.d.ts

@@ -90,13 +90,17 @@ /*!

export interface IContainerRuntimeBaseEvents extends IEvent {
(event: "batchBegin", listener: (op: Omit<ISequencedDocumentMessage, "contents"> & {
/** @deprecated Use the "op" event to get details about the message contents */
contents: unknown;
}) => void): any;
(event: "batchEnd", listener: (error: any, op: Omit<ISequencedDocumentMessage, "contents"> & {
/** @deprecated Use the "op" event to get details about the message contents */
contents: unknown;
}) => void): any;
/**
* Indicates the beginning of an incoming batch of ops
* @param op - The first op in the batch. Can be inspected to learn about the sequence numbers relevant for this batch.
*/
(event: "batchBegin", listener: (op: Omit<ISequencedDocumentMessage, "contents">) => void): any;
/**
* Indicates the end of an incoming batch of ops
* @param error - If an error occurred while processing the batch, it is provided here.
* @param op - The last op in the batch. Can be inspected to learn about the sequence numbers relevant for this batch.
*/
(event: "batchEnd", listener: (error: any, op: Omit<ISequencedDocumentMessage, "contents">) => void): any;
/**
* Indicates that an incoming op has been processed.
* @param runtimeMessage - tells if op is runtime op. If it is, it was unpacked, i.e. its type and content
* represent internal container runtime type / content.
* represent internal container runtime type / content. i.e. A grouped batch of N ops will result in N "op" events
*/

@@ -103,0 +107,0 @@ (event: "op", listener: (op: ISequencedDocumentMessage, runtimeMessage?: boolean) => void): any;

@@ -90,13 +90,17 @@ /*!

export interface IContainerRuntimeBaseEvents extends IEvent {
(event: "batchBegin", listener: (op: Omit<ISequencedDocumentMessage, "contents"> & {
/** @deprecated Use the "op" event to get details about the message contents */
contents: unknown;
}) => void): any;
(event: "batchEnd", listener: (error: any, op: Omit<ISequencedDocumentMessage, "contents"> & {
/** @deprecated Use the "op" event to get details about the message contents */
contents: unknown;
}) => void): any;
/**
* Indicates the beginning of an incoming batch of ops
* @param op - The first op in the batch. Can be inspected to learn about the sequence numbers relevant for this batch.
*/
(event: "batchBegin", listener: (op: Omit<ISequencedDocumentMessage, "contents">) => void): any;
/**
* Indicates the end of an incoming batch of ops
* @param error - If an error occurred while processing the batch, it is provided here.
* @param op - The last op in the batch. Can be inspected to learn about the sequence numbers relevant for this batch.
*/
(event: "batchEnd", listener: (error: any, op: Omit<ISequencedDocumentMessage, "contents">) => void): any;
/**
* Indicates that an incoming op has been processed.
* @param runtimeMessage - tells if op is runtime op. If it is, it was unpacked, i.e. its type and content
* represent internal container runtime type / content.
* represent internal container runtime type / content. i.e. A grouped batch of N ops will result in N "op" events
*/

@@ -103,0 +107,0 @@ (event: "op", listener: (op: ISequencedDocumentMessage, runtimeMessage?: boolean) => void): any;

{
"name": "@fluidframework/runtime-definitions",
"version": "2.5.0",
"version": "2.10.0-304831",
"description": "Fluid Runtime definitions",

@@ -50,7 +50,7 @@ "homepage": "https://fluidframework.com",

"dependencies": {
"@fluidframework/container-definitions": "~2.5.0",
"@fluidframework/core-interfaces": "~2.5.0",
"@fluidframework/driver-definitions": "~2.5.0",
"@fluidframework/id-compressor": "~2.5.0",
"@fluidframework/telemetry-utils": "~2.5.0"
"@fluidframework/container-definitions": "2.10.0-304831",
"@fluidframework/core-interfaces": "2.10.0-304831",
"@fluidframework/driver-definitions": "2.10.0-304831",
"@fluidframework/id-compressor": "2.10.0-304831",
"@fluidframework/telemetry-utils": "2.10.0-304831"
},

@@ -60,7 +60,7 @@ "devDependencies": {

"@biomejs/biome": "~1.9.3",
"@fluid-tools/build-cli": "^0.49.0",
"@fluid-tools/build-cli": "^0.50.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.49.0",
"@fluidframework/build-tools": "^0.50.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@fluidframework/runtime-definitions-previous": "npm:@fluidframework/runtime-definitions@~2.4.0",
"@fluidframework/runtime-definitions-previous": "npm:@fluidframework/runtime-definitions@2.5.0",
"@microsoft/api-extractor": "7.47.8",

@@ -67,0 +67,0 @@ "concurrently": "^8.2.1",

@@ -125,24 +125,20 @@ /*!

export interface IContainerRuntimeBaseEvents extends IEvent {
/**
* Indicates the beginning of an incoming batch of ops
* @param op - The first op in the batch. Can be inspected to learn about the sequence numbers relevant for this batch.
*/
(event: "batchBegin", listener: (op: Omit<ISequencedDocumentMessage, "contents">) => void);
/**
* Indicates the end of an incoming batch of ops
* @param error - If an error occurred while processing the batch, it is provided here.
* @param op - The last op in the batch. Can be inspected to learn about the sequence numbers relevant for this batch.
*/
(
event: "batchBegin",
listener: (
op: Omit<ISequencedDocumentMessage, "contents"> & {
/** @deprecated Use the "op" event to get details about the message contents */
contents: unknown;
},
) => void,
);
(
event: "batchEnd",
listener: (
error: any,
op: Omit<ISequencedDocumentMessage, "contents"> & {
/** @deprecated Use the "op" event to get details about the message contents */
contents: unknown;
},
) => void,
listener: (error: any, op: Omit<ISequencedDocumentMessage, "contents">) => void,
);
/**
* Indicates that an incoming op has been processed.
* @param runtimeMessage - tells if op is runtime op. If it is, it was unpacked, i.e. its type and content
* represent internal container runtime type / content.
* represent internal container runtime type / content. i.e. A grouped batch of N ops will result in N "op" events
*/

@@ -149,0 +145,0 @@ (event: "op", listener: (op: ISequencedDocumentMessage, runtimeMessage?: boolean) => void);

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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