@luminocity/lemonate-gateway 8.2.11 → 8.2.13
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.d.ts +2 -1
- package/dist/lemonate-gateway.cjs.js +5 -5
- package/dist/lemonate-gateway.cjs.js.map +1 -1
- package/dist/lemonate-gateway.esm.js +5 -5
- package/dist/lemonate-gateway.esm.js.map +1 -1
- package/dist/lemonate-gateway.umd.js +3 -3
- package/dist/lemonate-gateway.umd.js.map +1 -1
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ import * as awarenessProtocol from 'y-protocols/awareness';
|
|
|
9
9
|
import { CollabDocument } from '@/collabstate/CollabDocument';
|
|
10
10
|
import { ItemCopier } from '@/ItemCopier';
|
|
11
11
|
import { ExecutableExporter } from '@/ExecutableExporter';
|
|
12
|
+
import { Buffer as Buffer$1 } from 'buffer';
|
|
12
13
|
import { ScriptItem as ScriptItem$1, Script as Script$1 } from '@/repo/Script';
|
|
13
14
|
import { ScriptField as ScriptField$1 } from '@/repo/ScriptField';
|
|
14
15
|
import { TemplateEntry as TemplateEntry$1 } from '@/repo/TemplateEntry';
|
|
@@ -4058,7 +4059,7 @@ type ParsedPackage = {
|
|
|
4058
4059
|
rootItem: MetadataItem;
|
|
4059
4060
|
folders: typeof packageCache["folders"];
|
|
4060
4061
|
files: {
|
|
4061
|
-
[key: string]: Buffer
|
|
4062
|
+
[key: string]: Buffer$1;
|
|
4062
4063
|
};
|
|
4063
4064
|
};
|
|
4064
4065
|
declare const packageCache: PackageCache;
|