@tellescope/types-models 1.255.8 → 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 +23 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js +5 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +23 -0
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js +4 -0
- package/lib/esm/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/index.ts +24 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -404,6 +404,7 @@ export interface Organization_readonly extends ClientRecord {
|
|
|
404
404
|
fromEmails?: string[];
|
|
405
405
|
twilioSID?: string;
|
|
406
406
|
twilioCustomerId?: string;
|
|
407
|
+
outboundSMSDisabled?: boolean;
|
|
407
408
|
customPortalScriptTags?: string[];
|
|
408
409
|
verifiedEmailDomains?: VerifiedEmailDomain[];
|
|
409
410
|
verifiedEmailDomainSettings?: VerifiedEmailDomainSettings;
|
|
@@ -1013,6 +1014,12 @@ export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_upd
|
|
|
1013
1014
|
pronouns?: string;
|
|
1014
1015
|
height?: GenericQuantityWithUnit;
|
|
1015
1016
|
weight?: GenericQuantityWithUnit;
|
|
1017
|
+
dailyCalorieTarget?: number;
|
|
1018
|
+
dailyProteinTarget?: number;
|
|
1019
|
+
dailyCarbTarget?: number;
|
|
1020
|
+
dailyFatTarget?: number;
|
|
1021
|
+
dailyFiberTarget?: number;
|
|
1022
|
+
dailyWaterTarget?: number;
|
|
1016
1023
|
source?: string;
|
|
1017
1024
|
usingV1SMS?: boolean;
|
|
1018
1025
|
addressLineOne?: string;
|
|
@@ -2145,6 +2152,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
|
|
|
2145
2152
|
syncToCanvasAsDataImport?: boolean;
|
|
2146
2153
|
matchCareTeamTagsForCanvasPractitionerResolution?: ListOfStringsWithQualifier;
|
|
2147
2154
|
dontSyncToCanvasOnSubmission?: boolean;
|
|
2155
|
+
dontAssociateCanvasResponsesWithAppointments?: boolean;
|
|
2148
2156
|
belugaVisitType?: string;
|
|
2149
2157
|
belugaVerificationId?: string;
|
|
2150
2158
|
belugaPharmacyMappings?: BelugaPharmacyMapping[];
|
|
@@ -2618,6 +2626,7 @@ export interface WebHook extends WebHook_readonly, WebHook_required, WebHook_upd
|
|
|
2618
2626
|
url: string;
|
|
2619
2627
|
secret: string;
|
|
2620
2628
|
subscriptions: WebhookSubscriptionsType;
|
|
2629
|
+
deliveryFailureCount?: number;
|
|
2621
2630
|
}
|
|
2622
2631
|
export type BaseAvailabilityBlock = {
|
|
2623
2632
|
userId: string;
|
|
@@ -3579,6 +3588,7 @@ export type AIContextSource = {
|
|
|
3579
3588
|
type: "Email" | "SMS" | "PhoneCall";
|
|
3580
3589
|
limit: number;
|
|
3581
3590
|
};
|
|
3591
|
+
export declare const AI_DECISION_NO_MATCH_OUTCOME = "____NO_MATCH____";
|
|
3582
3592
|
export type AIDecisionAutomationAction = AutomationActionBuilder<'aiDecision', {
|
|
3583
3593
|
outcomes: string[];
|
|
3584
3594
|
prompt?: string;
|
|
@@ -3703,6 +3713,18 @@ export type ObservationValue = {
|
|
|
3703
3713
|
value: number;
|
|
3704
3714
|
unit: string;
|
|
3705
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
|
+
};
|
|
3706
3728
|
export type ObservationStatusCode = ('registered' | 'preliminary' | 'final' | 'amended' | 'corrected' | 'cancelled' | 'entered-in-error' | 'unknown');
|
|
3707
3729
|
export type ObservationCategory = 'vital-signs' | 'laboratory';
|
|
3708
3730
|
export interface EnduserObservation_readonly extends ClientRecord {
|
|
@@ -3743,6 +3765,7 @@ export interface EnduserObservation extends EnduserObservation_readonly, Enduser
|
|
|
3743
3765
|
showWithPlotsByUnit?: string[];
|
|
3744
3766
|
invalidationReason?: string;
|
|
3745
3767
|
excludeFromVitalCountLookback?: boolean;
|
|
3768
|
+
components?: ObservationComponent[];
|
|
3746
3769
|
}
|
|
3747
3770
|
export type BlockType = 'h1' | 'h2' | 'html' | 'raw-html' | 'image' | 'youtube' | 'pdf' | 'iframe' | 'content-link';
|
|
3748
3771
|
export type BlockStyle = {
|