@graffy/core 0.16.12-alpha.1 → 0.16.12

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/index.cjs CHANGED
@@ -249,4 +249,5 @@ class Graffy {
249
249
  return common.unwrapObject(common.decodeGraph(writtenChange), path);
250
250
  }
251
251
  }
252
+ Graffy.unchanged = unchanged;
252
253
  module.exports = Graffy;
package/index.mjs CHANGED
@@ -248,6 +248,7 @@ class Graffy {
248
248
  return unwrapObject(decodeGraph(writtenChange), path);
249
249
  }
250
250
  }
251
+ Graffy.unchanged = unchanged;
251
252
  export {
252
253
  Graffy as default
253
254
  };
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graffy/core",
3
3
  "description": "The main module for Graffy, a library for intuitive real-time data APIs.",
4
4
  "author": "aravind (https://github.com/aravindet)",
5
- "version": "0.16.12-alpha.1",
5
+ "version": "0.16.12",
6
6
  "main": "./index.cjs",
7
7
  "exports": {
8
8
  "import": "./index.mjs",
@@ -16,8 +16,8 @@
16
16
  },
17
17
  "license": "Apache-2.0",
18
18
  "dependencies": {
19
- "@graffy/common": "0.16.12-alpha.1",
20
- "@graffy/stream": "0.16.12-alpha.1",
19
+ "@graffy/common": "0.16.12",
20
+ "@graffy/stream": "0.16.12",
21
21
  "debug": "^4.3.3"
22
22
  }
23
23
  }
package/types/Graffy.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export { unchanged } from "./shift.js";
2
- export default class Graffy {
2
+ declare class Graffy {
3
3
  constructor(path?: any[], core?: Core);
4
4
  core: Core;
5
5
  path: any[];
@@ -13,4 +13,9 @@ export default class Graffy {
13
13
  watch(...args: any[]): any;
14
14
  write(...args: any[]): Promise<any>;
15
15
  }
16
+ declare namespace Graffy {
17
+ export { unchanged };
18
+ }
19
+ export default Graffy;
16
20
  import Core from "./Core.js";
21
+ import { unchanged } from "./shift.js";