@hedia/types 2.2.2 → 2.2.3-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.
@@ -0,0 +1,5 @@
1
+ export declare namespace Report {
2
+ enum Format {
3
+ PDF = "pdf"
4
+ }
5
+ }
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Report = void 0;
4
+ var Report;
5
+ (function (Report) {
6
+ let Format;
7
+ (function (Format) {
8
+ Format["PDF"] = "pdf";
9
+ })(Format = Report.Format || (Report.Format = {}));
10
+ })(Report = exports.Report || (exports.Report = {}));
11
+ //# sourceMappingURL=report.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"report.js","sourceRoot":"","sources":["../../../v3/report/report.ts"],"names":[],"mappings":";;;AAAA,IAAiB,MAAM,CAItB;AAJD,WAAiB,MAAM;IACtB,IAAY,MAEX;IAFD,WAAY,MAAM;QACjB,qBAAW,CAAA;IACZ,CAAC,EAFW,MAAM,GAAN,aAAM,KAAN,aAAM,QAEjB;AACF,CAAC,EAJgB,MAAM,GAAN,cAAM,KAAN,cAAM,QAItB"}
@@ -0,0 +1,19 @@
1
+ import { BloodGlucoseUnit, Languages } from "../../v1/enums";
2
+ import { Report } from "../report/report";
3
+ export declare namespace ReportService {
4
+ namespace RPC {
5
+ namespace Get {
6
+ interface Request {
7
+ from: string;
8
+ to: string;
9
+ format: Report.Format;
10
+ locale: Languages;
11
+ bloodGlucoseUnit: BloodGlucoseUnit;
12
+ }
13
+ interface Response {
14
+ contentType: string;
15
+ content: string;
16
+ }
17
+ }
18
+ }
19
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=report.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"report.js","sourceRoot":"","sources":["../../../v3/services/report.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hedia/types",
3
- "version": "2.2.2",
3
+ "version": "2.2.3-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": {