@tellescope/types-models 1.123.0 → 1.124.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 +12 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +12 -1
- 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 +12 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -177,6 +177,7 @@ export type OrganizationSettings = {
|
|
|
177
177
|
showCommunications?: boolean;
|
|
178
178
|
showJourneys?: boolean;
|
|
179
179
|
requireDueDate?: boolean;
|
|
180
|
+
allowArchival?: boolean;
|
|
180
181
|
};
|
|
181
182
|
calendar?: {
|
|
182
183
|
dayStart?: {
|
|
@@ -574,7 +575,7 @@ export type ScheduledJourney = {
|
|
|
574
575
|
addAt: Date;
|
|
575
576
|
};
|
|
576
577
|
export type EnduserRelationship = {
|
|
577
|
-
type: ('Parent' | 'Child' | 'Spouse' | 'Partner' | 'Sibling' | 'Grandparent' | 'Grandchild' | 'Caregiver' | 'Caretaker' | 'Care Recipient' | 'Power of Attorney' | 'Power of Attorney For' | "Emergency Contact" | "Emergency Contact For" | 'Relates To');
|
|
578
|
+
type: ('Parent' | 'Child' | 'Spouse' | 'Partner' | 'Sibling' | 'Grandparent' | 'Grandchild' | 'Caregiver' | 'Caretaker' | 'Care Recipient' | 'Power of Attorney' | 'Power of Attorney For' | "Emergency Contact" | "Emergency Contact For" | "Care Partner" | 'Relates To');
|
|
578
579
|
id: string;
|
|
579
580
|
};
|
|
580
581
|
export type Language = {
|
|
@@ -698,6 +699,7 @@ export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_upd
|
|
|
698
699
|
defaultFromPhone?: string;
|
|
699
700
|
defaultFromEmail?: string;
|
|
700
701
|
useDefaultFromEmailInAutomations?: boolean;
|
|
702
|
+
useDefaultFromPhoneInAutomations?: boolean;
|
|
701
703
|
stripeCustomerId?: string;
|
|
702
704
|
stripeKey?: string;
|
|
703
705
|
}
|
|
@@ -1238,12 +1240,14 @@ export interface Ticket extends Ticket_readonly, Ticket_required, Ticket_updates
|
|
|
1238
1240
|
reminders?: TicketReminder[];
|
|
1239
1241
|
preserveContext?: boolean;
|
|
1240
1242
|
phoneCallId?: string;
|
|
1243
|
+
smsId?: string;
|
|
1241
1244
|
calendarEventId?: string;
|
|
1242
1245
|
observationId?: string;
|
|
1243
1246
|
tags?: string[];
|
|
1244
1247
|
restrictByState?: string;
|
|
1245
1248
|
restrictByTags?: string[];
|
|
1246
1249
|
restrictByTagsQualifier?: ListQueryQualifier;
|
|
1250
|
+
archiveReason?: string;
|
|
1247
1251
|
}
|
|
1248
1252
|
export type AttendeeInfo = {
|
|
1249
1253
|
ExternalUserId: string;
|
|
@@ -2682,6 +2686,8 @@ export interface PortalCustomization extends PortalCustomization_readonly, Porta
|
|
|
2682
2686
|
iconURL?: string;
|
|
2683
2687
|
activeIconURL?: string;
|
|
2684
2688
|
showStripePortalLink?: boolean;
|
|
2689
|
+
hideCancellatation?: boolean;
|
|
2690
|
+
hiddenEventTitles?: string[];
|
|
2685
2691
|
}
|
|
2686
2692
|
export declare const MOBILE_BOTTOM_NAVIGATION_DISABLED_POSITION = 1000;
|
|
2687
2693
|
export declare const DEFAULT_PATIENT_PORTAL_BOTTOM_NAVIGATION_POSITIONS: {
|
|
@@ -3328,6 +3334,10 @@ export type AutomationTriggerEvents = {
|
|
|
3328
3334
|
phoneNumbers?: string[];
|
|
3329
3335
|
inputs?: string[];
|
|
3330
3336
|
}, {}>;
|
|
3337
|
+
'Left Voicemail': AutomationTriggerEventBuilder<"Left Voicemail", {
|
|
3338
|
+
phoneNumbers?: string[];
|
|
3339
|
+
inputs?: string[];
|
|
3340
|
+
}, {}>;
|
|
3331
3341
|
'Order Created': AutomationTriggerEventBuilder<"Order Created", {
|
|
3332
3342
|
titles?: string[];
|
|
3333
3343
|
}, {}>;
|
|
@@ -3339,6 +3349,7 @@ export type AutomationTriggerEvents = {
|
|
|
3339
3349
|
noCareTeam?: boolean;
|
|
3340
3350
|
destinations?: string[];
|
|
3341
3351
|
channels?: string[];
|
|
3352
|
+
keywords?: string[];
|
|
3342
3353
|
}, {}>;
|
|
3343
3354
|
'Pregnancy Ended': AutomationTriggerEventBuilder<"Pregnancy Ended", {
|
|
3344
3355
|
reason?: string;
|