@icanbwell/bwell-sdk-ts 2.0.0-alpha.0-rc.1760356197 → 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.
@@ -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 {};
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.1760356197",
3
+ "version": "2.0.0-alpha.0-rc.1760371148",
4
4
  "description": "b.well TypeScript SDK",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",