@tellescope/types-models 1.127.0 → 1.129.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 +29 -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 +29 -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 +27 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -172,6 +172,7 @@ export type OrganizationSettings = {
|
|
|
172
172
|
alwaysShowInsurance?: boolean;
|
|
173
173
|
defaultToOutboundConferenceCall?: boolean;
|
|
174
174
|
sharedInboxReadStatus?: boolean;
|
|
175
|
+
matchEmailAndNames?: boolean;
|
|
175
176
|
};
|
|
176
177
|
tickets?: {
|
|
177
178
|
defaultJourneyDueDateOffsetInMS?: number | '';
|
|
@@ -345,6 +346,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
345
346
|
id: string;
|
|
346
347
|
questionId: string;
|
|
347
348
|
};
|
|
349
|
+
canvasSyncEmailConsent?: boolean;
|
|
348
350
|
dosespotClinics?: {
|
|
349
351
|
id: string;
|
|
350
352
|
name: string;
|
|
@@ -706,6 +708,7 @@ export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_upd
|
|
|
706
708
|
useDefaultFromPhoneInAutomations?: boolean;
|
|
707
709
|
stripeCustomerId?: string;
|
|
708
710
|
stripeKey?: string;
|
|
711
|
+
lastDoseSpotSyncAt?: Date;
|
|
709
712
|
}
|
|
710
713
|
export interface EnduserCustomType_readonly extends ClientRecord {
|
|
711
714
|
}
|
|
@@ -759,6 +762,7 @@ export interface EnduserMedication extends EnduserMedication_readonly, EnduserMe
|
|
|
759
762
|
};
|
|
760
763
|
notes?: string;
|
|
761
764
|
pharmacyName?: string;
|
|
765
|
+
pharmacyId?: string;
|
|
762
766
|
orderStatus?: string;
|
|
763
767
|
}
|
|
764
768
|
export interface APIKey_readonly extends ClientRecord {
|
|
@@ -1126,6 +1130,16 @@ export interface MessageTemplate extends MessageTemplate_readonly, MessageTempla
|
|
|
1126
1130
|
hideFromCompose?: boolean;
|
|
1127
1131
|
tags?: string[];
|
|
1128
1132
|
}
|
|
1133
|
+
export interface MessageTemplateSnippet_readonly extends ClientRecord {
|
|
1134
|
+
}
|
|
1135
|
+
export interface MessageTemplateSnippet_required {
|
|
1136
|
+
key: string;
|
|
1137
|
+
value: string;
|
|
1138
|
+
}
|
|
1139
|
+
export interface MessageTemplateSnippet_updatesDisabled {
|
|
1140
|
+
}
|
|
1141
|
+
export interface MessageTemplateSnippet extends MessageTemplateSnippet_readonly, MessageTemplateSnippet_required, MessageTemplateSnippet_updatesDisabled {
|
|
1142
|
+
}
|
|
1129
1143
|
export interface File_readonly extends ClientRecord {
|
|
1130
1144
|
secureName: string;
|
|
1131
1145
|
publicRead?: boolean;
|
|
@@ -1956,6 +1970,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
|
|
|
1956
1970
|
isEphemeral?: boolean;
|
|
1957
1971
|
videoIntegration?: VideoIntegrationType;
|
|
1958
1972
|
videoURL?: string;
|
|
1973
|
+
videoStartURL?: string;
|
|
1959
1974
|
externalVideoURL?: string;
|
|
1960
1975
|
videoHostUserId?: string;
|
|
1961
1976
|
timezone?: Timezone;
|
|
@@ -2119,6 +2134,7 @@ export interface AppointmentLocation extends AppointmentLocation_readonly, Appoi
|
|
|
2119
2134
|
healthieLocationId?: string;
|
|
2120
2135
|
healthieUseZoom?: boolean;
|
|
2121
2136
|
instructions?: string;
|
|
2137
|
+
tags?: string[];
|
|
2122
2138
|
}
|
|
2123
2139
|
export interface BookingRestrictions {
|
|
2124
2140
|
templateId: string;
|
|
@@ -2482,6 +2498,9 @@ export type ChangeContactTypeAutomationAction = AutomationActionBuilder<'changeC
|
|
|
2482
2498
|
type: string;
|
|
2483
2499
|
}>;
|
|
2484
2500
|
export type ActiveCampaignSyncAutomationAction = AutomationActionBuilder<'activeCampaignSync', {}>;
|
|
2501
|
+
export type SwitchToRelatedContactAutomationAction = AutomationActionBuilder<'switchToRelatedContact', {
|
|
2502
|
+
type: string;
|
|
2503
|
+
}>;
|
|
2485
2504
|
export type IterableFieldsMapping = {
|
|
2486
2505
|
iterable: string;
|
|
2487
2506
|
tellescope: string;
|
|
@@ -2536,6 +2555,7 @@ export type AutomationActionForType = {
|
|
|
2536
2555
|
'completeTickets': CompleteTicketsAutomationAction;
|
|
2537
2556
|
'changeContactType': ChangeContactTypeAutomationAction;
|
|
2538
2557
|
activeCampaignSync: ActiveCampaignSyncAutomationAction;
|
|
2558
|
+
switchToRelatedContact: SwitchToRelatedContactAutomationAction;
|
|
2539
2559
|
};
|
|
2540
2560
|
export type AutomationActionType = keyof AutomationActionForType;
|
|
2541
2561
|
export type AutomationAction = AutomationActionForType[AutomationActionType];
|
|
@@ -3188,6 +3208,8 @@ export interface AnalyticsFrame extends AnalyticsFrame_readonly, AnalyticsFrame_
|
|
|
3188
3208
|
groupMax?: number | '';
|
|
3189
3209
|
displayType?: string;
|
|
3190
3210
|
analyticsFrameGroupingCategory?: AnalyticsFrameGroupingCategory[];
|
|
3211
|
+
truncationLength?: number;
|
|
3212
|
+
showEllipsis?: boolean;
|
|
3191
3213
|
}
|
|
3192
3214
|
export interface BackgroundError_readonly extends ClientRecord {
|
|
3193
3215
|
}
|
|
@@ -3596,6 +3618,7 @@ export interface PhoneTree extends PhoneTree_readonly, PhoneTree_required, Phone
|
|
|
3596
3618
|
testEnduserIds?: string[];
|
|
3597
3619
|
enduserCondition?: PhoneTreeEnduserCondition;
|
|
3598
3620
|
bypassOOO?: boolean;
|
|
3621
|
+
defaultEntityType?: string;
|
|
3599
3622
|
}
|
|
3600
3623
|
export type TableViewColumn = {
|
|
3601
3624
|
field: string;
|
|
@@ -3647,6 +3670,7 @@ export interface TicketThread extends TicketThread_readonly, TicketThread_requir
|
|
|
3647
3670
|
closedAt?: Date | '';
|
|
3648
3671
|
pinnedAt?: Date | '';
|
|
3649
3672
|
assignedTo?: string[];
|
|
3673
|
+
tags?: string[];
|
|
3650
3674
|
}
|
|
3651
3675
|
export interface TicketThreadComment_readonly extends ClientRecord {
|
|
3652
3676
|
externalThreadId?: string;
|
|
@@ -3686,6 +3710,7 @@ export interface TicketThreadComment extends TicketThreadComment_readonly, Ticke
|
|
|
3686
3710
|
[index: string]: Date | '';
|
|
3687
3711
|
};
|
|
3688
3712
|
ticketIds?: string[];
|
|
3713
|
+
tags?: string[];
|
|
3689
3714
|
}
|
|
3690
3715
|
export interface Configuration_readonly extends ClientRecord {
|
|
3691
3716
|
}
|
|
@@ -3953,6 +3978,7 @@ export interface WebhookLog_updatesDisabled {
|
|
|
3953
3978
|
export interface WebhookLog extends WebhookLog_readonly, WebhookLog_required, WebhookLog_updatesDisabled {
|
|
3954
3979
|
}
|
|
3955
3980
|
export type ModelForName_required = {
|
|
3981
|
+
message_template_snippets: MessageTemplateSnippet_required;
|
|
3956
3982
|
portal_brandings: PortalBranding_required;
|
|
3957
3983
|
form_groups: FormGroup_required;
|
|
3958
3984
|
webhook_logs: WebhookLog_required;
|
|
@@ -4032,6 +4058,7 @@ export type ModelForName_required = {
|
|
|
4032
4058
|
};
|
|
4033
4059
|
export type ClientModel_required = ModelForName_required[keyof ModelForName_required];
|
|
4034
4060
|
export interface ModelForName_readonly {
|
|
4061
|
+
message_template_snippets: MessageTemplateSnippet_readonly;
|
|
4035
4062
|
portal_brandings: PortalBranding_readonly;
|
|
4036
4063
|
form_groups: FormGroup_readonly;
|
|
4037
4064
|
webhook_logs: WebhookLog_readonly;
|
|
@@ -4111,6 +4138,7 @@ export interface ModelForName_readonly {
|
|
|
4111
4138
|
}
|
|
4112
4139
|
export type ClientModel_readonly = ModelForName_readonly[keyof ModelForName_readonly];
|
|
4113
4140
|
export interface ModelForName_updatesDisabled {
|
|
4141
|
+
message_template_snippets: MessageTemplateSnippet_updatesDisabled;
|
|
4114
4142
|
portal_brandings: PortalBranding_updatesDisabled;
|
|
4115
4143
|
form_groups: FormGroup_updatesDisabled;
|
|
4116
4144
|
webhook_logs: WebhookLog_updatesDisabled;
|
|
@@ -4190,6 +4218,7 @@ export interface ModelForName_updatesDisabled {
|
|
|
4190
4218
|
}
|
|
4191
4219
|
export type ClientModel_updatesDisabled = ModelForName_updatesDisabled[keyof ModelForName_updatesDisabled];
|
|
4192
4220
|
export interface ModelForName extends ModelForName_required, ModelForName_readonly {
|
|
4221
|
+
message_template_snippets: MessageTemplateSnippet;
|
|
4193
4222
|
portal_brandings: PortalBranding;
|
|
4194
4223
|
form_groups: FormGroup;
|
|
4195
4224
|
webhook_logs: WebhookLog;
|