@tellescope/types-models 1.255.9 → 1.255.10
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/lib/cjs/index.d.ts +20 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +20 -0
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/index.ts +17 -0
package/lib/cjs/index.d.ts
CHANGED
|
@@ -1014,6 +1014,12 @@ export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_upd
|
|
|
1014
1014
|
pronouns?: string;
|
|
1015
1015
|
height?: GenericQuantityWithUnit;
|
|
1016
1016
|
weight?: GenericQuantityWithUnit;
|
|
1017
|
+
dailyCalorieTarget?: number;
|
|
1018
|
+
dailyProteinTarget?: number;
|
|
1019
|
+
dailyCarbTarget?: number;
|
|
1020
|
+
dailyFatTarget?: number;
|
|
1021
|
+
dailyFiberTarget?: number;
|
|
1022
|
+
dailyWaterTarget?: number;
|
|
1017
1023
|
source?: string;
|
|
1018
1024
|
usingV1SMS?: boolean;
|
|
1019
1025
|
addressLineOne?: string;
|
|
@@ -2146,6 +2152,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
|
|
|
2146
2152
|
syncToCanvasAsDataImport?: boolean;
|
|
2147
2153
|
matchCareTeamTagsForCanvasPractitionerResolution?: ListOfStringsWithQualifier;
|
|
2148
2154
|
dontSyncToCanvasOnSubmission?: boolean;
|
|
2155
|
+
dontAssociateCanvasResponsesWithAppointments?: boolean;
|
|
2149
2156
|
belugaVisitType?: string;
|
|
2150
2157
|
belugaVerificationId?: string;
|
|
2151
2158
|
belugaPharmacyMappings?: BelugaPharmacyMapping[];
|
|
@@ -3706,6 +3713,18 @@ export type ObservationValue = {
|
|
|
3706
3713
|
value: number;
|
|
3707
3714
|
unit: string;
|
|
3708
3715
|
};
|
|
3716
|
+
export type ObservationComponentCoding = {
|
|
3717
|
+
system: string;
|
|
3718
|
+
code: string;
|
|
3719
|
+
display?: string;
|
|
3720
|
+
};
|
|
3721
|
+
export type ObservationComponent = {
|
|
3722
|
+
code: {
|
|
3723
|
+
text: string;
|
|
3724
|
+
coding?: ObservationComponentCoding[];
|
|
3725
|
+
};
|
|
3726
|
+
valueQuantity: ObservationValue;
|
|
3727
|
+
};
|
|
3709
3728
|
export type ObservationStatusCode = ('registered' | 'preliminary' | 'final' | 'amended' | 'corrected' | 'cancelled' | 'entered-in-error' | 'unknown');
|
|
3710
3729
|
export type ObservationCategory = 'vital-signs' | 'laboratory';
|
|
3711
3730
|
export interface EnduserObservation_readonly extends ClientRecord {
|
|
@@ -3746,6 +3765,7 @@ export interface EnduserObservation extends EnduserObservation_readonly, Enduser
|
|
|
3746
3765
|
showWithPlotsByUnit?: string[];
|
|
3747
3766
|
invalidationReason?: string;
|
|
3748
3767
|
excludeFromVitalCountLookback?: boolean;
|
|
3768
|
+
components?: ObservationComponent[];
|
|
3749
3769
|
}
|
|
3750
3770
|
export type BlockType = 'h1' | 'h2' | 'html' | 'raw-html' | 'image' | 'youtube' | 'pdf' | 'iframe' | 'content-link';
|
|
3751
3771
|
export type BlockStyle = {
|