@demind-inc/core 1.0.52 → 1.0.53

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/types.d.ts CHANGED
@@ -19,3 +19,10 @@ export type CircadianPhaseStartEndSet = Record<CircadianPhase, {
19
19
  start: string;
20
20
  end: string;
21
21
  }>;
22
+ export interface HeatmapDataType {
23
+ x: string;
24
+ y: string;
25
+ value: number;
26
+ phase?: CircadianPhase;
27
+ diff?: number;
28
+ }
package/lib/types.ts CHANGED
@@ -39,3 +39,11 @@ export type CircadianPhaseStartEndSet = Record<
39
39
  CircadianPhase,
40
40
  { start: string; end: string }
41
41
  >;
42
+
43
+ export interface HeatmapDataType {
44
+ x: string;
45
+ y: string;
46
+ value: number;
47
+ phase?: CircadianPhase;
48
+ diff?: number;
49
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.0.52",
3
+ "version": "1.0.53",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {