@lix-js/sdk 0.4.6 → 0.4.7
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/lix/index.d.ts
CHANGED
|
@@ -2,4 +2,5 @@ export { type Lix, openLix } from "./open-lix.js";
|
|
|
2
2
|
export { openLixInMemory } from "./open-lix-in-memory.js";
|
|
3
3
|
export { newLixFile } from "./new-lix.js";
|
|
4
4
|
export { toBlob } from "./to-blob.js";
|
|
5
|
+
export { closeLix } from "./close-lix.js";
|
|
5
6
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/lix/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/lix/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,GAAG,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/lix/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,GAAG,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AACtC,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC"}
|
package/dist/lix/index.js
CHANGED
|
@@ -2,6 +2,7 @@ export { openLix } from "./open-lix.js";
|
|
|
2
2
|
export { openLixInMemory } from "./open-lix-in-memory.js";
|
|
3
3
|
export { newLixFile } from "./new-lix.js";
|
|
4
4
|
export { toBlob } from "./to-blob.js";
|
|
5
|
+
export { closeLix } from "./close-lix.js";
|
|
5
6
|
// not exporting merge for api stability milestone
|
|
6
7
|
// will need an overhaul to be stable
|
|
7
8
|
// export { merge } from "./merge.js";
|
package/dist/lix/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/lix/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,OAAO,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AACtC,kDAAkD;AAClD,qCAAqC;AACrC,sCAAsC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/lix/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,OAAO,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AACtC,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC1C,kDAAkD;AAClD,qCAAqC;AACrC,sCAAsC"}
|
package/package.json
CHANGED
package/src/lix/index.ts
CHANGED
|
@@ -2,6 +2,7 @@ export { type Lix, openLix } from "./open-lix.js";
|
|
|
2
2
|
export { openLixInMemory } from "./open-lix-in-memory.js";
|
|
3
3
|
export { newLixFile } from "./new-lix.js";
|
|
4
4
|
export { toBlob } from "./to-blob.js";
|
|
5
|
+
export { closeLix } from "./close-lix.js";
|
|
5
6
|
// not exporting merge for api stability milestone
|
|
6
7
|
// will need an overhaul to be stable
|
|
7
8
|
// export { merge } from "./merge.js";
|