@hedia/types 2.3.5-alpha.5 → 2.3.5-alpha.6

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.
@@ -4,14 +4,11 @@ export declare namespace CgmService {
4
4
  "timestamp": string;
5
5
  "glucoseMmoll": number | null;
6
6
  }
7
- interface IGetCgmReadingsRequest {
7
+ interface IGetTimeSeriesCgmReadingsRequest {
8
8
  period: string;
9
9
  interval: number;
10
10
  fromTimestamp?: string;
11
11
  }
12
- interface IGetCgmReadingsResponse {
13
- latestGlucoseMmoll: ICgmReading;
14
- historicalGlucoseMmoll: Array<ICgmReading>;
15
- }
12
+ type IGetTimeSeriesCgmReadingsResponse = Array<ICgmReading>;
16
13
  }
17
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hedia/types",
3
- "version": "2.3.5-alpha.5",
3
+ "version": "2.3.5-alpha.6",
4
4
  "description": "Enums, interfaces, and other common types for use in Hedia's software.",
5
5
  "main": "./dist/index.js",
6
6
  "repository": {