@tellescope/types-models 1.130.0 → 1.131.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 +41 -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 +41 -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 +38 -2
package/lib/cjs/index.d.ts
CHANGED
|
@@ -362,6 +362,10 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
362
362
|
iframeURL: string;
|
|
363
363
|
}[];
|
|
364
364
|
stripePublicKeys?: string[];
|
|
365
|
+
defaultDoseSpotPharmacies?: {
|
|
366
|
+
id: string;
|
|
367
|
+
name: string;
|
|
368
|
+
}[];
|
|
365
369
|
}
|
|
366
370
|
export type OrganizationTheme = {
|
|
367
371
|
name: string;
|
|
@@ -547,6 +551,7 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
|
|
|
547
551
|
templateFields?: LabeledField[];
|
|
548
552
|
dashboardView?: CustomDashboardView;
|
|
549
553
|
hideFromCalendarView?: boolean;
|
|
554
|
+
requireSSO?: string[];
|
|
550
555
|
}
|
|
551
556
|
export type Preference = 'email' | 'sms' | 'call' | 'chat';
|
|
552
557
|
export type CustomField = string | number | object | {
|
|
@@ -1167,6 +1172,7 @@ export interface File extends File_readonly, File_required, File_updatesDisabled
|
|
|
1167
1172
|
isCalledOut?: boolean;
|
|
1168
1173
|
ocrType?: string;
|
|
1169
1174
|
references?: RelatedRecord[];
|
|
1175
|
+
tags?: string[];
|
|
1170
1176
|
}
|
|
1171
1177
|
export type TicketActionBuilder<T, I> = {
|
|
1172
1178
|
type: T;
|
|
@@ -1756,6 +1762,7 @@ export type FormResponseValue = {
|
|
|
1756
1762
|
disabled?: boolean;
|
|
1757
1763
|
isHighlightedOnTimeline?: boolean;
|
|
1758
1764
|
computedValueKey?: 'Height' | 'Weight' | 'Date of Birth' | "Gender";
|
|
1765
|
+
intakeField?: string;
|
|
1759
1766
|
};
|
|
1760
1767
|
export type AnswerForType = {
|
|
1761
1768
|
'email': FormResponseAnswerEmail['value'];
|
|
@@ -2006,6 +2013,8 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
|
|
|
2006
2013
|
identifier: string;
|
|
2007
2014
|
};
|
|
2008
2015
|
dontAutoSyncPatientToHealthie?: boolean;
|
|
2016
|
+
displayTitle?: string;
|
|
2017
|
+
displayDescription?: string;
|
|
2009
2018
|
}
|
|
2010
2019
|
export type PaymentProcessor = 'Square' | 'Stripe';
|
|
2011
2020
|
export interface Product_readonly extends ClientRecord {
|
|
@@ -2119,6 +2128,8 @@ export interface CalendarEventTemplate extends CalendarEventTemplate_readonly, C
|
|
|
2119
2128
|
useUserURL?: boolean;
|
|
2120
2129
|
instructions?: string;
|
|
2121
2130
|
dontAutoSyncPatientToHealthie?: boolean;
|
|
2131
|
+
displayTitle?: string;
|
|
2132
|
+
displayDescription?: string;
|
|
2122
2133
|
}
|
|
2123
2134
|
export interface AppointmentLocation_readonly extends ClientRecord {
|
|
2124
2135
|
}
|
|
@@ -2507,6 +2518,7 @@ export type ChangeContactTypeAutomationAction = AutomationActionBuilder<'changeC
|
|
|
2507
2518
|
export type ActiveCampaignSyncAutomationAction = AutomationActionBuilder<'activeCampaignSync', {}>;
|
|
2508
2519
|
export type SwitchToRelatedContactAutomationAction = AutomationActionBuilder<'switchToRelatedContact', {
|
|
2509
2520
|
type: string;
|
|
2521
|
+
otherTypes?: string[];
|
|
2510
2522
|
}>;
|
|
2511
2523
|
export type IterableFieldsMapping = {
|
|
2512
2524
|
iterable: string;
|
|
@@ -2889,6 +2901,27 @@ export interface EnduserTask extends EnduserTask_readonly, EnduserTask_required,
|
|
|
2889
2901
|
description?: string;
|
|
2890
2902
|
completedAt?: Date;
|
|
2891
2903
|
}
|
|
2904
|
+
export interface FaxLog_readonly extends ClientRecord {
|
|
2905
|
+
}
|
|
2906
|
+
export interface FaxLog_required {
|
|
2907
|
+
externalId: string;
|
|
2908
|
+
source: string;
|
|
2909
|
+
from: string;
|
|
2910
|
+
to: string;
|
|
2911
|
+
fileId: string;
|
|
2912
|
+
inbound: boolean;
|
|
2913
|
+
title: string;
|
|
2914
|
+
}
|
|
2915
|
+
export interface FaxLog_updatesDisabled {
|
|
2916
|
+
}
|
|
2917
|
+
export interface FaxLog extends FaxLog_readonly, FaxLog_required, FaxLog_updatesDisabled {
|
|
2918
|
+
userId?: string;
|
|
2919
|
+
enduserId?: string;
|
|
2920
|
+
status?: string;
|
|
2921
|
+
errorMessage?: string;
|
|
2922
|
+
pageCount?: string;
|
|
2923
|
+
tags?: string[];
|
|
2924
|
+
}
|
|
2892
2925
|
export interface CarePlan_readonly extends ClientRecord {
|
|
2893
2926
|
}
|
|
2894
2927
|
export interface CarePlan_required {
|
|
@@ -2923,6 +2956,7 @@ export type UserUIRestrictions = {
|
|
|
2923
2956
|
hideUnsubmittedForms?: boolean;
|
|
2924
2957
|
hideMergeEndusers?: boolean;
|
|
2925
2958
|
hideQueuedTicketsViewer?: boolean;
|
|
2959
|
+
hideIncomingFaxesIcon?: boolean;
|
|
2926
2960
|
};
|
|
2927
2961
|
export interface RoleBasedAccessPermission_readonly extends ClientRecord {
|
|
2928
2962
|
}
|
|
@@ -3217,6 +3251,7 @@ export interface AnalyticsFrame extends AnalyticsFrame_readonly, AnalyticsFrame_
|
|
|
3217
3251
|
analyticsFrameGroupingCategory?: AnalyticsFrameGroupingCategory[];
|
|
3218
3252
|
truncationLength?: number;
|
|
3219
3253
|
showEllipsis?: boolean;
|
|
3254
|
+
orderedLabels?: string[];
|
|
3220
3255
|
}
|
|
3221
3256
|
export interface BackgroundError_readonly extends ClientRecord {
|
|
3222
3257
|
}
|
|
@@ -3575,6 +3610,7 @@ export type PhoneTreeActions = {
|
|
|
3575
3610
|
}>;
|
|
3576
3611
|
'Voicemail': PhoneTreeActionBuilder<"Voicemail", {
|
|
3577
3612
|
playback: PhonePlayback;
|
|
3613
|
+
journeyId?: string;
|
|
3578
3614
|
}>;
|
|
3579
3615
|
'Play Message': PhoneTreeActionBuilder<"Play Message", {
|
|
3580
3616
|
playback: PhonePlayback;
|
|
@@ -3744,6 +3780,7 @@ export interface TicketQueue extends TicketQueue_readonly, TicketQueue_required,
|
|
|
3744
3780
|
enduserFields?: string[];
|
|
3745
3781
|
lastRefreshedCountAt?: Date;
|
|
3746
3782
|
preventPull?: string[];
|
|
3783
|
+
index?: number;
|
|
3747
3784
|
}
|
|
3748
3785
|
export interface EnduserOrder_readonly extends ClientRecord {
|
|
3749
3786
|
}
|
|
@@ -3985,6 +4022,7 @@ export interface WebhookLog_updatesDisabled {
|
|
|
3985
4022
|
export interface WebhookLog extends WebhookLog_readonly, WebhookLog_required, WebhookLog_updatesDisabled {
|
|
3986
4023
|
}
|
|
3987
4024
|
export type ModelForName_required = {
|
|
4025
|
+
fax_logs: FaxLog_required;
|
|
3988
4026
|
message_template_snippets: MessageTemplateSnippet_required;
|
|
3989
4027
|
portal_brandings: PortalBranding_required;
|
|
3990
4028
|
form_groups: FormGroup_required;
|
|
@@ -4065,6 +4103,7 @@ export type ModelForName_required = {
|
|
|
4065
4103
|
};
|
|
4066
4104
|
export type ClientModel_required = ModelForName_required[keyof ModelForName_required];
|
|
4067
4105
|
export interface ModelForName_readonly {
|
|
4106
|
+
fax_logs: FaxLog_readonly;
|
|
4068
4107
|
message_template_snippets: MessageTemplateSnippet_readonly;
|
|
4069
4108
|
portal_brandings: PortalBranding_readonly;
|
|
4070
4109
|
form_groups: FormGroup_readonly;
|
|
@@ -4145,6 +4184,7 @@ export interface ModelForName_readonly {
|
|
|
4145
4184
|
}
|
|
4146
4185
|
export type ClientModel_readonly = ModelForName_readonly[keyof ModelForName_readonly];
|
|
4147
4186
|
export interface ModelForName_updatesDisabled {
|
|
4187
|
+
fax_logs: FaxLog_updatesDisabled;
|
|
4148
4188
|
message_template_snippets: MessageTemplateSnippet_updatesDisabled;
|
|
4149
4189
|
portal_brandings: PortalBranding_updatesDisabled;
|
|
4150
4190
|
form_groups: FormGroup_updatesDisabled;
|
|
@@ -4225,6 +4265,7 @@ export interface ModelForName_updatesDisabled {
|
|
|
4225
4265
|
}
|
|
4226
4266
|
export type ClientModel_updatesDisabled = ModelForName_updatesDisabled[keyof ModelForName_updatesDisabled];
|
|
4227
4267
|
export interface ModelForName extends ModelForName_required, ModelForName_readonly {
|
|
4268
|
+
fax_logs: FaxLog;
|
|
4228
4269
|
message_template_snippets: MessageTemplateSnippet;
|
|
4229
4270
|
portal_brandings: PortalBranding;
|
|
4230
4271
|
form_groups: FormGroup;
|