lody 0.95.0 → 0.96.0
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/chunks/{index-qnlCmQGA.js → index-5o35kMTc.js} +11 -11
- package/dist/chunks/{loro_wasm_bg-Br-Fa9wV.js → loro_wasm_bg-Dz8BnaUI.js} +1 -337
- package/dist/chunks/{package-DlotPnLa.js → package-CZY_YQI4.js} +1 -1
- package/dist/chunks/{review-viewer-BXpPp9r0.js → review-viewer-C0rjN6ZQ.js} +4 -4
- package/dist/chunks/{runtime-manifest-FeOT7MvW.js → runtime-manifest-DqfOlvSw.js} +1 -1
- package/dist/claude-acp.js +19013 -17678
- package/dist/codex-acp.js +1 -1
- package/dist/grok-acp.js +1 -1
- package/dist/index.js +483 -268
- package/package.json +3 -3
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { createRequire } from "module";
|
|
2
|
-
import
|
|
2
|
+
import ew__default, { execFile as execFile$1, spawn } from "node:child_process";
|
|
3
3
|
import { createRequire as createRequire$1 } from "node:module";
|
|
4
4
|
import { Writable, Readable } from "node:stream";
|
|
5
5
|
import { StringDecoder } from "node:string_decoder";
|
|
6
6
|
import fs__default from "node:fs";
|
|
7
7
|
import path__default from "node:path";
|
|
8
|
-
import
|
|
8
|
+
import Qt__default, { constants, readFile, realpath } from "node:fs/promises";
|
|
9
9
|
import { randomUUID, createHash } from "node:crypto";
|
|
10
10
|
import process$1 from "node:process";
|
|
11
11
|
import { fileURLToPath } from "node:url";
|
|
@@ -25924,7 +25924,7 @@ var isWsl = () => {
|
|
|
25924
25924
|
return false;
|
|
25925
25925
|
};
|
|
25926
25926
|
var is_wsl_default = process$1.env.__IS_WSL_TEST__ ? isWsl : isWsl();
|
|
25927
|
-
var execFile = promisify(
|
|
25927
|
+
var execFile = promisify(ew__default.execFile);
|
|
25928
25928
|
var powerShellPath = () => `${process$1.env.SYSTEMROOT || process$1.env.windir || String.raw`C:\Windows`}\\System32\\WindowsPowerShell\\v1.0\\powershell.exe`;
|
|
25929
25929
|
var executePowerShell = async (command, options = {}) => {
|
|
25930
25930
|
const {
|
|
@@ -25965,7 +25965,7 @@ function parseMountPointFromConfig(content) {
|
|
|
25965
25965
|
return match.groups.mountPoint.trim().replaceAll(/^["']|["']$/g, "");
|
|
25966
25966
|
}
|
|
25967
25967
|
}
|
|
25968
|
-
var execFile2 = promisify(
|
|
25968
|
+
var execFile2 = promisify(ew__default.execFile);
|
|
25969
25969
|
var wslDrivesMountPoint = /* @__PURE__ */ (() => {
|
|
25970
25970
|
const defaultMountPoint = "/mnt/";
|
|
25971
25971
|
let mountPoint;
|
|
@@ -25976,14 +25976,14 @@ var wslDrivesMountPoint = /* @__PURE__ */ (() => {
|
|
|
25976
25976
|
const configFilePath = "/etc/wsl.conf";
|
|
25977
25977
|
let isConfigFileExists = false;
|
|
25978
25978
|
try {
|
|
25979
|
-
await
|
|
25979
|
+
await Qt__default.access(configFilePath, constants.F_OK);
|
|
25980
25980
|
isConfigFileExists = true;
|
|
25981
25981
|
} catch {
|
|
25982
25982
|
}
|
|
25983
25983
|
if (!isConfigFileExists) {
|
|
25984
25984
|
return defaultMountPoint;
|
|
25985
25985
|
}
|
|
25986
|
-
const configContent = await
|
|
25986
|
+
const configContent = await Qt__default.readFile(configFilePath, { encoding: "utf8" });
|
|
25987
25987
|
const parsedMountPoint = parseMountPointFromConfig(configContent);
|
|
25988
25988
|
if (parsedMountPoint === void 0) {
|
|
25989
25989
|
return defaultMountPoint;
|
|
@@ -26003,7 +26003,7 @@ var canAccessPowerShell = async () => {
|
|
|
26003
26003
|
canAccessPowerShellPromise ??= (async () => {
|
|
26004
26004
|
try {
|
|
26005
26005
|
const psPath = await powerShellPath2();
|
|
26006
|
-
await
|
|
26006
|
+
await Qt__default.access(psPath, constants.X_OK);
|
|
26007
26007
|
return true;
|
|
26008
26008
|
} catch {
|
|
26009
26009
|
return false;
|
|
@@ -26045,7 +26045,7 @@ var convertWslPathToWindows = async (paths) => {
|
|
|
26045
26045
|
}
|
|
26046
26046
|
return isBatch ? results : results[0];
|
|
26047
26047
|
};
|
|
26048
|
-
var execFile3 = promisify(
|
|
26048
|
+
var execFile3 = promisify(ew__default.execFile);
|
|
26049
26049
|
var powerShellPath3 = () => `${process$1.env.SYSTEMROOT || process$1.env.windir || String.raw`C:\Windows`}\\System32\\WindowsPowerShell\\v1.0\\powershell.exe`;
|
|
26050
26050
|
var argumentsPrefix = [
|
|
26051
26051
|
"-NoProfile",
|
|
@@ -26342,7 +26342,7 @@ var baseOpen = async (options) => {
|
|
|
26342
26342
|
const isBundled = !__dirname$1 || __dirname$1 === "/";
|
|
26343
26343
|
let exeLocalXdgOpen = false;
|
|
26344
26344
|
try {
|
|
26345
|
-
await
|
|
26345
|
+
await Qt__default.access(localXdgOpenPath, constants.X_OK);
|
|
26346
26346
|
exeLocalXdgOpen = true;
|
|
26347
26347
|
} catch {
|
|
26348
26348
|
}
|
|
@@ -26363,7 +26363,7 @@ var baseOpen = async (options) => {
|
|
|
26363
26363
|
if (options.target) {
|
|
26364
26364
|
cliArguments.push(options.target);
|
|
26365
26365
|
}
|
|
26366
|
-
const subprocess =
|
|
26366
|
+
const subprocess = ew__default.spawn(command, cliArguments, childProcessOptions);
|
|
26367
26367
|
if (options.wait) {
|
|
26368
26368
|
return new Promise((resolve, reject) => {
|
|
26369
26369
|
subprocess.once("error", reject);
|
|
@@ -26701,7 +26701,7 @@ var package_default = {
|
|
|
26701
26701
|
},
|
|
26702
26702
|
dependencies: {
|
|
26703
26703
|
"@agentclientprotocol/sdk": "^1.4.0",
|
|
26704
|
-
"@openai/codex": "^0.
|
|
26704
|
+
"@openai/codex": "^0.154.0",
|
|
26705
26705
|
"acp-extension-core": "0.1.5",
|
|
26706
26706
|
diff: "^9.0.0",
|
|
26707
26707
|
open: "^11.0.1",
|
|
@@ -4775,343 +4775,7 @@ ${val.stack}`;
|
|
|
4775
4775
|
"__wbindgen_closure_wrapper496": __wbindgen_closure_wrapper496
|
|
4776
4776
|
}
|
|
4777
4777
|
}, __vite__wasmUrl);
|
|
4778
|
-
const memory = __vite__wasmModule
|
|
4779
|
-
const LORO_VERSION = __vite__wasmModule.LORO_VERSION;
|
|
4780
|
-
const __wbg_awarenesswasm_free = __vite__wasmModule.__wbg_awarenesswasm_free;
|
|
4781
|
-
const __wbg_changemodifier_free = __vite__wasmModule.__wbg_changemodifier_free;
|
|
4782
|
-
const __wbg_cursor_free = __vite__wasmModule.__wbg_cursor_free;
|
|
4783
|
-
const __wbg_ephemeralstorewasm_free = __vite__wasmModule.__wbg_ephemeralstorewasm_free;
|
|
4784
|
-
const __wbg_lorocounter_free = __vite__wasmModule.__wbg_lorocounter_free;
|
|
4785
|
-
const __wbg_lorodoc_free = __vite__wasmModule.__wbg_lorodoc_free;
|
|
4786
|
-
const __wbg_lorolist_free = __vite__wasmModule.__wbg_lorolist_free;
|
|
4787
|
-
const __wbg_loromap_free = __vite__wasmModule.__wbg_loromap_free;
|
|
4788
|
-
const __wbg_lorotext_free = __vite__wasmModule.__wbg_lorotext_free;
|
|
4789
|
-
const __wbg_lorotree_free = __vite__wasmModule.__wbg_lorotree_free;
|
|
4790
|
-
const __wbg_lorotreenode_free = __vite__wasmModule.__wbg_lorotreenode_free;
|
|
4791
|
-
const __wbg_undomanager_free = __vite__wasmModule.__wbg_undomanager_free;
|
|
4792
|
-
const __wbg_versionvector_free = __vite__wasmModule.__wbg_versionvector_free;
|
|
4793
|
-
const awarenesswasm_apply = __vite__wasmModule.awarenesswasm_apply;
|
|
4794
|
-
const awarenesswasm_encode = __vite__wasmModule.awarenesswasm_encode;
|
|
4795
|
-
const awarenesswasm_encodeAll = __vite__wasmModule.awarenesswasm_encodeAll;
|
|
4796
|
-
const awarenesswasm_getAllStates = __vite__wasmModule.awarenesswasm_getAllStates;
|
|
4797
|
-
const awarenesswasm_getState = __vite__wasmModule.awarenesswasm_getState;
|
|
4798
|
-
const awarenesswasm_getTimestamp = __vite__wasmModule.awarenesswasm_getTimestamp;
|
|
4799
|
-
const awarenesswasm_isEmpty = __vite__wasmModule.awarenesswasm_isEmpty;
|
|
4800
|
-
const awarenesswasm_length = __vite__wasmModule.awarenesswasm_length;
|
|
4801
|
-
const awarenesswasm_new = __vite__wasmModule.awarenesswasm_new;
|
|
4802
|
-
const awarenesswasm_peer = __vite__wasmModule.awarenesswasm_peer;
|
|
4803
|
-
const awarenesswasm_peers = __vite__wasmModule.awarenesswasm_peers;
|
|
4804
|
-
const awarenesswasm_removeOutdated = __vite__wasmModule.awarenesswasm_removeOutdated;
|
|
4805
|
-
const awarenesswasm_setLocalState = __vite__wasmModule.awarenesswasm_setLocalState;
|
|
4806
|
-
const callPendingEvents = __vite__wasmModule.callPendingEvents;
|
|
4807
|
-
const changemodifier_setMessage = __vite__wasmModule.changemodifier_setMessage;
|
|
4808
|
-
const changemodifier_setTimestamp = __vite__wasmModule.changemodifier_setTimestamp;
|
|
4809
|
-
const cursor_containerId = __vite__wasmModule.cursor_containerId;
|
|
4810
|
-
const cursor_decode = __vite__wasmModule.cursor_decode;
|
|
4811
|
-
const cursor_encode = __vite__wasmModule.cursor_encode;
|
|
4812
|
-
const cursor_kind = __vite__wasmModule.cursor_kind;
|
|
4813
|
-
const cursor_pos = __vite__wasmModule.cursor_pos;
|
|
4814
|
-
const cursor_side = __vite__wasmModule.cursor_side;
|
|
4815
|
-
const decodeFrontiers = __vite__wasmModule.decodeFrontiers;
|
|
4816
|
-
const decodeImportBlobMeta = __vite__wasmModule.decodeImportBlobMeta;
|
|
4817
|
-
const encodeFrontiers = __vite__wasmModule.encodeFrontiers;
|
|
4818
|
-
const ephemeralstorewasm_apply = __vite__wasmModule.ephemeralstorewasm_apply;
|
|
4819
|
-
const ephemeralstorewasm_delete = __vite__wasmModule.ephemeralstorewasm_delete;
|
|
4820
|
-
const ephemeralstorewasm_encode = __vite__wasmModule.ephemeralstorewasm_encode;
|
|
4821
|
-
const ephemeralstorewasm_encodeAll = __vite__wasmModule.ephemeralstorewasm_encodeAll;
|
|
4822
|
-
const ephemeralstorewasm_get = __vite__wasmModule.ephemeralstorewasm_get;
|
|
4823
|
-
const ephemeralstorewasm_getAllStates = __vite__wasmModule.ephemeralstorewasm_getAllStates;
|
|
4824
|
-
const ephemeralstorewasm_isEmpty = __vite__wasmModule.ephemeralstorewasm_isEmpty;
|
|
4825
|
-
const ephemeralstorewasm_keys = __vite__wasmModule.ephemeralstorewasm_keys;
|
|
4826
|
-
const ephemeralstorewasm_new = __vite__wasmModule.ephemeralstorewasm_new;
|
|
4827
|
-
const ephemeralstorewasm_removeOutdated = __vite__wasmModule.ephemeralstorewasm_removeOutdated;
|
|
4828
|
-
const ephemeralstorewasm_set = __vite__wasmModule.ephemeralstorewasm_set;
|
|
4829
|
-
const ephemeralstorewasm_subscribe = __vite__wasmModule.ephemeralstorewasm_subscribe;
|
|
4830
|
-
const ephemeralstorewasm_subscribeLocalUpdates = __vite__wasmModule.ephemeralstorewasm_subscribeLocalUpdates;
|
|
4831
|
-
const isValidContainerId = __vite__wasmModule.isValidContainerId;
|
|
4832
|
-
const lorocounter_decrement = __vite__wasmModule.lorocounter_decrement;
|
|
4833
|
-
const lorocounter_getAttached = __vite__wasmModule.lorocounter_getAttached;
|
|
4834
|
-
const lorocounter_getShallowValue = __vite__wasmModule.lorocounter_getShallowValue;
|
|
4835
|
-
const lorocounter_id = __vite__wasmModule.lorocounter_id;
|
|
4836
|
-
const lorocounter_increment = __vite__wasmModule.lorocounter_increment;
|
|
4837
|
-
const lorocounter_isAttached = __vite__wasmModule.lorocounter_isAttached;
|
|
4838
|
-
const lorocounter_kind = __vite__wasmModule.lorocounter_kind;
|
|
4839
|
-
const lorocounter_new = __vite__wasmModule.lorocounter_new;
|
|
4840
|
-
const lorocounter_parent = __vite__wasmModule.lorocounter_parent;
|
|
4841
|
-
const lorocounter_subscribe = __vite__wasmModule.lorocounter_subscribe;
|
|
4842
|
-
const lorodoc_JSONPath = __vite__wasmModule.lorodoc_JSONPath;
|
|
4843
|
-
const lorodoc_applyDiff = __vite__wasmModule.lorodoc_applyDiff;
|
|
4844
|
-
const lorodoc_attach = __vite__wasmModule.lorodoc_attach;
|
|
4845
|
-
const lorodoc_changeCount = __vite__wasmModule.lorodoc_changeCount;
|
|
4846
|
-
const lorodoc_checkout = __vite__wasmModule.lorodoc_checkout;
|
|
4847
|
-
const lorodoc_checkoutToLatest = __vite__wasmModule.lorodoc_checkoutToLatest;
|
|
4848
|
-
const lorodoc_clearNextCommitOptions = __vite__wasmModule.lorodoc_clearNextCommitOptions;
|
|
4849
|
-
const lorodoc_cmpFrontiers = __vite__wasmModule.lorodoc_cmpFrontiers;
|
|
4850
|
-
const lorodoc_cmpWithFrontiers = __vite__wasmModule.lorodoc_cmpWithFrontiers;
|
|
4851
|
-
const lorodoc_commit = __vite__wasmModule.lorodoc_commit;
|
|
4852
|
-
const lorodoc_configDefaultTextStyle = __vite__wasmModule.lorodoc_configDefaultTextStyle;
|
|
4853
|
-
const lorodoc_configTextStyle = __vite__wasmModule.lorodoc_configTextStyle;
|
|
4854
|
-
const lorodoc_debugHistory = __vite__wasmModule.lorodoc_debugHistory;
|
|
4855
|
-
const lorodoc_deleteRootContainer = __vite__wasmModule.lorodoc_deleteRootContainer;
|
|
4856
|
-
const lorodoc_detach = __vite__wasmModule.lorodoc_detach;
|
|
4857
|
-
const lorodoc_diff = __vite__wasmModule.lorodoc_diff;
|
|
4858
|
-
const lorodoc_export = __vite__wasmModule.lorodoc_export;
|
|
4859
|
-
const lorodoc_exportJsonInIdSpan = __vite__wasmModule.lorodoc_exportJsonInIdSpan;
|
|
4860
|
-
const lorodoc_exportJsonUpdates = __vite__wasmModule.lorodoc_exportJsonUpdates;
|
|
4861
|
-
const lorodoc_findIdSpansBetween = __vite__wasmModule.lorodoc_findIdSpansBetween;
|
|
4862
|
-
const lorodoc_fork = __vite__wasmModule.lorodoc_fork;
|
|
4863
|
-
const lorodoc_forkAt = __vite__wasmModule.lorodoc_forkAt;
|
|
4864
|
-
const lorodoc_fromSnapshot = __vite__wasmModule.lorodoc_fromSnapshot;
|
|
4865
|
-
const lorodoc_frontiers = __vite__wasmModule.lorodoc_frontiers;
|
|
4866
|
-
const lorodoc_frontiersToVV = __vite__wasmModule.lorodoc_frontiersToVV;
|
|
4867
|
-
const lorodoc_getAllChanges = __vite__wasmModule.lorodoc_getAllChanges;
|
|
4868
|
-
const lorodoc_getByPath = __vite__wasmModule.lorodoc_getByPath;
|
|
4869
|
-
const lorodoc_getChangeAt = __vite__wasmModule.lorodoc_getChangeAt;
|
|
4870
|
-
const lorodoc_getChangeAtLamport = __vite__wasmModule.lorodoc_getChangeAtLamport;
|
|
4871
|
-
const lorodoc_getChangedContainersIn = __vite__wasmModule.lorodoc_getChangedContainersIn;
|
|
4872
|
-
const lorodoc_getContainerById = __vite__wasmModule.lorodoc_getContainerById;
|
|
4873
|
-
const lorodoc_getCounter = __vite__wasmModule.lorodoc_getCounter;
|
|
4874
|
-
const lorodoc_getCursorPos = __vite__wasmModule.lorodoc_getCursorPos;
|
|
4875
|
-
const lorodoc_getDeepValueWithID = __vite__wasmModule.lorodoc_getDeepValueWithID;
|
|
4876
|
-
const lorodoc_getList = __vite__wasmModule.lorodoc_getList;
|
|
4877
|
-
const lorodoc_getMap = __vite__wasmModule.lorodoc_getMap;
|
|
4878
|
-
const lorodoc_getMovableList = __vite__wasmModule.lorodoc_getMovableList;
|
|
4879
|
-
const lorodoc_getOpsInChange = __vite__wasmModule.lorodoc_getOpsInChange;
|
|
4880
|
-
const lorodoc_getPathToContainer = __vite__wasmModule.lorodoc_getPathToContainer;
|
|
4881
|
-
const lorodoc_getPendingTxnLength = __vite__wasmModule.lorodoc_getPendingTxnLength;
|
|
4882
|
-
const lorodoc_getShallowValue = __vite__wasmModule.lorodoc_getShallowValue;
|
|
4883
|
-
const lorodoc_getText = __vite__wasmModule.lorodoc_getText;
|
|
4884
|
-
const lorodoc_getTree = __vite__wasmModule.lorodoc_getTree;
|
|
4885
|
-
const lorodoc_getUncommittedOpsAsJson = __vite__wasmModule.lorodoc_getUncommittedOpsAsJson;
|
|
4886
|
-
const lorodoc_hasContainer = __vite__wasmModule.lorodoc_hasContainer;
|
|
4887
|
-
const lorodoc_import = __vite__wasmModule.lorodoc_import;
|
|
4888
|
-
const lorodoc_importBatch = __vite__wasmModule.lorodoc_importBatch;
|
|
4889
|
-
const lorodoc_importJsonUpdates = __vite__wasmModule.lorodoc_importJsonUpdates;
|
|
4890
|
-
const lorodoc_isDetached = __vite__wasmModule.lorodoc_isDetached;
|
|
4891
|
-
const lorodoc_isDetachedEditingEnabled = __vite__wasmModule.lorodoc_isDetachedEditingEnabled;
|
|
4892
|
-
const lorodoc_isShallow = __vite__wasmModule.lorodoc_isShallow;
|
|
4893
|
-
const lorodoc_new = __vite__wasmModule.lorodoc_new;
|
|
4894
|
-
const lorodoc_opCount = __vite__wasmModule.lorodoc_opCount;
|
|
4895
|
-
const lorodoc_oplogFrontiers = __vite__wasmModule.lorodoc_oplogFrontiers;
|
|
4896
|
-
const lorodoc_oplogVersion = __vite__wasmModule.lorodoc_oplogVersion;
|
|
4897
|
-
const lorodoc_peerId = __vite__wasmModule.lorodoc_peerId;
|
|
4898
|
-
const lorodoc_peerIdStr = __vite__wasmModule.lorodoc_peerIdStr;
|
|
4899
|
-
const lorodoc_revertTo = __vite__wasmModule.lorodoc_revertTo;
|
|
4900
|
-
const lorodoc_setChangeMergeInterval = __vite__wasmModule.lorodoc_setChangeMergeInterval;
|
|
4901
|
-
const lorodoc_setDetachedEditing = __vite__wasmModule.lorodoc_setDetachedEditing;
|
|
4902
|
-
const lorodoc_setHideEmptyRootContainers = __vite__wasmModule.lorodoc_setHideEmptyRootContainers;
|
|
4903
|
-
const lorodoc_setNextCommitMessage = __vite__wasmModule.lorodoc_setNextCommitMessage;
|
|
4904
|
-
const lorodoc_setNextCommitOptions = __vite__wasmModule.lorodoc_setNextCommitOptions;
|
|
4905
|
-
const lorodoc_setNextCommitOrigin = __vite__wasmModule.lorodoc_setNextCommitOrigin;
|
|
4906
|
-
const lorodoc_setNextCommitTimestamp = __vite__wasmModule.lorodoc_setNextCommitTimestamp;
|
|
4907
|
-
const lorodoc_setPeerId = __vite__wasmModule.lorodoc_setPeerId;
|
|
4908
|
-
const lorodoc_setRecordTimestamp = __vite__wasmModule.lorodoc_setRecordTimestamp;
|
|
4909
|
-
const lorodoc_shallowSinceFrontiers = __vite__wasmModule.lorodoc_shallowSinceFrontiers;
|
|
4910
|
-
const lorodoc_shallowSinceVV = __vite__wasmModule.lorodoc_shallowSinceVV;
|
|
4911
|
-
const lorodoc_subscribe = __vite__wasmModule.lorodoc_subscribe;
|
|
4912
|
-
const lorodoc_subscribeFirstCommitFromPeer = __vite__wasmModule.lorodoc_subscribeFirstCommitFromPeer;
|
|
4913
|
-
const lorodoc_subscribeJsonpath = __vite__wasmModule.lorodoc_subscribeJsonpath;
|
|
4914
|
-
const lorodoc_subscribeLocalUpdates = __vite__wasmModule.lorodoc_subscribeLocalUpdates;
|
|
4915
|
-
const lorodoc_subscribePreCommit = __vite__wasmModule.lorodoc_subscribePreCommit;
|
|
4916
|
-
const lorodoc_toJSON = __vite__wasmModule.lorodoc_toJSON;
|
|
4917
|
-
const lorodoc_travelChangeAncestors = __vite__wasmModule.lorodoc_travelChangeAncestors;
|
|
4918
|
-
const lorodoc_version = __vite__wasmModule.lorodoc_version;
|
|
4919
|
-
const lorodoc_vvToFrontiers = __vite__wasmModule.lorodoc_vvToFrontiers;
|
|
4920
|
-
const lorolist_clear = __vite__wasmModule.lorolist_clear;
|
|
4921
|
-
const lorolist_delete = __vite__wasmModule.lorolist_delete;
|
|
4922
|
-
const lorolist_get = __vite__wasmModule.lorolist_get;
|
|
4923
|
-
const lorolist_getAttached = __vite__wasmModule.lorolist_getAttached;
|
|
4924
|
-
const lorolist_getCursor = __vite__wasmModule.lorolist_getCursor;
|
|
4925
|
-
const lorolist_getIdAt = __vite__wasmModule.lorolist_getIdAt;
|
|
4926
|
-
const lorolist_getShallowValue = __vite__wasmModule.lorolist_getShallowValue;
|
|
4927
|
-
const lorolist_id = __vite__wasmModule.lorolist_id;
|
|
4928
|
-
const lorolist_insert = __vite__wasmModule.lorolist_insert;
|
|
4929
|
-
const lorolist_insertContainer = __vite__wasmModule.lorolist_insertContainer;
|
|
4930
|
-
const lorolist_isAttached = __vite__wasmModule.lorolist_isAttached;
|
|
4931
|
-
const lorolist_isDeleted = __vite__wasmModule.lorolist_isDeleted;
|
|
4932
|
-
const lorolist_kind = __vite__wasmModule.lorolist_kind;
|
|
4933
|
-
const lorolist_length = __vite__wasmModule.lorolist_length;
|
|
4934
|
-
const lorolist_new = __vite__wasmModule.lorolist_new;
|
|
4935
|
-
const lorolist_parent = __vite__wasmModule.lorolist_parent;
|
|
4936
|
-
const lorolist_pop = __vite__wasmModule.lorolist_pop;
|
|
4937
|
-
const lorolist_push = __vite__wasmModule.lorolist_push;
|
|
4938
|
-
const lorolist_pushContainer = __vite__wasmModule.lorolist_pushContainer;
|
|
4939
|
-
const lorolist_subscribe = __vite__wasmModule.lorolist_subscribe;
|
|
4940
|
-
const lorolist_toArray = __vite__wasmModule.lorolist_toArray;
|
|
4941
|
-
const lorolist_toJSON = __vite__wasmModule.lorolist_toJSON;
|
|
4942
|
-
const loromap_clear = __vite__wasmModule.loromap_clear;
|
|
4943
|
-
const loromap_delete = __vite__wasmModule.loromap_delete;
|
|
4944
|
-
const loromap_ensureMergeableCounter = __vite__wasmModule.loromap_ensureMergeableCounter;
|
|
4945
|
-
const loromap_ensureMergeableList = __vite__wasmModule.loromap_ensureMergeableList;
|
|
4946
|
-
const loromap_ensureMergeableMap = __vite__wasmModule.loromap_ensureMergeableMap;
|
|
4947
|
-
const loromap_ensureMergeableMovableList = __vite__wasmModule.loromap_ensureMergeableMovableList;
|
|
4948
|
-
const loromap_ensureMergeableText = __vite__wasmModule.loromap_ensureMergeableText;
|
|
4949
|
-
const loromap_ensureMergeableTree = __vite__wasmModule.loromap_ensureMergeableTree;
|
|
4950
|
-
const loromap_entries = __vite__wasmModule.loromap_entries;
|
|
4951
|
-
const loromap_get = __vite__wasmModule.loromap_get;
|
|
4952
|
-
const loromap_getAttached = __vite__wasmModule.loromap_getAttached;
|
|
4953
|
-
const loromap_getLastEditor = __vite__wasmModule.loromap_getLastEditor;
|
|
4954
|
-
const loromap_getOrCreateContainer = __vite__wasmModule.loromap_getOrCreateContainer;
|
|
4955
|
-
const loromap_getShallowValue = __vite__wasmModule.loromap_getShallowValue;
|
|
4956
|
-
const loromap_id = __vite__wasmModule.loromap_id;
|
|
4957
|
-
const loromap_isAttached = __vite__wasmModule.loromap_isAttached;
|
|
4958
|
-
const loromap_isDeleted = __vite__wasmModule.loromap_isDeleted;
|
|
4959
|
-
const loromap_keys = __vite__wasmModule.loromap_keys;
|
|
4960
|
-
const loromap_kind = __vite__wasmModule.loromap_kind;
|
|
4961
|
-
const loromap_new = __vite__wasmModule.loromap_new;
|
|
4962
|
-
const loromap_parent = __vite__wasmModule.loromap_parent;
|
|
4963
|
-
const loromap_set = __vite__wasmModule.loromap_set;
|
|
4964
|
-
const loromap_setContainer = __vite__wasmModule.loromap_setContainer;
|
|
4965
|
-
const loromap_size = __vite__wasmModule.loromap_size;
|
|
4966
|
-
const loromap_subscribe = __vite__wasmModule.loromap_subscribe;
|
|
4967
|
-
const loromap_toJSON = __vite__wasmModule.loromap_toJSON;
|
|
4968
|
-
const loromap_values = __vite__wasmModule.loromap_values;
|
|
4969
|
-
const loromovablelist_clear = __vite__wasmModule.loromovablelist_clear;
|
|
4970
|
-
const loromovablelist_delete = __vite__wasmModule.loromovablelist_delete;
|
|
4971
|
-
const loromovablelist_get = __vite__wasmModule.loromovablelist_get;
|
|
4972
|
-
const loromovablelist_getAttached = __vite__wasmModule.loromovablelist_getAttached;
|
|
4973
|
-
const loromovablelist_getCreatorAt = __vite__wasmModule.loromovablelist_getCreatorAt;
|
|
4974
|
-
const loromovablelist_getCursor = __vite__wasmModule.loromovablelist_getCursor;
|
|
4975
|
-
const loromovablelist_getLastEditorAt = __vite__wasmModule.loromovablelist_getLastEditorAt;
|
|
4976
|
-
const loromovablelist_getLastMoverAt = __vite__wasmModule.loromovablelist_getLastMoverAt;
|
|
4977
|
-
const loromovablelist_getShallowValue = __vite__wasmModule.loromovablelist_getShallowValue;
|
|
4978
|
-
const loromovablelist_id = __vite__wasmModule.loromovablelist_id;
|
|
4979
|
-
const loromovablelist_insert = __vite__wasmModule.loromovablelist_insert;
|
|
4980
|
-
const loromovablelist_insertContainer = __vite__wasmModule.loromovablelist_insertContainer;
|
|
4981
|
-
const loromovablelist_isAttached = __vite__wasmModule.loromovablelist_isAttached;
|
|
4982
|
-
const loromovablelist_isDeleted = __vite__wasmModule.loromovablelist_isDeleted;
|
|
4983
|
-
const loromovablelist_kind = __vite__wasmModule.loromovablelist_kind;
|
|
4984
|
-
const loromovablelist_length = __vite__wasmModule.loromovablelist_length;
|
|
4985
|
-
const loromovablelist_move = __vite__wasmModule.loromovablelist_move;
|
|
4986
|
-
const loromovablelist_new = __vite__wasmModule.loromovablelist_new;
|
|
4987
|
-
const loromovablelist_parent = __vite__wasmModule.loromovablelist_parent;
|
|
4988
|
-
const loromovablelist_pop = __vite__wasmModule.loromovablelist_pop;
|
|
4989
|
-
const loromovablelist_push = __vite__wasmModule.loromovablelist_push;
|
|
4990
|
-
const loromovablelist_pushContainer = __vite__wasmModule.loromovablelist_pushContainer;
|
|
4991
|
-
const loromovablelist_set = __vite__wasmModule.loromovablelist_set;
|
|
4992
|
-
const loromovablelist_setContainer = __vite__wasmModule.loromovablelist_setContainer;
|
|
4993
|
-
const loromovablelist_subscribe = __vite__wasmModule.loromovablelist_subscribe;
|
|
4994
|
-
const loromovablelist_toArray = __vite__wasmModule.loromovablelist_toArray;
|
|
4995
|
-
const loromovablelist_toJSON = __vite__wasmModule.loromovablelist_toJSON;
|
|
4996
|
-
const lorotext_applyDelta = __vite__wasmModule.lorotext_applyDelta;
|
|
4997
|
-
const lorotext_charAt = __vite__wasmModule.lorotext_charAt;
|
|
4998
|
-
const lorotext_convertPos = __vite__wasmModule.lorotext_convertPos;
|
|
4999
|
-
const lorotext_delete = __vite__wasmModule.lorotext_delete;
|
|
5000
|
-
const lorotext_deleteUtf8 = __vite__wasmModule.lorotext_deleteUtf8;
|
|
5001
|
-
const lorotext_getAttached = __vite__wasmModule.lorotext_getAttached;
|
|
5002
|
-
const lorotext_getCursor = __vite__wasmModule.lorotext_getCursor;
|
|
5003
|
-
const lorotext_getEditorOf = __vite__wasmModule.lorotext_getEditorOf;
|
|
5004
|
-
const lorotext_getShallowValue = __vite__wasmModule.lorotext_getShallowValue;
|
|
5005
|
-
const lorotext_id = __vite__wasmModule.lorotext_id;
|
|
5006
|
-
const lorotext_insert = __vite__wasmModule.lorotext_insert;
|
|
5007
|
-
const lorotext_insertUtf8 = __vite__wasmModule.lorotext_insertUtf8;
|
|
5008
|
-
const lorotext_isAttached = __vite__wasmModule.lorotext_isAttached;
|
|
5009
|
-
const lorotext_isDeleted = __vite__wasmModule.lorotext_isDeleted;
|
|
5010
|
-
const lorotext_iter = __vite__wasmModule.lorotext_iter;
|
|
5011
|
-
const lorotext_kind = __vite__wasmModule.lorotext_kind;
|
|
5012
|
-
const lorotext_length = __vite__wasmModule.lorotext_length;
|
|
5013
|
-
const lorotext_mark = __vite__wasmModule.lorotext_mark;
|
|
5014
|
-
const lorotext_new = __vite__wasmModule.lorotext_new;
|
|
5015
|
-
const lorotext_parent = __vite__wasmModule.lorotext_parent;
|
|
5016
|
-
const lorotext_push = __vite__wasmModule.lorotext_push;
|
|
5017
|
-
const lorotext_slice = __vite__wasmModule.lorotext_slice;
|
|
5018
|
-
const lorotext_sliceDelta = __vite__wasmModule.lorotext_sliceDelta;
|
|
5019
|
-
const lorotext_sliceDeltaUtf8 = __vite__wasmModule.lorotext_sliceDeltaUtf8;
|
|
5020
|
-
const lorotext_splice = __vite__wasmModule.lorotext_splice;
|
|
5021
|
-
const lorotext_subscribe = __vite__wasmModule.lorotext_subscribe;
|
|
5022
|
-
const lorotext_toDelta = __vite__wasmModule.lorotext_toDelta;
|
|
5023
|
-
const lorotext_toJSON = __vite__wasmModule.lorotext_toJSON;
|
|
5024
|
-
const lorotext_toString = __vite__wasmModule.lorotext_toString;
|
|
5025
|
-
const lorotext_unmark = __vite__wasmModule.lorotext_unmark;
|
|
5026
|
-
const lorotext_update = __vite__wasmModule.lorotext_update;
|
|
5027
|
-
const lorotext_updateByLine = __vite__wasmModule.lorotext_updateByLine;
|
|
5028
|
-
const lorotree_createNode = __vite__wasmModule.lorotree_createNode;
|
|
5029
|
-
const lorotree_delete = __vite__wasmModule.lorotree_delete;
|
|
5030
|
-
const lorotree_disableFractionalIndex = __vite__wasmModule.lorotree_disableFractionalIndex;
|
|
5031
|
-
const lorotree_enableFractionalIndex = __vite__wasmModule.lorotree_enableFractionalIndex;
|
|
5032
|
-
const lorotree_getAttached = __vite__wasmModule.lorotree_getAttached;
|
|
5033
|
-
const lorotree_getNodeByID = __vite__wasmModule.lorotree_getNodeByID;
|
|
5034
|
-
const lorotree_getNodes = __vite__wasmModule.lorotree_getNodes;
|
|
5035
|
-
const lorotree_getShallowValue = __vite__wasmModule.lorotree_getShallowValue;
|
|
5036
|
-
const lorotree_has = __vite__wasmModule.lorotree_has;
|
|
5037
|
-
const lorotree_id = __vite__wasmModule.lorotree_id;
|
|
5038
|
-
const lorotree_isAttached = __vite__wasmModule.lorotree_isAttached;
|
|
5039
|
-
const lorotree_isDeleted = __vite__wasmModule.lorotree_isDeleted;
|
|
5040
|
-
const lorotree_isFractionalIndexEnabled = __vite__wasmModule.lorotree_isFractionalIndexEnabled;
|
|
5041
|
-
const lorotree_isNodeDeleted = __vite__wasmModule.lorotree_isNodeDeleted;
|
|
5042
|
-
const lorotree_kind = __vite__wasmModule.lorotree_kind;
|
|
5043
|
-
const lorotree_move = __vite__wasmModule.lorotree_move;
|
|
5044
|
-
const lorotree_new = __vite__wasmModule.lorotree_new;
|
|
5045
|
-
const lorotree_nodes = __vite__wasmModule.lorotree_nodes;
|
|
5046
|
-
const lorotree_parent = __vite__wasmModule.lorotree_parent;
|
|
5047
|
-
const lorotree_roots = __vite__wasmModule.lorotree_roots;
|
|
5048
|
-
const lorotree_subscribe = __vite__wasmModule.lorotree_subscribe;
|
|
5049
|
-
const lorotree_toArray = __vite__wasmModule.lorotree_toArray;
|
|
5050
|
-
const lorotree_toJSON = __vite__wasmModule.lorotree_toJSON;
|
|
5051
|
-
const lorotreenode___getClassname = __vite__wasmModule.lorotreenode___getClassname;
|
|
5052
|
-
const lorotreenode_children = __vite__wasmModule.lorotreenode_children;
|
|
5053
|
-
const lorotreenode_createNode = __vite__wasmModule.lorotreenode_createNode;
|
|
5054
|
-
const lorotreenode_creationId = __vite__wasmModule.lorotreenode_creationId;
|
|
5055
|
-
const lorotreenode_creator = __vite__wasmModule.lorotreenode_creator;
|
|
5056
|
-
const lorotreenode_data = __vite__wasmModule.lorotreenode_data;
|
|
5057
|
-
const lorotreenode_fractionalIndex = __vite__wasmModule.lorotreenode_fractionalIndex;
|
|
5058
|
-
const lorotreenode_getLastMoveId = __vite__wasmModule.lorotreenode_getLastMoveId;
|
|
5059
|
-
const lorotreenode_id = __vite__wasmModule.lorotreenode_id;
|
|
5060
|
-
const lorotreenode_index = __vite__wasmModule.lorotreenode_index;
|
|
5061
|
-
const lorotreenode_isDeleted = __vite__wasmModule.lorotreenode_isDeleted;
|
|
5062
|
-
const lorotreenode_move = __vite__wasmModule.lorotreenode_move;
|
|
5063
|
-
const lorotreenode_moveAfter = __vite__wasmModule.lorotreenode_moveAfter;
|
|
5064
|
-
const lorotreenode_moveBefore = __vite__wasmModule.lorotreenode_moveBefore;
|
|
5065
|
-
const lorotreenode_parent = __vite__wasmModule.lorotreenode_parent;
|
|
5066
|
-
const lorotreenode_toJSON = __vite__wasmModule.lorotreenode_toJSON;
|
|
5067
|
-
const redactJsonUpdates = __vite__wasmModule.redactJsonUpdates;
|
|
5068
|
-
const run = __vite__wasmModule.run;
|
|
5069
|
-
const setDebug = __vite__wasmModule.setDebug;
|
|
5070
|
-
const undomanager_addExcludeOriginPrefix = __vite__wasmModule.undomanager_addExcludeOriginPrefix;
|
|
5071
|
-
const undomanager_canRedo = __vite__wasmModule.undomanager_canRedo;
|
|
5072
|
-
const undomanager_canUndo = __vite__wasmModule.undomanager_canUndo;
|
|
5073
|
-
const undomanager_clear = __vite__wasmModule.undomanager_clear;
|
|
5074
|
-
const undomanager_clearRedo = __vite__wasmModule.undomanager_clearRedo;
|
|
5075
|
-
const undomanager_clearUndo = __vite__wasmModule.undomanager_clearUndo;
|
|
5076
|
-
const undomanager_groupEnd = __vite__wasmModule.undomanager_groupEnd;
|
|
5077
|
-
const undomanager_groupStart = __vite__wasmModule.undomanager_groupStart;
|
|
5078
|
-
const undomanager_isPaused = __vite__wasmModule.undomanager_isPaused;
|
|
5079
|
-
const undomanager_new = __vite__wasmModule.undomanager_new;
|
|
5080
|
-
const undomanager_pause = __vite__wasmModule.undomanager_pause;
|
|
5081
|
-
const undomanager_peer = __vite__wasmModule.undomanager_peer;
|
|
5082
|
-
const undomanager_redo = __vite__wasmModule.undomanager_redo;
|
|
5083
|
-
const undomanager_resume = __vite__wasmModule.undomanager_resume;
|
|
5084
|
-
const undomanager_setMaxUndoSteps = __vite__wasmModule.undomanager_setMaxUndoSteps;
|
|
5085
|
-
const undomanager_setMergeInterval = __vite__wasmModule.undomanager_setMergeInterval;
|
|
5086
|
-
const undomanager_setOnPop = __vite__wasmModule.undomanager_setOnPop;
|
|
5087
|
-
const undomanager_setOnPush = __vite__wasmModule.undomanager_setOnPush;
|
|
5088
|
-
const undomanager_topRedoValue = __vite__wasmModule.undomanager_topRedoValue;
|
|
5089
|
-
const undomanager_topUndoValue = __vite__wasmModule.undomanager_topUndoValue;
|
|
5090
|
-
const undomanager_undo = __vite__wasmModule.undomanager_undo;
|
|
5091
|
-
const versionvector_compare = __vite__wasmModule.versionvector_compare;
|
|
5092
|
-
const versionvector_decode = __vite__wasmModule.versionvector_decode;
|
|
5093
|
-
const versionvector_encode = __vite__wasmModule.versionvector_encode;
|
|
5094
|
-
const versionvector_get = __vite__wasmModule.versionvector_get;
|
|
5095
|
-
const versionvector_length = __vite__wasmModule.versionvector_length;
|
|
5096
|
-
const versionvector_new = __vite__wasmModule.versionvector_new;
|
|
5097
|
-
const versionvector_parseJSON = __vite__wasmModule.versionvector_parseJSON;
|
|
5098
|
-
const versionvector_remove = __vite__wasmModule.versionvector_remove;
|
|
5099
|
-
const versionvector_setEnd = __vite__wasmModule.versionvector_setEnd;
|
|
5100
|
-
const versionvector_setLast = __vite__wasmModule.versionvector_setLast;
|
|
5101
|
-
const versionvector_toJSON = __vite__wasmModule.versionvector_toJSON;
|
|
5102
|
-
const lorodoc_importUpdateBatch = __vite__wasmModule.lorodoc_importUpdateBatch;
|
|
5103
|
-
const __wbg_loromovablelist_free = __vite__wasmModule.__wbg_loromovablelist_free;
|
|
5104
|
-
const lorocounter_toJSON = __vite__wasmModule.lorocounter_toJSON;
|
|
5105
|
-
const lorocounter_value = __vite__wasmModule.lorocounter_value;
|
|
5106
|
-
const __wbindgen_malloc = __vite__wasmModule.__wbindgen_malloc;
|
|
5107
|
-
const __wbindgen_realloc = __vite__wasmModule.__wbindgen_realloc;
|
|
5108
|
-
const __wbindgen_exn_store = __vite__wasmModule.__wbindgen_exn_store;
|
|
5109
|
-
const __wbindgen_free = __vite__wasmModule.__wbindgen_free;
|
|
5110
|
-
const __wbindgen_export_4 = __vite__wasmModule.__wbindgen_export_4;
|
|
5111
|
-
const __wbindgen_add_to_stack_pointer = __vite__wasmModule.__wbindgen_add_to_stack_pointer;
|
|
5112
|
-
const _dyn_core_9b3796e30d99ddb7___ops__function__FnMut_______Output______as_wasm_bindgen_c71729c74976bed3___closure__WasmClosure___describe__invoke___wasm_bindgen_c71729c74976bed3___JsValue_____ = __vite__wasmModule._dyn_core_9b3796e30d99ddb7___ops__function__FnMut_______Output______as_wasm_bindgen_c71729c74976bed3___closure__WasmClosure___describe__invoke___wasm_bindgen_c71729c74976bed3___JsValue_____;
|
|
5113
|
-
const _dyn_core_9b3796e30d99ddb7___ops__function__FnMut_____Output______as_wasm_bindgen_c71729c74976bed3___closure__WasmClosure___describe__invoke______ = __vite__wasmModule._dyn_core_9b3796e30d99ddb7___ops__function__FnMut_____Output______as_wasm_bindgen_c71729c74976bed3___closure__WasmClosure___describe__invoke______;
|
|
5114
|
-
const __wbindgen_start = __vite__wasmModule.__wbindgen_start;
|
|
4778
|
+
const { memory, LORO_VERSION, __wbg_awarenesswasm_free, __wbg_changemodifier_free, __wbg_cursor_free, __wbg_ephemeralstorewasm_free, __wbg_lorocounter_free, __wbg_lorodoc_free, __wbg_lorolist_free, __wbg_loromap_free, __wbg_lorotext_free, __wbg_lorotree_free, __wbg_lorotreenode_free, __wbg_undomanager_free, __wbg_versionvector_free, awarenesswasm_apply, awarenesswasm_encode, awarenesswasm_encodeAll, awarenesswasm_getAllStates, awarenesswasm_getState, awarenesswasm_getTimestamp, awarenesswasm_isEmpty, awarenesswasm_length, awarenesswasm_new, awarenesswasm_peer, awarenesswasm_peers, awarenesswasm_removeOutdated, awarenesswasm_setLocalState, callPendingEvents, changemodifier_setMessage, changemodifier_setTimestamp, cursor_containerId, cursor_decode, cursor_encode, cursor_kind, cursor_pos, cursor_side, decodeFrontiers, decodeImportBlobMeta, encodeFrontiers, ephemeralstorewasm_apply, ephemeralstorewasm_delete, ephemeralstorewasm_encode, ephemeralstorewasm_encodeAll, ephemeralstorewasm_get, ephemeralstorewasm_getAllStates, ephemeralstorewasm_isEmpty, ephemeralstorewasm_keys, ephemeralstorewasm_new, ephemeralstorewasm_removeOutdated, ephemeralstorewasm_set, ephemeralstorewasm_subscribe, ephemeralstorewasm_subscribeLocalUpdates, isValidContainerId, lorocounter_decrement, lorocounter_getAttached, lorocounter_getShallowValue, lorocounter_id, lorocounter_increment, lorocounter_isAttached, lorocounter_kind, lorocounter_new, lorocounter_parent, lorocounter_subscribe, lorodoc_JSONPath, lorodoc_applyDiff, lorodoc_attach, lorodoc_changeCount, lorodoc_checkout, lorodoc_checkoutToLatest, lorodoc_clearNextCommitOptions, lorodoc_cmpFrontiers, lorodoc_cmpWithFrontiers, lorodoc_commit, lorodoc_configDefaultTextStyle, lorodoc_configTextStyle, lorodoc_debugHistory, lorodoc_deleteRootContainer, lorodoc_detach, lorodoc_diff, lorodoc_export, lorodoc_exportJsonInIdSpan, lorodoc_exportJsonUpdates, lorodoc_findIdSpansBetween, lorodoc_fork, lorodoc_forkAt, lorodoc_fromSnapshot, lorodoc_frontiers, lorodoc_frontiersToVV, lorodoc_getAllChanges, lorodoc_getByPath, lorodoc_getChangeAt, lorodoc_getChangeAtLamport, lorodoc_getChangedContainersIn, lorodoc_getContainerById, lorodoc_getCounter, lorodoc_getCursorPos, lorodoc_getDeepValueWithID, lorodoc_getList, lorodoc_getMap, lorodoc_getMovableList, lorodoc_getOpsInChange, lorodoc_getPathToContainer, lorodoc_getPendingTxnLength, lorodoc_getShallowValue, lorodoc_getText, lorodoc_getTree, lorodoc_getUncommittedOpsAsJson, lorodoc_hasContainer, lorodoc_import, lorodoc_importBatch, lorodoc_importJsonUpdates, lorodoc_isDetached, lorodoc_isDetachedEditingEnabled, lorodoc_isShallow, lorodoc_new, lorodoc_opCount, lorodoc_oplogFrontiers, lorodoc_oplogVersion, lorodoc_peerId, lorodoc_peerIdStr, lorodoc_revertTo, lorodoc_setChangeMergeInterval, lorodoc_setDetachedEditing, lorodoc_setHideEmptyRootContainers, lorodoc_setNextCommitMessage, lorodoc_setNextCommitOptions, lorodoc_setNextCommitOrigin, lorodoc_setNextCommitTimestamp, lorodoc_setPeerId, lorodoc_setRecordTimestamp, lorodoc_shallowSinceFrontiers, lorodoc_shallowSinceVV, lorodoc_subscribe, lorodoc_subscribeFirstCommitFromPeer, lorodoc_subscribeJsonpath, lorodoc_subscribeLocalUpdates, lorodoc_subscribePreCommit, lorodoc_toJSON, lorodoc_travelChangeAncestors, lorodoc_version, lorodoc_vvToFrontiers, lorolist_clear, lorolist_delete, lorolist_get, lorolist_getAttached, lorolist_getCursor, lorolist_getIdAt, lorolist_getShallowValue, lorolist_id, lorolist_insert, lorolist_insertContainer, lorolist_isAttached, lorolist_isDeleted, lorolist_kind, lorolist_length, lorolist_new, lorolist_parent, lorolist_pop, lorolist_push, lorolist_pushContainer, lorolist_subscribe, lorolist_toArray, lorolist_toJSON, loromap_clear, loromap_delete, loromap_ensureMergeableCounter, loromap_ensureMergeableList, loromap_ensureMergeableMap, loromap_ensureMergeableMovableList, loromap_ensureMergeableText, loromap_ensureMergeableTree, loromap_entries, loromap_get, loromap_getAttached, loromap_getLastEditor, loromap_getOrCreateContainer, loromap_getShallowValue, loromap_id, loromap_isAttached, loromap_isDeleted, loromap_keys, loromap_kind, loromap_new, loromap_parent, loromap_set, loromap_setContainer, loromap_size, loromap_subscribe, loromap_toJSON, loromap_values, loromovablelist_clear, loromovablelist_delete, loromovablelist_get, loromovablelist_getAttached, loromovablelist_getCreatorAt, loromovablelist_getCursor, loromovablelist_getLastEditorAt, loromovablelist_getLastMoverAt, loromovablelist_getShallowValue, loromovablelist_id, loromovablelist_insert, loromovablelist_insertContainer, loromovablelist_isAttached, loromovablelist_isDeleted, loromovablelist_kind, loromovablelist_length, loromovablelist_move, loromovablelist_new, loromovablelist_parent, loromovablelist_pop, loromovablelist_push, loromovablelist_pushContainer, loromovablelist_set, loromovablelist_setContainer, loromovablelist_subscribe, loromovablelist_toArray, loromovablelist_toJSON, lorotext_applyDelta, lorotext_charAt, lorotext_convertPos, lorotext_delete, lorotext_deleteUtf8, lorotext_getAttached, lorotext_getCursor, lorotext_getEditorOf, lorotext_getShallowValue, lorotext_id, lorotext_insert, lorotext_insertUtf8, lorotext_isAttached, lorotext_isDeleted, lorotext_iter, lorotext_kind, lorotext_length, lorotext_mark, lorotext_new, lorotext_parent, lorotext_push, lorotext_slice, lorotext_sliceDelta, lorotext_sliceDeltaUtf8, lorotext_splice, lorotext_subscribe, lorotext_toDelta, lorotext_toJSON, lorotext_toString, lorotext_unmark, lorotext_update, lorotext_updateByLine, lorotree_createNode, lorotree_delete, lorotree_disableFractionalIndex, lorotree_enableFractionalIndex, lorotree_getAttached, lorotree_getNodeByID, lorotree_getNodes, lorotree_getShallowValue, lorotree_has, lorotree_id, lorotree_isAttached, lorotree_isDeleted, lorotree_isFractionalIndexEnabled, lorotree_isNodeDeleted, lorotree_kind, lorotree_move, lorotree_new, lorotree_nodes, lorotree_parent, lorotree_roots, lorotree_subscribe, lorotree_toArray, lorotree_toJSON, lorotreenode___getClassname, lorotreenode_children, lorotreenode_createNode, lorotreenode_creationId, lorotreenode_creator, lorotreenode_data, lorotreenode_fractionalIndex, lorotreenode_getLastMoveId, lorotreenode_id, lorotreenode_index, lorotreenode_isDeleted, lorotreenode_move, lorotreenode_moveAfter, lorotreenode_moveBefore, lorotreenode_parent, lorotreenode_toJSON, redactJsonUpdates, run, setDebug, undomanager_addExcludeOriginPrefix, undomanager_canRedo, undomanager_canUndo, undomanager_clear, undomanager_clearRedo, undomanager_clearUndo, undomanager_groupEnd, undomanager_groupStart, undomanager_isPaused, undomanager_new, undomanager_pause, undomanager_peer, undomanager_redo, undomanager_resume, undomanager_setMaxUndoSteps, undomanager_setMergeInterval, undomanager_setOnPop, undomanager_setOnPush, undomanager_topRedoValue, undomanager_topUndoValue, undomanager_undo, versionvector_compare, versionvector_decode, versionvector_encode, versionvector_get, versionvector_length, versionvector_new, versionvector_parseJSON, versionvector_remove, versionvector_setEnd, versionvector_setLast, versionvector_toJSON, lorodoc_importUpdateBatch, __wbg_loromovablelist_free, lorocounter_toJSON, lorocounter_value, __wbindgen_malloc, __wbindgen_realloc, __wbindgen_exn_store, __wbindgen_free, __wbindgen_export_4, __wbindgen_add_to_stack_pointer, _dyn_core_9b3796e30d99ddb7___ops__function__FnMut_______Output______as_wasm_bindgen_c71729c74976bed3___closure__WasmClosure___describe__invoke___wasm_bindgen_c71729c74976bed3___JsValue_____, _dyn_core_9b3796e30d99ddb7___ops__function__FnMut_____Output______as_wasm_bindgen_c71729c74976bed3___closure__WasmClosure___describe__invoke______, __wbindgen_start } = __vite__wasmModule;
|
|
5115
4779
|
rawWasm = Object.freeze(Object.defineProperty({
|
|
5116
4780
|
__proto__: null,
|
|
5117
4781
|
LORO_VERSION,
|
|
@@ -30,7 +30,7 @@ import "child_process";
|
|
|
30
30
|
import "./plan-mode-BLOER-fv.js";
|
|
31
31
|
import "./profile-DQaC7SJZ.js";
|
|
32
32
|
import "node:url";
|
|
33
|
-
import { __tla as __tla_1 } from "./loro_wasm_bg-
|
|
33
|
+
import { __tla as __tla_1 } from "./loro_wasm_bg-Dz8BnaUI.js";
|
|
34
34
|
import "perf_hooks";
|
|
35
35
|
import "net";
|
|
36
36
|
import "tls";
|
|
@@ -55,8 +55,8 @@ import "./directory-handle-35P9qcGk.js";
|
|
|
55
55
|
import "./diff-line-counts-bmGB_T-n.js";
|
|
56
56
|
import "node:stream/promises";
|
|
57
57
|
import "node:string_decoder";
|
|
58
|
-
import "./package-
|
|
59
|
-
import "./runtime-manifest-
|
|
58
|
+
import "./package-CZY_YQI4.js";
|
|
59
|
+
import "./runtime-manifest-DqfOlvSw.js";
|
|
60
60
|
import "./acp-DCoAUZc7.js";
|
|
61
61
|
import "./methods-CvEDMahD.js";
|
|
62
62
|
import "async_hooks";
|
|
@@ -82,7 +82,7 @@ let __tla = Promise.all([
|
|
|
82
82
|
}
|
|
83
83
|
})()
|
|
84
84
|
]).then(async () => {
|
|
85
|
-
const reviewViewerVersion = "0.
|
|
85
|
+
const reviewViewerVersion = "0.96.0";
|
|
86
86
|
const reviewViewerSha256 = "dc9c7fc1dde49bb39c5fe86392d69219b469c0cab4fd492d8b562045e7f676e4";
|
|
87
87
|
const reviewViewerFileName = "standalone.html";
|
|
88
88
|
const DEFAULT_CDN_BASES = [
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const officialRuntime = { "version": "1.0.
|
|
1
|
+
const officialRuntime = { "version": "1.0.34" };
|
|
2
2
|
const privateWireContract = { "permissionNotification": "x.ai/yolo_mode_changed", "sessionConfigMeta": "x.ai/sessionConfig", "sessionNotification": "x.ai/session_notification", "sessionUpdateNotification": "x.ai/session/update", "modelsUpdateNotification": "x.ai/models/update", "turnCompletedUpdate": "turn_completed", "sessionInfoRequest": "x.ai/session/info", "billingRequest": "x.ai/billing", "weeklyUsagePeriodType": "USAGE_PERIOD_TYPE_WEEKLY", "reasoningEffortMeta": "reasoningEffort", "autoPermissionMode": false, "planApprovalRequest": "x.ai/exit_plan_mode" };
|
|
3
3
|
const runtimeManifest = {
|
|
4
4
|
officialRuntime,
|