@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.
@@ -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
@@ -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";
@@ -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"}
@@ -1,5 +1,5 @@
1
1
  export const ENV_VARIABLES = {
2
2
  LIX_SDK_POSTHOG_TOKEN: "phc_6492KFrhZMsb2HOZiloRb6R9tJQWZWVVAiebkwfWATT",
3
- LIX_SDK_VERSION: "0.4.6",
3
+ LIX_SDK_VERSION: "0.4.7",
4
4
  };
5
5
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lix-js/sdk",
3
3
  "type": "module",
4
- "version": "0.4.6",
4
+ "version": "0.4.7",
5
5
  "license": "Apache-2.0",
6
6
  "types": "./dist/index.d.ts",
7
7
  "exports": {
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";