@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.
- package/dist/__version__.d.ts +1 -1
- package/dist/__version__.js +1 -1
- package/dist/api/base/health-data/health-manager.d.ts +22 -22
- package/dist/api/graphql-api/healthdata/graphql-health-manager.d.ts +25 -26
- package/dist/api/graphql-api/healthdata/graphql-health-manager.js +190 -117
- package/dist/api/graphql-api/healthdata/health-data-response-factory.d.ts +3 -2
- package/dist/graphql/operations/index.d.ts +2 -2
- package/dist/graphql/operations/index.js +4 -6
- package/dist/graphql/operations/types.d.ts +6 -0
- package/dist/graphql/schema.d.ts +22 -8
- package/dist/models/health-data/allergy-intolerance-group.d.ts +9 -1
- package/dist/models/health-data/allergy-intolerance.d.ts +9 -1
- package/dist/models/health-data/care-plan-group.d.ts +2 -2
- package/dist/models/health-data/care-plan.d.ts +2 -2
- package/dist/models/health-data/care-team.d.ts +9 -1
- package/dist/models/health-data/condition-group.d.ts +9 -1
- package/dist/models/health-data/condition.d.ts +9 -1
- package/dist/models/health-data/diagnostic-report-lab-group.d.ts +9 -1
- package/dist/models/health-data/diagnostic-report.d.ts +9 -1
- package/dist/models/health-data/encounter-group.d.ts +9 -1
- package/dist/models/health-data/encounter.d.ts +9 -1
- package/dist/models/health-data/immunization-group.d.ts +9 -1
- package/dist/models/health-data/immunization.d.ts +9 -1
- package/dist/models/health-data/index.d.ts +21 -21
- package/dist/models/health-data/lab-bundle.d.ts +9 -1
- package/dist/models/health-data/lab-group.d.ts +9 -1
- package/dist/models/health-data/medication-dispense.d.ts +9 -1
- package/dist/models/health-data/medication-group.d.ts +9 -1
- package/dist/models/health-data/medication-request.d.ts +9 -1
- package/dist/models/health-data/medication-statement.d.ts +9 -1
- package/dist/models/health-data/procedure-group.d.ts +9 -1
- package/dist/models/health-data/procedure.d.ts +9 -1
- package/dist/models/health-data/vital-sign-bundle.d.ts +9 -1
- package/dist/models/health-data/vital-sign-group.d.ts +9 -1
- package/dist/models/identity/sdk-configuration-result.d.ts +1 -1
- 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
|
*
|