@tellescope/types-models 1.129.2 → 1.131.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 +44 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js +1 -0
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +44 -0
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js +1 -0
- package/lib/esm/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/index.ts +45 -3
package/lib/cjs/index.d.ts
CHANGED
|
@@ -547,6 +547,7 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
|
|
|
547
547
|
templateFields?: LabeledField[];
|
|
548
548
|
dashboardView?: CustomDashboardView;
|
|
549
549
|
hideFromCalendarView?: boolean;
|
|
550
|
+
requireSSO?: string[];
|
|
550
551
|
}
|
|
551
552
|
export type Preference = 'email' | 'sms' | 'call' | 'chat';
|
|
552
553
|
export type CustomField = string | number | object | {
|
|
@@ -1167,6 +1168,7 @@ export interface File extends File_readonly, File_required, File_updatesDisabled
|
|
|
1167
1168
|
isCalledOut?: boolean;
|
|
1168
1169
|
ocrType?: string;
|
|
1169
1170
|
references?: RelatedRecord[];
|
|
1171
|
+
tags?: string[];
|
|
1170
1172
|
}
|
|
1171
1173
|
export type TicketActionBuilder<T, I> = {
|
|
1172
1174
|
type: T;
|
|
@@ -1266,6 +1268,8 @@ export interface Ticket extends Ticket_readonly, Ticket_required, Ticket_updates
|
|
|
1266
1268
|
restrictByTags?: string[];
|
|
1267
1269
|
restrictByTagsQualifier?: ListQueryQualifier;
|
|
1268
1270
|
archiveReason?: string;
|
|
1271
|
+
contextFormIds?: string[];
|
|
1272
|
+
contextEnduserFields?: string[];
|
|
1269
1273
|
}
|
|
1270
1274
|
export type AttendeeInfo = {
|
|
1271
1275
|
ExternalUserId: string;
|
|
@@ -1524,6 +1528,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
|
|
|
1524
1528
|
canvasId?: string;
|
|
1525
1529
|
canvasQuestionId?: string;
|
|
1526
1530
|
syncToOLH?: boolean;
|
|
1531
|
+
syncWithResponsesFromFormIds?: string[];
|
|
1527
1532
|
}
|
|
1528
1533
|
export interface FormGroup_readonly extends ClientRecord {
|
|
1529
1534
|
}
|
|
@@ -1753,6 +1758,7 @@ export type FormResponseValue = {
|
|
|
1753
1758
|
disabled?: boolean;
|
|
1754
1759
|
isHighlightedOnTimeline?: boolean;
|
|
1755
1760
|
computedValueKey?: 'Height' | 'Weight' | 'Date of Birth' | "Gender";
|
|
1761
|
+
intakeField?: string;
|
|
1756
1762
|
};
|
|
1757
1763
|
export type AnswerForType = {
|
|
1758
1764
|
'email': FormResponseAnswerEmail['value'];
|
|
@@ -2002,6 +2008,9 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
|
|
|
2002
2008
|
source: string;
|
|
2003
2009
|
identifier: string;
|
|
2004
2010
|
};
|
|
2011
|
+
dontAutoSyncPatientToHealthie?: boolean;
|
|
2012
|
+
displayTitle?: string;
|
|
2013
|
+
displayDescription?: string;
|
|
2005
2014
|
}
|
|
2006
2015
|
export type PaymentProcessor = 'Square' | 'Stripe';
|
|
2007
2016
|
export interface Product_readonly extends ClientRecord {
|
|
@@ -2114,6 +2123,9 @@ export interface CalendarEventTemplate extends CalendarEventTemplate_readonly, C
|
|
|
2114
2123
|
matchToHealthieTemplate?: boolean;
|
|
2115
2124
|
useUserURL?: boolean;
|
|
2116
2125
|
instructions?: string;
|
|
2126
|
+
dontAutoSyncPatientToHealthie?: boolean;
|
|
2127
|
+
displayTitle?: string;
|
|
2128
|
+
displayDescription?: string;
|
|
2117
2129
|
}
|
|
2118
2130
|
export interface AppointmentLocation_readonly extends ClientRecord {
|
|
2119
2131
|
}
|
|
@@ -2423,6 +2435,8 @@ export type CreateTicketActionInfo = {
|
|
|
2423
2435
|
priority?: number;
|
|
2424
2436
|
preserveContext?: boolean;
|
|
2425
2437
|
tags?: string[];
|
|
2438
|
+
contextFormIds?: string[];
|
|
2439
|
+
contextEnduserFields?: string[];
|
|
2426
2440
|
};
|
|
2427
2441
|
export type SendEmailAutomationAction = AutomationActionBuilder<'sendEmail', AutomationForMessage & {
|
|
2428
2442
|
fromEmailOverride?: string;
|
|
@@ -2500,6 +2514,7 @@ export type ChangeContactTypeAutomationAction = AutomationActionBuilder<'changeC
|
|
|
2500
2514
|
export type ActiveCampaignSyncAutomationAction = AutomationActionBuilder<'activeCampaignSync', {}>;
|
|
2501
2515
|
export type SwitchToRelatedContactAutomationAction = AutomationActionBuilder<'switchToRelatedContact', {
|
|
2502
2516
|
type: string;
|
|
2517
|
+
otherTypes?: string[];
|
|
2503
2518
|
}>;
|
|
2504
2519
|
export type IterableFieldsMapping = {
|
|
2505
2520
|
iterable: string;
|
|
@@ -2882,6 +2897,27 @@ export interface EnduserTask extends EnduserTask_readonly, EnduserTask_required,
|
|
|
2882
2897
|
description?: string;
|
|
2883
2898
|
completedAt?: Date;
|
|
2884
2899
|
}
|
|
2900
|
+
export interface FaxLog_readonly extends ClientRecord {
|
|
2901
|
+
}
|
|
2902
|
+
export interface FaxLog_required {
|
|
2903
|
+
externalId: string;
|
|
2904
|
+
source: string;
|
|
2905
|
+
from: string;
|
|
2906
|
+
to: string;
|
|
2907
|
+
fileId: string;
|
|
2908
|
+
inbound: boolean;
|
|
2909
|
+
title: string;
|
|
2910
|
+
}
|
|
2911
|
+
export interface FaxLog_updatesDisabled {
|
|
2912
|
+
}
|
|
2913
|
+
export interface FaxLog extends FaxLog_readonly, FaxLog_required, FaxLog_updatesDisabled {
|
|
2914
|
+
userId?: string;
|
|
2915
|
+
enduserId?: string;
|
|
2916
|
+
status?: string;
|
|
2917
|
+
errorMessage?: string;
|
|
2918
|
+
pageCount?: string;
|
|
2919
|
+
tags?: string[];
|
|
2920
|
+
}
|
|
2885
2921
|
export interface CarePlan_readonly extends ClientRecord {
|
|
2886
2922
|
}
|
|
2887
2923
|
export interface CarePlan_required {
|
|
@@ -2916,6 +2952,7 @@ export type UserUIRestrictions = {
|
|
|
2916
2952
|
hideUnsubmittedForms?: boolean;
|
|
2917
2953
|
hideMergeEndusers?: boolean;
|
|
2918
2954
|
hideQueuedTicketsViewer?: boolean;
|
|
2955
|
+
hideIncomingFaxesIcon?: boolean;
|
|
2919
2956
|
};
|
|
2920
2957
|
export interface RoleBasedAccessPermission_readonly extends ClientRecord {
|
|
2921
2958
|
}
|
|
@@ -3210,6 +3247,7 @@ export interface AnalyticsFrame extends AnalyticsFrame_readonly, AnalyticsFrame_
|
|
|
3210
3247
|
analyticsFrameGroupingCategory?: AnalyticsFrameGroupingCategory[];
|
|
3211
3248
|
truncationLength?: number;
|
|
3212
3249
|
showEllipsis?: boolean;
|
|
3250
|
+
orderedLabels?: string[];
|
|
3213
3251
|
}
|
|
3214
3252
|
export interface BackgroundError_readonly extends ClientRecord {
|
|
3215
3253
|
}
|
|
@@ -3568,6 +3606,7 @@ export type PhoneTreeActions = {
|
|
|
3568
3606
|
}>;
|
|
3569
3607
|
'Voicemail': PhoneTreeActionBuilder<"Voicemail", {
|
|
3570
3608
|
playback: PhonePlayback;
|
|
3609
|
+
journeyId?: string;
|
|
3571
3610
|
}>;
|
|
3572
3611
|
'Play Message': PhoneTreeActionBuilder<"Play Message", {
|
|
3573
3612
|
playback: PhonePlayback;
|
|
@@ -3737,6 +3776,7 @@ export interface TicketQueue extends TicketQueue_readonly, TicketQueue_required,
|
|
|
3737
3776
|
enduserFields?: string[];
|
|
3738
3777
|
lastRefreshedCountAt?: Date;
|
|
3739
3778
|
preventPull?: string[];
|
|
3779
|
+
index?: number;
|
|
3740
3780
|
}
|
|
3741
3781
|
export interface EnduserOrder_readonly extends ClientRecord {
|
|
3742
3782
|
}
|
|
@@ -3978,6 +4018,7 @@ export interface WebhookLog_updatesDisabled {
|
|
|
3978
4018
|
export interface WebhookLog extends WebhookLog_readonly, WebhookLog_required, WebhookLog_updatesDisabled {
|
|
3979
4019
|
}
|
|
3980
4020
|
export type ModelForName_required = {
|
|
4021
|
+
fax_logs: FaxLog_required;
|
|
3981
4022
|
message_template_snippets: MessageTemplateSnippet_required;
|
|
3982
4023
|
portal_brandings: PortalBranding_required;
|
|
3983
4024
|
form_groups: FormGroup_required;
|
|
@@ -4058,6 +4099,7 @@ export type ModelForName_required = {
|
|
|
4058
4099
|
};
|
|
4059
4100
|
export type ClientModel_required = ModelForName_required[keyof ModelForName_required];
|
|
4060
4101
|
export interface ModelForName_readonly {
|
|
4102
|
+
fax_logs: FaxLog_readonly;
|
|
4061
4103
|
message_template_snippets: MessageTemplateSnippet_readonly;
|
|
4062
4104
|
portal_brandings: PortalBranding_readonly;
|
|
4063
4105
|
form_groups: FormGroup_readonly;
|
|
@@ -4138,6 +4180,7 @@ export interface ModelForName_readonly {
|
|
|
4138
4180
|
}
|
|
4139
4181
|
export type ClientModel_readonly = ModelForName_readonly[keyof ModelForName_readonly];
|
|
4140
4182
|
export interface ModelForName_updatesDisabled {
|
|
4183
|
+
fax_logs: FaxLog_updatesDisabled;
|
|
4141
4184
|
message_template_snippets: MessageTemplateSnippet_updatesDisabled;
|
|
4142
4185
|
portal_brandings: PortalBranding_updatesDisabled;
|
|
4143
4186
|
form_groups: FormGroup_updatesDisabled;
|
|
@@ -4218,6 +4261,7 @@ export interface ModelForName_updatesDisabled {
|
|
|
4218
4261
|
}
|
|
4219
4262
|
export type ClientModel_updatesDisabled = ModelForName_updatesDisabled[keyof ModelForName_updatesDisabled];
|
|
4220
4263
|
export interface ModelForName extends ModelForName_required, ModelForName_readonly {
|
|
4264
|
+
fax_logs: FaxLog;
|
|
4221
4265
|
message_template_snippets: MessageTemplateSnippet;
|
|
4222
4266
|
portal_brandings: PortalBranding;
|
|
4223
4267
|
form_groups: FormGroup;
|