@univerjs-pro/collaboration 0.12.2 → 0.12.3-experimental.20251205-e439e48

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.
@@ -17,6 +17,8 @@ export interface IChangeset {
17
17
  /** reqId works with sid, should be monotonically increasing and begin with 1 in the same edit session */
18
18
  reqId?: number;
19
19
  mutationSize?: number | undefined;
20
+ /** json string of { runId?: string } */
21
+ additionalFields?: string;
20
22
  }
21
23
  export declare function parseProtocolChangeset(protocolChangeset: IProtocolChangeset): IChangeset;
22
24
  export declare function parseProtocolCommand(protocolCommands: IProtocolCommand[]): ICommandInfo[];