@tryvital/vital-node 3.1.146 → 3.1.147

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.
Files changed (58) hide show
  1. package/api/resources/activity/client/Client.js +2 -2
  2. package/api/resources/aggregate/client/Client.js +1 -1
  3. package/api/resources/body/client/Client.js +2 -2
  4. package/api/resources/devices/client/Client.js +1 -1
  5. package/api/resources/electrocardiogram/client/Client.js +1 -1
  6. package/api/resources/insurance/client/Client.js +2 -2
  7. package/api/resources/introspect/client/Client.js +2 -2
  8. package/api/resources/labTests/client/Client.js +34 -34
  9. package/api/resources/link/client/Client.js +14 -14
  10. package/api/resources/meal/client/Client.js +1 -1
  11. package/api/resources/menstrualCycle/client/Client.js +1 -1
  12. package/api/resources/profile/client/Client.js +2 -2
  13. package/api/resources/providers/client/Client.js +1 -1
  14. package/api/resources/sleep/client/Client.js +4 -4
  15. package/api/resources/sleepCycle/client/Client.js +1 -1
  16. package/api/resources/team/client/Client.js +7 -7
  17. package/api/resources/testkit/client/Client.js +2 -2
  18. package/api/resources/user/client/Client.js +16 -16
  19. package/api/resources/vitals/client/Client.js +58 -58
  20. package/api/resources/workouts/client/Client.js +3 -3
  21. package/api/types/AggregateExprArg.d.ts +1 -1
  22. package/api/types/QuerySelectItem.d.ts +1 -1
  23. package/dist/api/resources/activity/client/Client.js +2 -2
  24. package/dist/api/resources/aggregate/client/Client.js +1 -1
  25. package/dist/api/resources/body/client/Client.js +2 -2
  26. package/dist/api/resources/devices/client/Client.js +1 -1
  27. package/dist/api/resources/electrocardiogram/client/Client.js +1 -1
  28. package/dist/api/resources/insurance/client/Client.js +2 -2
  29. package/dist/api/resources/introspect/client/Client.js +2 -2
  30. package/dist/api/resources/labTests/client/Client.js +34 -34
  31. package/dist/api/resources/link/client/Client.js +14 -14
  32. package/dist/api/resources/meal/client/Client.js +1 -1
  33. package/dist/api/resources/menstrualCycle/client/Client.js +1 -1
  34. package/dist/api/resources/profile/client/Client.js +2 -2
  35. package/dist/api/resources/providers/client/Client.js +1 -1
  36. package/dist/api/resources/sleep/client/Client.js +4 -4
  37. package/dist/api/resources/sleepCycle/client/Client.js +1 -1
  38. package/dist/api/resources/team/client/Client.js +7 -7
  39. package/dist/api/resources/testkit/client/Client.js +2 -2
  40. package/dist/api/resources/user/client/Client.js +16 -16
  41. package/dist/api/resources/vitals/client/Client.js +58 -58
  42. package/dist/api/resources/workouts/client/Client.js +3 -3
  43. package/dist/api/types/AggregateExprArg.d.ts +1 -1
  44. package/dist/api/types/QuerySelectItem.d.ts +1 -1
  45. package/dist/serialization/types/AggregateExprArg.d.ts +1 -2
  46. package/dist/serialization/types/AggregateExprArg.js +0 -2
  47. package/dist/serialization/types/QuerySelectItem.d.ts +2 -2
  48. package/dist/serialization/types/QuerySelectItem.js +2 -2
  49. package/dist/version.d.ts +1 -1
  50. package/dist/version.js +1 -1
  51. package/package.json +1 -1
  52. package/reference.md +1051 -0
  53. package/serialization/types/AggregateExprArg.d.ts +1 -2
  54. package/serialization/types/AggregateExprArg.js +0 -2
  55. package/serialization/types/QuerySelectItem.d.ts +2 -2
  56. package/serialization/types/QuerySelectItem.js +2 -2
  57. package/version.d.ts +1 -1
  58. package/version.js +1 -1
@@ -9,11 +9,10 @@ import { ActivityColumnExpr } from "./ActivityColumnExpr";
9
9
  import { WorkoutColumnExpr } from "./WorkoutColumnExpr";
10
10
  import { BodyColumnExpr } from "./BodyColumnExpr";
11
11
  import { IndexColumnExpr } from "./IndexColumnExpr";
12
- import { GroupKeyColumnExpr } from "./GroupKeyColumnExpr";
13
12
  import { SleepScoreValueMacroExpr } from "./SleepScoreValueMacroExpr";
14
13
  import { ChronotypeValueMacroExpr } from "./ChronotypeValueMacroExpr";
15
14
  import { UnrecognizedValueMacroExpr } from "./UnrecognizedValueMacroExpr";
16
15
  export declare const AggregateExprArg: core.serialization.Schema<serializers.AggregateExprArg.Raw, Vital.AggregateExprArg>;
17
16
  export declare namespace AggregateExprArg {
18
- type Raw = SleepColumnExpr.Raw | ActivityColumnExpr.Raw | WorkoutColumnExpr.Raw | BodyColumnExpr.Raw | IndexColumnExpr.Raw | GroupKeyColumnExpr.Raw | SleepScoreValueMacroExpr.Raw | ChronotypeValueMacroExpr.Raw | UnrecognizedValueMacroExpr.Raw;
17
+ type Raw = SleepColumnExpr.Raw | ActivityColumnExpr.Raw | WorkoutColumnExpr.Raw | BodyColumnExpr.Raw | IndexColumnExpr.Raw | SleepScoreValueMacroExpr.Raw | ChronotypeValueMacroExpr.Raw | UnrecognizedValueMacroExpr.Raw;
19
18
  }
@@ -33,7 +33,6 @@ const ActivityColumnExpr_1 = require("./ActivityColumnExpr");
33
33
  const WorkoutColumnExpr_1 = require("./WorkoutColumnExpr");
34
34
  const BodyColumnExpr_1 = require("./BodyColumnExpr");
35
35
  const IndexColumnExpr_1 = require("./IndexColumnExpr");
36
- const GroupKeyColumnExpr_1 = require("./GroupKeyColumnExpr");
37
36
  const SleepScoreValueMacroExpr_1 = require("./SleepScoreValueMacroExpr");
38
37
  const ChronotypeValueMacroExpr_1 = require("./ChronotypeValueMacroExpr");
39
38
  const UnrecognizedValueMacroExpr_1 = require("./UnrecognizedValueMacroExpr");
@@ -43,7 +42,6 @@ exports.AggregateExprArg = core.serialization.undiscriminatedUnion([
43
42
  WorkoutColumnExpr_1.WorkoutColumnExpr,
44
43
  BodyColumnExpr_1.BodyColumnExpr,
45
44
  IndexColumnExpr_1.IndexColumnExpr,
46
- GroupKeyColumnExpr_1.GroupKeyColumnExpr,
47
45
  SleepScoreValueMacroExpr_1.SleepScoreValueMacroExpr,
48
46
  ChronotypeValueMacroExpr_1.ChronotypeValueMacroExpr,
49
47
  UnrecognizedValueMacroExpr_1.UnrecognizedValueMacroExpr,
@@ -5,16 +5,16 @@ import * as serializers from "../index";
5
5
  import * as Vital from "../../api/index";
6
6
  import * as core from "../../core";
7
7
  import { AggregateExpr } from "./AggregateExpr";
8
+ import { GroupKeyColumnExpr } from "./GroupKeyColumnExpr";
8
9
  import { SleepColumnExpr } from "./SleepColumnExpr";
9
10
  import { ActivityColumnExpr } from "./ActivityColumnExpr";
10
11
  import { WorkoutColumnExpr } from "./WorkoutColumnExpr";
11
12
  import { BodyColumnExpr } from "./BodyColumnExpr";
12
13
  import { IndexColumnExpr } from "./IndexColumnExpr";
13
- import { GroupKeyColumnExpr } from "./GroupKeyColumnExpr";
14
14
  import { SleepScoreValueMacroExpr } from "./SleepScoreValueMacroExpr";
15
15
  import { ChronotypeValueMacroExpr } from "./ChronotypeValueMacroExpr";
16
16
  import { UnrecognizedValueMacroExpr } from "./UnrecognizedValueMacroExpr";
17
17
  export declare const QuerySelectItem: core.serialization.Schema<serializers.QuerySelectItem.Raw, Vital.QuerySelectItem>;
18
18
  export declare namespace QuerySelectItem {
19
- type Raw = AggregateExpr.Raw | SleepColumnExpr.Raw | ActivityColumnExpr.Raw | WorkoutColumnExpr.Raw | BodyColumnExpr.Raw | IndexColumnExpr.Raw | GroupKeyColumnExpr.Raw | SleepScoreValueMacroExpr.Raw | ChronotypeValueMacroExpr.Raw | UnrecognizedValueMacroExpr.Raw;
19
+ type Raw = AggregateExpr.Raw | GroupKeyColumnExpr.Raw | SleepColumnExpr.Raw | ActivityColumnExpr.Raw | WorkoutColumnExpr.Raw | BodyColumnExpr.Raw | IndexColumnExpr.Raw | SleepScoreValueMacroExpr.Raw | ChronotypeValueMacroExpr.Raw | UnrecognizedValueMacroExpr.Raw;
20
20
  }
@@ -29,23 +29,23 @@ Object.defineProperty(exports, "__esModule", { value: true });
29
29
  exports.QuerySelectItem = void 0;
30
30
  const core = __importStar(require("../../core"));
31
31
  const AggregateExpr_1 = require("./AggregateExpr");
32
+ const GroupKeyColumnExpr_1 = require("./GroupKeyColumnExpr");
32
33
  const SleepColumnExpr_1 = require("./SleepColumnExpr");
33
34
  const ActivityColumnExpr_1 = require("./ActivityColumnExpr");
34
35
  const WorkoutColumnExpr_1 = require("./WorkoutColumnExpr");
35
36
  const BodyColumnExpr_1 = require("./BodyColumnExpr");
36
37
  const IndexColumnExpr_1 = require("./IndexColumnExpr");
37
- const GroupKeyColumnExpr_1 = require("./GroupKeyColumnExpr");
38
38
  const SleepScoreValueMacroExpr_1 = require("./SleepScoreValueMacroExpr");
39
39
  const ChronotypeValueMacroExpr_1 = require("./ChronotypeValueMacroExpr");
40
40
  const UnrecognizedValueMacroExpr_1 = require("./UnrecognizedValueMacroExpr");
41
41
  exports.QuerySelectItem = core.serialization.undiscriminatedUnion([
42
42
  AggregateExpr_1.AggregateExpr,
43
+ GroupKeyColumnExpr_1.GroupKeyColumnExpr,
43
44
  SleepColumnExpr_1.SleepColumnExpr,
44
45
  ActivityColumnExpr_1.ActivityColumnExpr,
45
46
  WorkoutColumnExpr_1.WorkoutColumnExpr,
46
47
  BodyColumnExpr_1.BodyColumnExpr,
47
48
  IndexColumnExpr_1.IndexColumnExpr,
48
- GroupKeyColumnExpr_1.GroupKeyColumnExpr,
49
49
  SleepScoreValueMacroExpr_1.SleepScoreValueMacroExpr,
50
50
  ChronotypeValueMacroExpr_1.ChronotypeValueMacroExpr,
51
51
  UnrecognizedValueMacroExpr_1.UnrecognizedValueMacroExpr,
package/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "3.1.146";
1
+ export declare const SDK_VERSION = "3.1.147";
package/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "3.1.146";
4
+ exports.SDK_VERSION = "3.1.147";