@icanbwell/bwell-sdk-ts 2.0.0-alpha.0-rc.1760124951 → 2.0.0-alpha.0-rc.1760371148
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 +14 -1
- package/dist/api/graphql-api/healthdata/graphql-health-manager.d.ts +2 -1
- package/dist/api/graphql-api/healthdata/graphql-health-manager.js +20 -0
- package/dist/graphql/operations/index.d.ts +8 -0
- package/dist/graphql/operations/index.js +26 -0
- package/dist/graphql/operations/types.d.ts +941 -0
- package/dist/models/health-data/index.d.ts +1 -0
- package/dist/models/health-data/lab-bundle.d.ts +18 -0
- package/dist/models/health-data/lab-bundle.js +1 -0
- package/package.json +1 -1
|
@@ -19,6 +19,7 @@ export { Observation } from "./observation.js";
|
|
|
19
19
|
export { ConditionBundle, Condition } from "./condition.js";
|
|
20
20
|
export { ProcedureBundle, Procedure } from "./procedure.js";
|
|
21
21
|
export { VitalSignBundle } from "./vital-sign-bundle.js";
|
|
22
|
+
export { LabBundle } from "./lab-bundle.js";
|
|
22
23
|
export { CareTeamBundle, CareTeam } from "./care-team.js";
|
|
23
24
|
export { EncounterBundle, Encounter } from "./encounter.js";
|
|
24
25
|
export { MedicationDispenseBundle, MedicationDispense, } from "./medication-dispense.js";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { EntryBundle, IdentifiedResourceEntry } from "../common/bundle.js";
|
|
2
|
+
import { Observation } from "../index.js";
|
|
3
|
+
/**
|
|
4
|
+
* Entry in a lab bundle with observation resource and metadata.
|
|
5
|
+
*
|
|
6
|
+
* @category Models
|
|
7
|
+
* @title LabEntry
|
|
8
|
+
* @excerpt Entry in a lab bundle
|
|
9
|
+
*/
|
|
10
|
+
export type LabEntry = IdentifiedResourceEntry<Observation>;
|
|
11
|
+
/**
|
|
12
|
+
* Bundle of lab search results.
|
|
13
|
+
*
|
|
14
|
+
* @category Models
|
|
15
|
+
* @title LabBundle
|
|
16
|
+
* @excerpt Bundle of lab search results
|
|
17
|
+
*/
|
|
18
|
+
export type LabBundle = EntryBundle<LabEntry>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|