@tellescope/types-models 1.193.0 → 1.195.0
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 +13 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +13 -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 +3 -3
- package/src/index.ts +13 -0
package/lib/cjs/index.d.ts
CHANGED
|
@@ -345,6 +345,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
345
345
|
hasConnectedEmotii?: boolean;
|
|
346
346
|
hasConnectedDevelopHealth?: boolean;
|
|
347
347
|
hasConnectedCustomerIO?: boolean;
|
|
348
|
+
hasConnectedSuperDial?: boolean;
|
|
348
349
|
hasConfiguredZoom?: boolean;
|
|
349
350
|
hasTicketQueues?: boolean;
|
|
350
351
|
vitalTeamId?: string;
|
|
@@ -595,6 +596,7 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
|
|
|
595
596
|
drChronoId?: string;
|
|
596
597
|
canvasId?: string;
|
|
597
598
|
medplumId?: string;
|
|
599
|
+
athenaId?: string;
|
|
598
600
|
zoomId?: string;
|
|
599
601
|
zendeskId?: number;
|
|
600
602
|
tags?: string[];
|
|
@@ -695,6 +697,10 @@ export type EnduserDiagnosis = {
|
|
|
695
697
|
source?: string;
|
|
696
698
|
references?: RelatedRecord[];
|
|
697
699
|
};
|
|
700
|
+
export type RecentViewer = {
|
|
701
|
+
id: string;
|
|
702
|
+
at: Date;
|
|
703
|
+
};
|
|
698
704
|
export type TellescopeGender = "Male" | "Female" | "Other" | "Unknown";
|
|
699
705
|
export interface Enduser_readonly extends UserActivityInfo, ClientRecord, EnduserEngagementTimestamps {
|
|
700
706
|
lastCommunication?: Date;
|
|
@@ -715,6 +721,7 @@ export interface Enduser_updatesDisabled {
|
|
|
715
721
|
references?: RelatedRecord[];
|
|
716
722
|
}
|
|
717
723
|
export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_updatesDisabled {
|
|
724
|
+
recentViewers?: RecentViewer[];
|
|
718
725
|
healthie_dietitian_id?: string;
|
|
719
726
|
unsubscribePhone?: boolean;
|
|
720
727
|
externalId?: string;
|
|
@@ -799,6 +806,8 @@ export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_upd
|
|
|
799
806
|
chargebeeEnvironment?: string;
|
|
800
807
|
chargebeeId?: string;
|
|
801
808
|
healthieSyncError?: string;
|
|
809
|
+
lastSuperdialEligibilityCheckAt?: Date;
|
|
810
|
+
superdialEligibilityResponse?: string;
|
|
802
811
|
}
|
|
803
812
|
export interface EnduserCustomType_readonly extends ClientRecord {
|
|
804
813
|
}
|
|
@@ -1581,6 +1590,7 @@ export type FormFieldOptions = FormFieldValidation & {
|
|
|
1581
1590
|
chargebeePlanId?: string;
|
|
1582
1591
|
chargebeeItemId?: string;
|
|
1583
1592
|
relatedContactTypes?: string[];
|
|
1593
|
+
radioChoices?: string[];
|
|
1584
1594
|
};
|
|
1585
1595
|
export type MultipleChoiceOptions = Pick<FormFieldOptions, 'choices' | 'radio' | 'other'>;
|
|
1586
1596
|
export type FormFieldCalloutConditionComparison = 'Equals';
|
|
@@ -2111,6 +2121,7 @@ export type BaseAvailabilityBlock = {
|
|
|
2111
2121
|
userId: string;
|
|
2112
2122
|
startTimeInMS: number;
|
|
2113
2123
|
durationInMinutes: number;
|
|
2124
|
+
externalId?: string;
|
|
2114
2125
|
};
|
|
2115
2126
|
export interface AvailabilityBlock_readonly extends ClientRecord {
|
|
2116
2127
|
}
|
|
@@ -2181,6 +2192,7 @@ export interface CalendarEvent_updatesDisabled {
|
|
|
2181
2192
|
}
|
|
2182
2193
|
export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_required, CalendarEvent_updatesDisabled {
|
|
2183
2194
|
athenaDepartmentId?: string;
|
|
2195
|
+
athenaTypeId?: string;
|
|
2184
2196
|
actualDuration?: number;
|
|
2185
2197
|
dontSyncToCanvas?: boolean;
|
|
2186
2198
|
reason?: string;
|
|
@@ -2395,6 +2407,7 @@ export interface CalendarEventTemplate extends CalendarEventTemplate_readonly, C
|
|
|
2395
2407
|
preventRescheduleMinutesInAdvance?: number;
|
|
2396
2408
|
preventCancelMinutesInAdvance?: number;
|
|
2397
2409
|
athenaDepartmentId?: string;
|
|
2410
|
+
athenaTypeId?: string;
|
|
2398
2411
|
}
|
|
2399
2412
|
export interface AppointmentLocation_readonly extends ClientRecord {
|
|
2400
2413
|
}
|