@hedia/types 2.3.8 → 2.3.9-alpha.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.
@@ -8,6 +8,7 @@ export * from "./services/logbook";
8
8
  export * from "./services/menarini";
9
9
  export * from "./services/notification";
10
10
  export * from "./services/forecast";
11
+ export * from "./services/projectLucas";
11
12
  export * from "./services/report";
12
13
  export * from "./services/user";
13
14
  export * from "./physicalActivity/physicalActivity";
package/dist/v3/index.js CHANGED
@@ -20,6 +20,7 @@ __exportStar(require("./services/logbook"), exports);
20
20
  __exportStar(require("./services/menarini"), exports);
21
21
  __exportStar(require("./services/notification"), exports);
22
22
  __exportStar(require("./services/forecast"), exports);
23
+ __exportStar(require("./services/projectLucas"), exports);
23
24
  __exportStar(require("./services/report"), exports);
24
25
  __exportStar(require("./services/user"), exports);
25
26
  __exportStar(require("./physicalActivity/physicalActivity"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../v3/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,4CAA0B;AAC1B,oDAAkC;AAClC,kDAAgC;AAChC,kDAAgC;AAChC,iDAA+B;AAC/B,mDAAiC;AACjC,qDAAmC;AACnC,sDAAoC;AACpC,0DAAwC;AACxC,sDAAoC;AACpC,oDAAkC;AAClC,kDAAgC;AAChC,sEAAoD;AACpD,4DAA0C;AAC1C,wDAAsC;AACtC,8CAA4B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../v3/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,4CAA0B;AAC1B,oDAAkC;AAClC,kDAAgC;AAChC,kDAAgC;AAChC,iDAA+B;AAC/B,mDAAiC;AACjC,qDAAmC;AACnC,sDAAoC;AACpC,0DAAwC;AACxC,sDAAoC;AACpC,0DAAwC;AACxC,oDAAkC;AAClC,kDAAgC;AAChC,sEAAoD;AACpD,4DAA0C;AAC1C,wDAAsC;AACtC,8CAA4B"}
@@ -0,0 +1,24 @@
1
+ export declare namespace ProjectLucas {
2
+ namespace Types {
3
+ interface IForecastPacket {
4
+ inputDataTimestamp: string;
5
+ calculationTimestamp: string;
6
+ validPredictionTimestamp: string;
7
+ glucoseForecastMmoll: number;
8
+ glucoseForecastMmollDelta: number;
9
+ glucoseForecastStdDev: number;
10
+ worstParkeBox: number;
11
+ }
12
+ interface IForecast {
13
+ inputDataTimestamp: Date;
14
+ calculationTimestamp: Date;
15
+ validPredictionTimestamp: Date;
16
+ glucoseForecastMmoll: number;
17
+ glucoseForecastMmollDelta: number;
18
+ glucoseForecastStdDev: number;
19
+ glucoseForecastLowerDev: number;
20
+ glucoseForecastUpperDev: number;
21
+ worstParkeBox: number;
22
+ }
23
+ }
24
+ }
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=types.js.map
3
+ //# sourceMappingURL=projectLucas.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"projectLucas.js","sourceRoot":"","sources":["../../../v3/services/projectLucas.ts"],"names":[],"mappings":""}
@@ -1,19 +1,10 @@
1
- import { IRpcRoute } from "../../types/types/types";
2
1
  import { Languages, Sex } from "../../v1/enums";
3
2
  export declare namespace UserService {
4
3
  namespace RPC {
5
- namespace CreateUser {
6
- type Post = IRpcRoute<Types.ICreateUserRequest, Types.IUserResponse>;
7
- }
8
- namespace GetUser {
9
- type Get = IRpcRoute<Types.IGetUserRequest, Types.IUserResponse>;
10
- }
11
- namespace UpdateUser {
12
- type Patch = IRpcRoute<Types.IUpdateUserRequest, Types.IUserResponse>;
13
- }
14
- namespace DeleteUser {
15
- type Delete = IRpcRoute<Types.IDeleteUserRequest, Types.IDeleteUserResponse>;
16
- }
4
+ namespace CreateUser { }
5
+ namespace GetUser { }
6
+ namespace UpdateUser { }
7
+ namespace DeleteUser { }
17
8
  }
18
9
  namespace Types {
19
10
  interface ICreateUserRequest {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hedia/types",
3
- "version": "2.3.8",
3
+ "version": "2.3.9-alpha.0",
4
4
  "description": "Enums, interfaces, and other common types for use in Hedia's software.",
5
5
  "main": "./dist/index.js",
6
6
  "repository": {
@@ -1,4 +0,0 @@
1
- export interface IRpcRoute<Request, Response> {
2
- Request: Request;
3
- Response: Response;
4
- }
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.js","sourceRoot":"","sources":["../../../types/types/types.ts"],"names":[],"mappings":""}