@hedia/types 2.4.2-alpha.0 → 2.4.2-alpha.2

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.
@@ -1,12 +1,14 @@
1
1
  import { ActivityIntensity, ActivitySettings } from "../activity/activity.js";
2
- /** The maximum amount of insulin that may be recommended to the user. */
3
- export declare const SAFETY_INSULIN_LIMIT = 60;
4
- /** The maximum duration in minutes of a physical activity. */
5
- export declare const SAFETY_ACTIVITY_LIMIT = 60;
6
- /** The maximum reduction factor for a physical activity */
7
- export declare const REDUCTION_MAX = 1;
8
- /** The minimum reduction factor for a physical activity */
9
- export declare const REDUCTION_MIN = 0;
2
+ export declare enum Constants {
3
+ /** The maximum amount of insulin that may be recommended to the user. */
4
+ SAFETY_INSULIN_LIMIT = 60,
5
+ /** The maximum duration in minutes of a physical activity. */
6
+ SAFETY_ACTIVITY_LIMIT = 60,
7
+ /** The maximum reduction factor for a physical activity */
8
+ REDUCTION_MAX = 1,
9
+ /** The minimum reduction factor for a physical activity */
10
+ REDUCTION_MIN = 0
11
+ }
10
12
  /** Enum for differentiating between types of errors. */
11
13
  export declare enum ActivityErrors {
12
14
  OutOfRange = "Out of range",
@@ -1,11 +1,14 @@
1
- /** The maximum amount of insulin that may be recommended to the user. */
2
- export const SAFETY_INSULIN_LIMIT = 60;
3
- /** The maximum duration in minutes of a physical activity. */
4
- export const SAFETY_ACTIVITY_LIMIT = 60;
5
- /** The maximum reduction factor for a physical activity */
6
- export const REDUCTION_MAX = 1;
7
- /** The minimum reduction factor for a physical activity */
8
- export const REDUCTION_MIN = 0;
1
+ export var Constants;
2
+ (function (Constants) {
3
+ /** The maximum amount of insulin that may be recommended to the user. */
4
+ Constants[Constants["SAFETY_INSULIN_LIMIT"] = 60] = "SAFETY_INSULIN_LIMIT";
5
+ /** The maximum duration in minutes of a physical activity. */
6
+ Constants[Constants["SAFETY_ACTIVITY_LIMIT"] = 60] = "SAFETY_ACTIVITY_LIMIT";
7
+ /** The maximum reduction factor for a physical activity */
8
+ Constants[Constants["REDUCTION_MAX"] = 1] = "REDUCTION_MAX";
9
+ /** The minimum reduction factor for a physical activity */
10
+ Constants[Constants["REDUCTION_MIN"] = 0] = "REDUCTION_MIN";
11
+ })(Constants || (Constants = {}));
9
12
  /** Enum for differentiating between types of errors. */
10
13
  export var ActivityErrors;
11
14
  (function (ActivityErrors) {
@@ -1 +1 @@
1
- {"version":3,"file":"boluscalculator.js","sourceRoot":"","sources":["../../../src/boluscalculator/boluscalculator.ts"],"names":[],"mappings":"AAEA,yEAAyE;AACzE,MAAM,CAAC,MAAM,oBAAoB,GAAG,EAAE,CAAC;AACvC,8DAA8D;AAC9D,MAAM,CAAC,MAAM,qBAAqB,GAAG,EAAE,CAAC;AACxC,2DAA2D;AAC3D,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,CAAC;AAC/B,2DAA2D;AAC3D,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,CAAC;AAE/B,wDAAwD;AACxD,MAAM,CAAN,IAAY,cAKX;AALD,WAAY,cAAc;IACzB,6CAA2B,CAAA;IAC3B,wEAAsD,CAAA;IACtD,iEAA+C,CAAA;IAC/C,iEAA+C,CAAA;AAChD,CAAC,EALW,cAAc,KAAd,cAAc,QAKzB"}
1
+ {"version":3,"file":"boluscalculator.js","sourceRoot":"","sources":["../../../src/boluscalculator/boluscalculator.ts"],"names":[],"mappings":"AAEA,MAAM,CAAN,IAAY,SASX;AATD,WAAY,SAAS;IACpB,yEAAyE;IACzE,0EAAyB,CAAA;IACzB,8DAA8D;IAC9D,4EAA0B,CAAA;IAC1B,2DAA2D;IAC3D,2DAAiB,CAAA;IACjB,2DAA2D;IAC3D,2DAAiB,CAAA;AAClB,CAAC,EATW,SAAS,KAAT,SAAS,QASpB;AAED,wDAAwD;AACxD,MAAM,CAAN,IAAY,cAKX;AALD,WAAY,cAAc;IACzB,6CAA2B,CAAA;IAC3B,wEAAsD,CAAA;IACtD,iEAA+C,CAAA;IAC/C,iEAA+C,CAAA;AAChD,CAAC,EALW,cAAc,KAAd,cAAc,QAKzB"}
@@ -22,12 +22,6 @@ export declare enum Languages {
22
22
  it = "Italiano",
23
23
  sv = "Svenska"
24
24
  }
25
- /** Represents a user's sex. */
26
- export declare enum Sex {
27
- M = "Male",
28
- F = "Female",
29
- Unspecified = "Unspecified"
30
- }
31
25
  /** Enum containing constants for seconds, minutes, hours, or days in milliseconds */
32
26
  export declare enum Milliseconds {
33
27
  Second = 1000,
@@ -37,25 +31,18 @@ export declare enum Milliseconds {
37
31
  }
38
32
  /** Enum containing the possible ketone levels of the user */
39
33
  export declare enum KetoneLevels {
40
- Negative = 0,
41
- Normal = 1,
42
- SlightlyIncreased = 2,
43
- Moderate = 3,
44
- High = 4
34
+ None = "None",
35
+ Normal = "Normal",
36
+ SlightlyIncreased = "SlightlyIncreased",
37
+ Moderate = "Moderate",
38
+ High = "High"
45
39
  }
46
40
  /**
47
41
  * Enum containing constants for displaying colour indicators regarding the blood ketone levels of the user.
48
42
  * Blood ketones ranges and the color scheme can be found at:
49
43
  * https://hedia.atlassian.net/wiki/spaces/QMS/pages/827785277/QF-73-3-1+Ketones+and+current+functions+in+HDA#4.0-Ketone-procedure-in-HDA
50
44
  */
51
- export declare enum KetoneColours {
52
- None = "rgb(15,18,49)",
53
- Negative = "rgb(222,194,145)",
54
- Normal = "rgb(223,179,143)",
55
- SlightlyIncreased = "rgb(219, 152, 141)",
56
- Moderate = "rgb(169, 102, 96)",
57
- High = "rgb(119,55,81)"
58
- }
45
+ export declare const KetonesRGB: Record<KetoneLevels, string>;
59
46
  export declare enum StatusCode {
60
47
  /**
61
48
  * The server has received the request headers and the client should proceed to send the request body
@@ -386,26 +373,26 @@ export declare enum StatusCode {
386
373
  }
387
374
  export declare enum HTTPRequestMethod {
388
375
  /**
389
- * The `CONNECT` method establishes a tunnel to the server identified by the
376
+ * The "CONNECT" method establishes a tunnel to the server identified by the
390
377
  * target resource.
391
378
  */
392
379
  CONNECT = "CONNECT",
393
380
  /**
394
- * The `DELETE` method deletes the specified resource.
381
+ * The "DELETE" method deletes the specified resource.
395
382
  */
396
383
  DELETE = "DELETE",
397
384
  /**
398
- * The `GET` method requests a representation of the specified resource.
385
+ * The "GET" method requests a representation of the specified resource.
399
386
  * Requests using GET should only retrieve data.
400
387
  */
401
388
  GET = "GET",
402
389
  /**
403
- * The `HEAD` method asks for a response identical to that of a GET request,
390
+ * The "HEAD" method asks for a response identical to that of a GET request,
404
391
  * but without the response body.
405
392
  */
406
393
  HEAD = "HEAD",
407
394
  /**
408
- * The `OPTIONS` method is used to describe the communication options for the
395
+ * The "OPTIONS" method is used to describe the communication options for the
409
396
  * target resource.
410
397
  */
411
398
  OPTIONS = "OPTIONS",
@@ -414,17 +401,17 @@ export declare enum HTTPRequestMethod {
414
401
  */
415
402
  PATCH = "PATCH",
416
403
  /**
417
- * The `POST` method is used to submit an entity to the specified resource,
404
+ * The "POST" method is used to submit an entity to the specified resource,
418
405
  * often causing a change in state or side effects on the server.
419
406
  */
420
407
  POST = "POST",
421
408
  /**
422
- * The `PUT` method replaces all current representations of the target
409
+ * The "PUT" method replaces all current representations of the target
423
410
  * resource with the request payload.
424
411
  */
425
412
  PUT = "PUT",
426
413
  /**
427
- * The `TRACE` method performs a message loop-back test along the path to the
414
+ * The "TRACE" method performs a message loop-back test along the path to the
428
415
  * target resource.
429
416
  */
430
417
  TRACE = "TRACE"
package/dist/src/enums.js CHANGED
@@ -31,13 +31,6 @@ export var Languages;
31
31
  Languages["it"] = "Italiano";
32
32
  Languages["sv"] = "Svenska";
33
33
  })(Languages || (Languages = {}));
34
- /** Represents a user's sex. */
35
- export var Sex;
36
- (function (Sex) {
37
- Sex["M"] = "Male";
38
- Sex["F"] = "Female";
39
- Sex["Unspecified"] = "Unspecified";
40
- })(Sex || (Sex = {}));
41
34
  /** Enum containing constants for seconds, minutes, hours, or days in milliseconds */
42
35
  export var Milliseconds;
43
36
  (function (Milliseconds) {
@@ -49,26 +42,24 @@ export var Milliseconds;
49
42
  /** Enum containing the possible ketone levels of the user */
50
43
  export var KetoneLevels;
51
44
  (function (KetoneLevels) {
52
- KetoneLevels[KetoneLevels["Negative"] = 0] = "Negative";
53
- KetoneLevels[KetoneLevels["Normal"] = 1] = "Normal";
54
- KetoneLevels[KetoneLevels["SlightlyIncreased"] = 2] = "SlightlyIncreased";
55
- KetoneLevels[KetoneLevels["Moderate"] = 3] = "Moderate";
56
- KetoneLevels[KetoneLevels["High"] = 4] = "High";
45
+ KetoneLevels["None"] = "None";
46
+ KetoneLevels["Normal"] = "Normal";
47
+ KetoneLevels["SlightlyIncreased"] = "SlightlyIncreased";
48
+ KetoneLevels["Moderate"] = "Moderate";
49
+ KetoneLevels["High"] = "High";
57
50
  })(KetoneLevels || (KetoneLevels = {}));
58
51
  /**
59
52
  * Enum containing constants for displaying colour indicators regarding the blood ketone levels of the user.
60
53
  * Blood ketones ranges and the color scheme can be found at:
61
54
  * https://hedia.atlassian.net/wiki/spaces/QMS/pages/827785277/QF-73-3-1+Ketones+and+current+functions+in+HDA#4.0-Ketone-procedure-in-HDA
62
55
  */
63
- export var KetoneColours;
64
- (function (KetoneColours) {
65
- KetoneColours["None"] = "rgb(15,18,49)";
66
- KetoneColours["Negative"] = "rgb(222,194,145)";
67
- KetoneColours["Normal"] = "rgb(223,179,143)";
68
- KetoneColours["SlightlyIncreased"] = "rgb(219, 152, 141)";
69
- KetoneColours["Moderate"] = "rgb(169, 102, 96)";
70
- KetoneColours["High"] = "rgb(119,55,81)";
71
- })(KetoneColours || (KetoneColours = {}));
56
+ export const KetonesRGB = {
57
+ [KetoneLevels.None]: "#171931",
58
+ [KetoneLevels.Normal]: "#DFB38F",
59
+ [KetoneLevels.SlightlyIncreased]: "#DB988D",
60
+ [KetoneLevels.Moderate]: "#A96660",
61
+ [KetoneLevels.High]: "#773751",
62
+ };
72
63
  export var StatusCode;
73
64
  (function (StatusCode) {
74
65
  /**
@@ -401,26 +392,26 @@ export var StatusCode;
401
392
  export var HTTPRequestMethod;
402
393
  (function (HTTPRequestMethod) {
403
394
  /**
404
- * The `CONNECT` method establishes a tunnel to the server identified by the
395
+ * The "CONNECT" method establishes a tunnel to the server identified by the
405
396
  * target resource.
406
397
  */
407
398
  HTTPRequestMethod["CONNECT"] = "CONNECT";
408
399
  /**
409
- * The `DELETE` method deletes the specified resource.
400
+ * The "DELETE" method deletes the specified resource.
410
401
  */
411
402
  HTTPRequestMethod["DELETE"] = "DELETE";
412
403
  /**
413
- * The `GET` method requests a representation of the specified resource.
404
+ * The "GET" method requests a representation of the specified resource.
414
405
  * Requests using GET should only retrieve data.
415
406
  */
416
407
  HTTPRequestMethod["GET"] = "GET";
417
408
  /**
418
- * The `HEAD` method asks for a response identical to that of a GET request,
409
+ * The "HEAD" method asks for a response identical to that of a GET request,
419
410
  * but without the response body.
420
411
  */
421
412
  HTTPRequestMethod["HEAD"] = "HEAD";
422
413
  /**
423
- * The `OPTIONS` method is used to describe the communication options for the
414
+ * The "OPTIONS" method is used to describe the communication options for the
424
415
  * target resource.
425
416
  */
426
417
  HTTPRequestMethod["OPTIONS"] = "OPTIONS";
@@ -429,17 +420,17 @@ export var HTTPRequestMethod;
429
420
  */
430
421
  HTTPRequestMethod["PATCH"] = "PATCH";
431
422
  /**
432
- * The `POST` method is used to submit an entity to the specified resource,
423
+ * The "POST" method is used to submit an entity to the specified resource,
433
424
  * often causing a change in state or side effects on the server.
434
425
  */
435
426
  HTTPRequestMethod["POST"] = "POST";
436
427
  /**
437
- * The `PUT` method replaces all current representations of the target
428
+ * The "PUT" method replaces all current representations of the target
438
429
  * resource with the request payload.
439
430
  */
440
431
  HTTPRequestMethod["PUT"] = "PUT";
441
432
  /**
442
- * The `TRACE` method performs a message loop-back test along the path to the
433
+ * The "TRACE" method performs a message loop-back test along the path to the
443
434
  * target resource.
444
435
  */
445
436
  HTTPRequestMethod["TRACE"] = "TRACE";
@@ -1 +1 @@
1
- {"version":3,"file":"enums.js","sourceRoot":"","sources":["../../src/enums.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"enums.js","sourceRoot":"","sources":["../../src/enums.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/enums.ts","../src/activity/activity.ts","../src/boluscalculator/boluscalculator.ts","../src/logbook/logbook.ts","../src/userdetails/userdetails.ts","../src/usersettings/usersettings.ts","../src/index.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/minimist/index.d.ts","../node_modules/@types/normalize-package-data/index.d.ts"],"fileIdsList":[[63],[62,63,64,65,66,67],[62],[62,63]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"15c1c3d7b2e46e0025417ed6d5f03f419e57e6751f87925ca19dc88297053fe6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d540251809289a05349b70ab5f4b7b99f922af66ab3c39ba56a475dcf95d5ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"b06e2d8c89e85a1ee6edb38d7f0cfb72f7170f57e63008ca523548e70f30eb03","signature":"c6ae9d5f09be97d77e81e89f0f7820bcae856024b3096b391a9bb66229a526e8","impliedFormat":99},{"version":"f7d5e5f3f55990f4bf2a37ce4fd664a960133873afd93261ba9494a6cf67bad9","signature":"a39e94160cfbaddb58d3d5c58b66bac92790d1e1260ed6efe9eed54cedfcfd87","impliedFormat":99},{"version":"d433d23ebf1bdb96d89bb2b48431c735b25b0343deb92a0a3dc44d9dd594197d","signature":"5643b77b6f241d73cefc68490f5b539126e42b21edc9a7e60d106a89d4658166","impliedFormat":99},{"version":"ffa3cb27795bf65b2b11a21ad80304bdf7aa908f01edf3fec767da17b04a0d61","signature":"47efb67f92ee4ef1829e75ac3c125e417543e6dc991633220b2192be97df49b4","impliedFormat":99},{"version":"ed102d07916799be66fb8e0e114764cd5a2458ab55316aaeb9bc7041c5656f84","signature":"5daf70c19e88d7888925c5a2685b967ff552d12bb0ed31fc6f47609f43a35f5e","impliedFormat":99},{"version":"9ff7f1311e297142f0530b5d9caabf1cb1dd3c89c652b8a33c6c30fb5ac9674a","signature":"376f6f15136fc7b55f9b573bda3d09f620f1e2fdb8ec17ee6d4911efef7ab0b8","impliedFormat":99},{"version":"1148b3d5ca978407f1ab2b2ce4eb19da5c35b59ab1b13edbb3d8254a1fb59228","impliedFormat":99},{"version":"785b9d575b49124ce01b46f5b9402157c7611e6532effa562ac6aebec0074dfc","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"fbca5ffaebf282ec3cdac47b0d1d4a138a8b0bb32105251a38acb235087d3318","impliedFormat":1},{"version":"22293bd6fa12747929f8dfca3ec1684a3fe08638aa18023dd286ab337e88a592","impliedFormat":1}],"root":[[62,68]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":199,"noErrorTruncation":true,"noImplicitReturns":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9},"referencedMap":[[64,1],[68,2],[66,3],[67,4]],"version":"5.6.3"}
1
+ {"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/enums.ts","../src/activity/activity.ts","../src/boluscalculator/boluscalculator.ts","../src/logbook/logbook.ts","../src/userdetails/userdetails.ts","../src/usersettings/usersettings.ts","../src/index.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/minimist/index.d.ts","../node_modules/@types/normalize-package-data/index.d.ts"],"fileIdsList":[[63],[62,63,64,65,66,67],[62],[62,63]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"15c1c3d7b2e46e0025417ed6d5f03f419e57e6751f87925ca19dc88297053fe6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d540251809289a05349b70ab5f4b7b99f922af66ab3c39ba56a475dcf95d5ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"0029dc49e981f94384271cce3e452614415a54181f7131ea73e1b3bf1824a372","signature":"ee98ab5441e8bb663100e81d2181a1d7c77ba349d66a1e96e7a8f6093d3df48b","impliedFormat":99},{"version":"20123bea3dbb6df088c475a22873e080ca572a5552d9d33ce8ac81b386d9a1de","signature":"a39e94160cfbaddb58d3d5c58b66bac92790d1e1260ed6efe9eed54cedfcfd87","impliedFormat":99},{"version":"58f0f877e238a6227acb64312521c23429f0d0e656a35bbdf47f42f3b19b652e","signature":"8b75c6e0702e5117b14d3bdefc9a50cf053be8acb92678f97ba5465a2f5b6a89","impliedFormat":99},{"version":"ffa3cb27795bf65b2b11a21ad80304bdf7aa908f01edf3fec767da17b04a0d61","signature":"47efb67f92ee4ef1829e75ac3c125e417543e6dc991633220b2192be97df49b4","impliedFormat":99},{"version":"ed102d07916799be66fb8e0e114764cd5a2458ab55316aaeb9bc7041c5656f84","signature":"5daf70c19e88d7888925c5a2685b967ff552d12bb0ed31fc6f47609f43a35f5e","impliedFormat":99},{"version":"3fce3d307186baf832ee8c915aae83b83999bac454df7b56ff34950e4d0c47e3","signature":"376f6f15136fc7b55f9b573bda3d09f620f1e2fdb8ec17ee6d4911efef7ab0b8","impliedFormat":99},{"version":"1148b3d5ca978407f1ab2b2ce4eb19da5c35b59ab1b13edbb3d8254a1fb59228","impliedFormat":99},{"version":"785b9d575b49124ce01b46f5b9402157c7611e6532effa562ac6aebec0074dfc","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"fbca5ffaebf282ec3cdac47b0d1d4a138a8b0bb32105251a38acb235087d3318","impliedFormat":1},{"version":"22293bd6fa12747929f8dfca3ec1684a3fe08638aa18023dd286ab337e88a592","impliedFormat":1}],"root":[[62,68]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":199,"noErrorTruncation":true,"noImplicitReturns":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9},"referencedMap":[[64,1],[68,2],[66,3],[67,4]],"version":"5.6.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hedia/types",
3
- "version": "2.4.2-alpha.0",
3
+ "version": "2.4.2-alpha.2",
4
4
  "description": "Enums, interfaces, and other common types for use in Hedia's software.",
5
5
  "main": "./dist/src/index.js",
6
6
  "type": "module",