@fileverse/api 0.0.16 → 0.0.18
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/cli/index.js +10 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/cloudflare.js +101 -49
- package/dist/cloudflare.js.map +1 -1
- package/dist/commands/index.js +16 -1
- package/dist/commands/index.js.map +1 -1
- package/dist/index.js +75 -49
- package/dist/index.js.map +1 -1
- package/dist/worker.js +69 -48
- package/dist/worker.js.map +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -366,9 +366,18 @@ var init_file_utils = __esm({
|
|
|
366
366
|
}
|
|
367
367
|
});
|
|
368
368
|
|
|
369
|
+
// src/sdk/dom-globals.ts
|
|
370
|
+
var init_dom_globals = __esm({
|
|
371
|
+
"src/sdk/dom-globals.ts"() {
|
|
372
|
+
"use strict";
|
|
373
|
+
init_esm_shims();
|
|
374
|
+
}
|
|
375
|
+
});
|
|
376
|
+
|
|
369
377
|
// src/sdk/file-manager.ts
|
|
370
378
|
import { fromUint8Array as fromUint8Array2, toUint8Array as toUint8Array4 } from "js-base64";
|
|
371
379
|
import { generateAESKey, exportAESKey } from "@fileverse/crypto/webcrypto";
|
|
380
|
+
import { markdownToYjs } from "@fileverse/content-processor";
|
|
372
381
|
var init_file_manager = __esm({
|
|
373
382
|
"src/sdk/file-manager.ts"() {
|
|
374
383
|
"use strict";
|
|
@@ -376,6 +385,7 @@ var init_file_manager = __esm({
|
|
|
376
385
|
init_file_utils();
|
|
377
386
|
init_constants();
|
|
378
387
|
init_constants2();
|
|
388
|
+
init_dom_globals();
|
|
379
389
|
init_infra();
|
|
380
390
|
}
|
|
381
391
|
});
|