@hedia/types 2.3.8-alpha.0 → 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.
- package/dist/v3/index.d.ts +1 -0
- package/dist/v3/index.js +1 -0
- package/dist/v3/index.js.map +1 -1
- package/dist/v3/services/projectLucas.d.ts +24 -0
- package/dist/{types/types/types.js → v3/services/projectLucas.js} +1 -1
- package/dist/v3/services/projectLucas.js.map +1 -0
- package/dist/v3/services/user.d.ts +4 -13
- package/package.json +1 -1
- package/dist/types/types/types.d.ts +0 -4
- package/dist/types/types/types.js.map +0 -1
package/dist/v3/index.d.ts
CHANGED
|
@@ -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);
|
package/dist/v3/index.js.map
CHANGED
|
@@ -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
|
+
}
|
|
@@ -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
|
-
|
|
7
|
-
}
|
|
8
|
-
namespace
|
|
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 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../types/types/types.ts"],"names":[],"mappings":""}
|