@liveblocks/core 3.20.0-exp3 → 3.20.0-exp4
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/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -514,13 +514,13 @@ type CreateRegisterOp = {
|
|
|
514
514
|
type CreateTextOp = {
|
|
515
515
|
readonly opId?: string;
|
|
516
516
|
readonly id: string;
|
|
517
|
-
readonly intent?: "set";
|
|
518
|
-
readonly deletedId?: string;
|
|
519
517
|
readonly type: OpCode.CREATE_TEXT;
|
|
520
518
|
readonly parentId: string;
|
|
521
519
|
readonly parentKey: string;
|
|
522
520
|
readonly data: LiveTextData;
|
|
523
521
|
readonly version: number;
|
|
522
|
+
readonly intent?: "set" | "push";
|
|
523
|
+
readonly deletedId?: string;
|
|
524
524
|
};
|
|
525
525
|
type UpdateTextOp = {
|
|
526
526
|
readonly opId?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -514,13 +514,13 @@ type CreateRegisterOp = {
|
|
|
514
514
|
type CreateTextOp = {
|
|
515
515
|
readonly opId?: string;
|
|
516
516
|
readonly id: string;
|
|
517
|
-
readonly intent?: "set";
|
|
518
|
-
readonly deletedId?: string;
|
|
519
517
|
readonly type: OpCode.CREATE_TEXT;
|
|
520
518
|
readonly parentId: string;
|
|
521
519
|
readonly parentKey: string;
|
|
522
520
|
readonly data: LiveTextData;
|
|
523
521
|
readonly version: number;
|
|
522
|
+
readonly intent?: "set" | "push";
|
|
523
|
+
readonly deletedId?: string;
|
|
524
524
|
};
|
|
525
525
|
type UpdateTextOp = {
|
|
526
526
|
readonly opId?: string;
|