@icanbwell/bwell-sdk-ts 2.0.0-alpha.0-rc.1761082808 → 2.0.0-alpha.0-rc.1761162543

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 (36) hide show
  1. package/dist/__version__.d.ts +1 -1
  2. package/dist/__version__.js +1 -1
  3. package/dist/api/base/health-data/health-manager.d.ts +22 -22
  4. package/dist/api/graphql-api/healthdata/graphql-health-manager.d.ts +25 -26
  5. package/dist/api/graphql-api/healthdata/graphql-health-manager.js +190 -117
  6. package/dist/api/graphql-api/healthdata/health-data-response-factory.d.ts +3 -2
  7. package/dist/graphql/operations/index.d.ts +2 -2
  8. package/dist/graphql/operations/index.js +4 -6
  9. package/dist/graphql/operations/types.d.ts +6 -0
  10. package/dist/graphql/schema.d.ts +22 -8
  11. package/dist/models/health-data/allergy-intolerance-group.d.ts +9 -1
  12. package/dist/models/health-data/allergy-intolerance.d.ts +9 -1
  13. package/dist/models/health-data/care-plan-group.d.ts +2 -2
  14. package/dist/models/health-data/care-plan.d.ts +2 -2
  15. package/dist/models/health-data/care-team.d.ts +9 -1
  16. package/dist/models/health-data/condition-group.d.ts +9 -1
  17. package/dist/models/health-data/condition.d.ts +9 -1
  18. package/dist/models/health-data/diagnostic-report-lab-group.d.ts +9 -1
  19. package/dist/models/health-data/diagnostic-report.d.ts +9 -1
  20. package/dist/models/health-data/encounter-group.d.ts +9 -1
  21. package/dist/models/health-data/encounter.d.ts +9 -1
  22. package/dist/models/health-data/immunization-group.d.ts +9 -1
  23. package/dist/models/health-data/immunization.d.ts +9 -1
  24. package/dist/models/health-data/index.d.ts +21 -21
  25. package/dist/models/health-data/lab-bundle.d.ts +9 -1
  26. package/dist/models/health-data/lab-group.d.ts +9 -1
  27. package/dist/models/health-data/medication-dispense.d.ts +9 -1
  28. package/dist/models/health-data/medication-group.d.ts +9 -1
  29. package/dist/models/health-data/medication-request.d.ts +9 -1
  30. package/dist/models/health-data/medication-statement.d.ts +9 -1
  31. package/dist/models/health-data/procedure-group.d.ts +9 -1
  32. package/dist/models/health-data/procedure.d.ts +9 -1
  33. package/dist/models/health-data/vital-sign-bundle.d.ts +9 -1
  34. package/dist/models/health-data/vital-sign-group.d.ts +9 -1
  35. package/dist/models/identity/sdk-configuration-result.d.ts +1 -1
  36. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- import type { CodeableConcept, Coding, Component, Extension, ReferenceRange, ResourceBundle } from "../common/index.js";
1
+ import type { CodeableConcept, Coding, Component, Extension, GroupedHealthDataResponse, ReferenceRange, ResourceBundle } from "../common/index.js";
2
2
  /**
3
3
  * Bundle containing vital sign group data with paging information.
4
4
  * Maps exactly to GraphQL GetVitalSignGroupsQueryResults structure.
@@ -8,6 +8,14 @@ import type { CodeableConcept, Coding, Component, Extension, ReferenceRange, Res
8
8
  * @excerpt Bundle containing vital sign group data with paging...
9
9
  */
10
10
  export type VitalSignGroupBundle = ResourceBundle<VitalSignGroup>;
11
+ /**
12
+ * Response for grouped vital sign data with paging information.
13
+ *
14
+ * @category Models
15
+ * @title VitalSignGroupsResponse
16
+ * @excerpt Response for grouped vital sign data with paging information
17
+ */
18
+ export type VitalSignGroupsResponse = GroupedHealthDataResponse<VitalSignGroup>;
11
19
  /**
12
20
  * Represents a vital sign group resource matching GraphQL structure.
13
21
  *
@@ -1,6 +1,6 @@
1
1
  import { LogLevel } from "../enums/log-level.js";
2
2
  /**
3
- * SDK configuration result type
3
+ * Configuration result type
4
4
  * @internal
5
5
  */
6
6
  export type SdkConfigurationResult = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icanbwell/bwell-sdk-ts",
3
- "version": "2.0.0-alpha.0-rc.1761082808",
3
+ "version": "2.0.0-alpha.0-rc.1761162543",
4
4
  "description": "b.well TypeScript SDK",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",