monoidentity 0.1.0 → 0.2.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/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export { default as Monoidentity } from "./Monoidentity.svelte";
2
2
  export { getLogin, getStorage } from "./storage.js";
3
3
  export * from "./trackready.js";
4
+ export { encode, decode } from "./utils-base36.js";
package/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
1
  export { default as Monoidentity } from "./Monoidentity.svelte";
2
2
  export { getLogin, getStorage } from "./storage.js";
3
3
  export * from "./trackready.js";
4
+ export { encode, decode } from "./utils-base36.js";
package/dist/storage.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { type Login } from "./utils-login.js";
1
+ import { type Login } from "./utils-base36.js";
2
2
  export declare const setup: (i: Record<string, string>, a: string) => void;
3
3
  export declare const getLogin: () => Login;
4
4
  export declare const getStorage: (realm: "cache") => import("./_createstore.js").Dict;
package/dist/storage.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { stringify, parse } from "devalue";
2
- import { decode } from "./utils-login.js";
2
+ import { decode } from "./utils-base36.js";
3
3
  import { createStore } from "./_createstore.js";
4
4
  let implementation;
5
5
  let app = "";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monoidentity",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "repository": "KTibow/monoidentity",
5
5
  "author": {
6
6
  "name": "KTibow"
File without changes
File without changes