@tellescope/types-models 1.126.0 → 1.128.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 +42 -2
- 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 +42 -2
- 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 +36 -3
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 | '';
|
|
@@ -1126,6 +1127,16 @@ export interface MessageTemplate extends MessageTemplate_readonly, MessageTempla
|
|
|
1126
1127
|
hideFromCompose?: boolean;
|
|
1127
1128
|
tags?: string[];
|
|
1128
1129
|
}
|
|
1130
|
+
export interface MessageTemplateSnippet_readonly extends ClientRecord {
|
|
1131
|
+
}
|
|
1132
|
+
export interface MessageTemplateSnippet_required {
|
|
1133
|
+
key: string;
|
|
1134
|
+
value: string;
|
|
1135
|
+
}
|
|
1136
|
+
export interface MessageTemplateSnippet_updatesDisabled {
|
|
1137
|
+
}
|
|
1138
|
+
export interface MessageTemplateSnippet extends MessageTemplateSnippet_readonly, MessageTemplateSnippet_required, MessageTemplateSnippet_updatesDisabled {
|
|
1139
|
+
}
|
|
1129
1140
|
export interface File_readonly extends ClientRecord {
|
|
1130
1141
|
secureName: string;
|
|
1131
1142
|
publicRead?: boolean;
|
|
@@ -1822,8 +1833,20 @@ export interface FormResponse extends FormResponse_readonly, FormResponse_requir
|
|
|
1822
1833
|
groupPosition?: number;
|
|
1823
1834
|
utm?: LabeledField[];
|
|
1824
1835
|
emotii?: {
|
|
1825
|
-
id
|
|
1826
|
-
scores
|
|
1836
|
+
id: string;
|
|
1837
|
+
scores: {
|
|
1838
|
+
total: {
|
|
1839
|
+
score: number;
|
|
1840
|
+
relative: number;
|
|
1841
|
+
percentile: number;
|
|
1842
|
+
};
|
|
1843
|
+
byAnswer: {
|
|
1844
|
+
label: string;
|
|
1845
|
+
score: number;
|
|
1846
|
+
relative: number;
|
|
1847
|
+
percentile: number;
|
|
1848
|
+
}[];
|
|
1849
|
+
};
|
|
1827
1850
|
}[];
|
|
1828
1851
|
}
|
|
1829
1852
|
export interface WebHook_readonly extends ClientRecord {
|
|
@@ -1944,6 +1967,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
|
|
|
1944
1967
|
isEphemeral?: boolean;
|
|
1945
1968
|
videoIntegration?: VideoIntegrationType;
|
|
1946
1969
|
videoURL?: string;
|
|
1970
|
+
videoStartURL?: string;
|
|
1947
1971
|
externalVideoURL?: string;
|
|
1948
1972
|
videoHostUserId?: string;
|
|
1949
1973
|
timezone?: Timezone;
|
|
@@ -2107,6 +2131,7 @@ export interface AppointmentLocation extends AppointmentLocation_readonly, Appoi
|
|
|
2107
2131
|
healthieLocationId?: string;
|
|
2108
2132
|
healthieUseZoom?: boolean;
|
|
2109
2133
|
instructions?: string;
|
|
2134
|
+
tags?: string[];
|
|
2110
2135
|
}
|
|
2111
2136
|
export interface BookingRestrictions {
|
|
2112
2137
|
templateId: string;
|
|
@@ -3392,6 +3417,15 @@ export type AutomationTriggerEvents = {
|
|
|
3392
3417
|
groupId: string;
|
|
3393
3418
|
intervalInMS: number;
|
|
3394
3419
|
}, {}>;
|
|
3420
|
+
'Message Opened': AutomationTriggerEventBuilder<"Message Opened", {
|
|
3421
|
+
templateIds?: string[];
|
|
3422
|
+
}, {}>;
|
|
3423
|
+
'Message Link Clicked': AutomationTriggerEventBuilder<"Message Link Clicked", {
|
|
3424
|
+
templateIds?: string[];
|
|
3425
|
+
}, {}>;
|
|
3426
|
+
'Healthie Note Locked': AutomationTriggerEventBuilder<"Healthie Note Locked", {
|
|
3427
|
+
healthieFormIds?: string[];
|
|
3428
|
+
}, {}>;
|
|
3395
3429
|
};
|
|
3396
3430
|
export type AutomationTriggerEventType = keyof AutomationTriggerEvents;
|
|
3397
3431
|
export type AutomationTriggerEvent = AutomationTriggerEvents[AutomationTriggerEventType];
|
|
@@ -3932,6 +3966,7 @@ export interface WebhookLog_updatesDisabled {
|
|
|
3932
3966
|
export interface WebhookLog extends WebhookLog_readonly, WebhookLog_required, WebhookLog_updatesDisabled {
|
|
3933
3967
|
}
|
|
3934
3968
|
export type ModelForName_required = {
|
|
3969
|
+
message_template_snippets: MessageTemplateSnippet_required;
|
|
3935
3970
|
portal_brandings: PortalBranding_required;
|
|
3936
3971
|
form_groups: FormGroup_required;
|
|
3937
3972
|
webhook_logs: WebhookLog_required;
|
|
@@ -4011,6 +4046,7 @@ export type ModelForName_required = {
|
|
|
4011
4046
|
};
|
|
4012
4047
|
export type ClientModel_required = ModelForName_required[keyof ModelForName_required];
|
|
4013
4048
|
export interface ModelForName_readonly {
|
|
4049
|
+
message_template_snippets: MessageTemplateSnippet_readonly;
|
|
4014
4050
|
portal_brandings: PortalBranding_readonly;
|
|
4015
4051
|
form_groups: FormGroup_readonly;
|
|
4016
4052
|
webhook_logs: WebhookLog_readonly;
|
|
@@ -4090,6 +4126,7 @@ export interface ModelForName_readonly {
|
|
|
4090
4126
|
}
|
|
4091
4127
|
export type ClientModel_readonly = ModelForName_readonly[keyof ModelForName_readonly];
|
|
4092
4128
|
export interface ModelForName_updatesDisabled {
|
|
4129
|
+
message_template_snippets: MessageTemplateSnippet_updatesDisabled;
|
|
4093
4130
|
portal_brandings: PortalBranding_updatesDisabled;
|
|
4094
4131
|
form_groups: FormGroup_updatesDisabled;
|
|
4095
4132
|
webhook_logs: WebhookLog_updatesDisabled;
|
|
@@ -4169,6 +4206,7 @@ export interface ModelForName_updatesDisabled {
|
|
|
4169
4206
|
}
|
|
4170
4207
|
export type ClientModel_updatesDisabled = ModelForName_updatesDisabled[keyof ModelForName_updatesDisabled];
|
|
4171
4208
|
export interface ModelForName extends ModelForName_required, ModelForName_readonly {
|
|
4209
|
+
message_template_snippets: MessageTemplateSnippet;
|
|
4172
4210
|
portal_brandings: PortalBranding;
|
|
4173
4211
|
form_groups: FormGroup;
|
|
4174
4212
|
webhook_logs: WebhookLog;
|
|
@@ -4285,6 +4323,8 @@ export type JourneyContext = {
|
|
|
4285
4323
|
smsId?: string;
|
|
4286
4324
|
formGroupId?: string;
|
|
4287
4325
|
publicIdentifier?: string;
|
|
4326
|
+
chatId?: string;
|
|
4327
|
+
emailId?: string;
|
|
4288
4328
|
};
|
|
4289
4329
|
export declare const TIMEZONE_MAP: {
|
|
4290
4330
|
readonly "Africa/Abidjan": "+00:00";
|