@tellescope/types-models 1.250.0 → 1.250.2
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 +4 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +4 -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 +8 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -250,6 +250,7 @@ export type OrganizationSettings = {
|
|
|
250
250
|
excludeCareTeamFromSearch?: boolean;
|
|
251
251
|
showVideoCallsOnTimeline?: boolean;
|
|
252
252
|
allowOverrideEmailUniqueness?: boolean;
|
|
253
|
+
endPhoneCallWhenVideoJoined?: boolean;
|
|
253
254
|
};
|
|
254
255
|
tickets?: {
|
|
255
256
|
defaultJourneyDueDateOffsetInMS?: number | '';
|
|
@@ -1076,6 +1077,7 @@ export interface EnduserMedication extends EnduserMedication_readonly, EnduserMe
|
|
|
1076
1077
|
allergyNote?: string;
|
|
1077
1078
|
status?: string;
|
|
1078
1079
|
protocol?: string;
|
|
1080
|
+
category?: string;
|
|
1079
1081
|
scriptSureDraft?: {
|
|
1080
1082
|
prescriptionRouteId?: string;
|
|
1081
1083
|
drugId?: string;
|
|
@@ -4720,6 +4722,7 @@ export type AutomationTriggerEvents = {
|
|
|
4720
4722
|
'Medication Added': AutomationTriggerEventBuilder<"Medication Added", {
|
|
4721
4723
|
titles: string[];
|
|
4722
4724
|
protocols: string[];
|
|
4725
|
+
titleCondition?: CompoundFilter<'title'>;
|
|
4723
4726
|
}, {}>;
|
|
4724
4727
|
'No Recent Appointment': AutomationTriggerEventBuilder<"No Recent Appointment", {
|
|
4725
4728
|
intervalInMS: number;
|
|
@@ -4780,6 +4783,7 @@ export type AutomationTriggerEvents = {
|
|
|
4780
4783
|
channels?: string[];
|
|
4781
4784
|
keywords?: string[];
|
|
4782
4785
|
}, {}>;
|
|
4786
|
+
'Outbound Chat Sent': AutomationTriggerEventBuilder<"Outbound Chat Sent", {}, {}>;
|
|
4783
4787
|
'Pregnancy Ended': AutomationTriggerEventBuilder<"Pregnancy Ended", {
|
|
4784
4788
|
reason?: string;
|
|
4785
4789
|
}, {}>;
|