@tellescope/types-models 1.123.0 → 1.123.1
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 +11 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +11 -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 +11 -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 = {
|
|
@@ -1238,12 +1239,14 @@ export interface Ticket extends Ticket_readonly, Ticket_required, Ticket_updates
|
|
|
1238
1239
|
reminders?: TicketReminder[];
|
|
1239
1240
|
preserveContext?: boolean;
|
|
1240
1241
|
phoneCallId?: string;
|
|
1242
|
+
smsId?: string;
|
|
1241
1243
|
calendarEventId?: string;
|
|
1242
1244
|
observationId?: string;
|
|
1243
1245
|
tags?: string[];
|
|
1244
1246
|
restrictByState?: string;
|
|
1245
1247
|
restrictByTags?: string[];
|
|
1246
1248
|
restrictByTagsQualifier?: ListQueryQualifier;
|
|
1249
|
+
archiveReason?: string;
|
|
1247
1250
|
}
|
|
1248
1251
|
export type AttendeeInfo = {
|
|
1249
1252
|
ExternalUserId: string;
|
|
@@ -2682,6 +2685,8 @@ export interface PortalCustomization extends PortalCustomization_readonly, Porta
|
|
|
2682
2685
|
iconURL?: string;
|
|
2683
2686
|
activeIconURL?: string;
|
|
2684
2687
|
showStripePortalLink?: boolean;
|
|
2688
|
+
hideCancellatation?: boolean;
|
|
2689
|
+
hiddenEventTitles?: string[];
|
|
2685
2690
|
}
|
|
2686
2691
|
export declare const MOBILE_BOTTOM_NAVIGATION_DISABLED_POSITION = 1000;
|
|
2687
2692
|
export declare const DEFAULT_PATIENT_PORTAL_BOTTOM_NAVIGATION_POSITIONS: {
|
|
@@ -3328,6 +3333,10 @@ export type AutomationTriggerEvents = {
|
|
|
3328
3333
|
phoneNumbers?: string[];
|
|
3329
3334
|
inputs?: string[];
|
|
3330
3335
|
}, {}>;
|
|
3336
|
+
'Left Voicemail': AutomationTriggerEventBuilder<"Left Voicemail", {
|
|
3337
|
+
phoneNumbers?: string[];
|
|
3338
|
+
inputs?: string[];
|
|
3339
|
+
}, {}>;
|
|
3331
3340
|
'Order Created': AutomationTriggerEventBuilder<"Order Created", {
|
|
3332
3341
|
titles?: string[];
|
|
3333
3342
|
}, {}>;
|
|
@@ -3339,6 +3348,7 @@ export type AutomationTriggerEvents = {
|
|
|
3339
3348
|
noCareTeam?: boolean;
|
|
3340
3349
|
destinations?: string[];
|
|
3341
3350
|
channels?: string[];
|
|
3351
|
+
keywords?: string[];
|
|
3342
3352
|
}, {}>;
|
|
3343
3353
|
'Pregnancy Ended': AutomationTriggerEventBuilder<"Pregnancy Ended", {
|
|
3344
3354
|
reason?: string;
|