@tellescope/types-models 1.85.0 → 1.85.2

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.
@@ -151,6 +151,7 @@ export type OrganizationSettings = {
151
151
  recordCalls?: boolean;
152
152
  transcribeCalls?: boolean;
153
153
  transcribeCallInboundPlayback?: string;
154
+ showDeleteCallRecordingOnTimeline?: boolean;
154
155
  defaultPhoneNumber?: string;
155
156
  sendSMSOnZoomStart?: boolean;
156
157
  enableGroupMMS?: boolean;
@@ -159,6 +160,7 @@ export type OrganizationSettings = {
159
160
  showBulkFormInput?: boolean;
160
161
  autofillSignature?: boolean;
161
162
  showFullVitalsTab?: boolean;
163
+ canMoveCalls?: boolean;
162
164
  };
163
165
  tickets?: {
164
166
  defaultJourneyDueDateOffsetInMS?: number | '';
@@ -285,6 +287,10 @@ export interface Organization extends Organization_readonly, Organization_requir
285
287
  outOfOfficeVoicemail?: PhonePlayback;
286
288
  enduserProfileWebhooks?: BasicWebhook[];
287
289
  showCommunity?: boolean;
290
+ phoneLabels?: {
291
+ number: string;
292
+ label: string;
293
+ }[];
288
294
  }
289
295
  export type OrganizationTheme = {
290
296
  name: string;
@@ -1224,6 +1230,7 @@ export type FormFieldOptions = FormFieldValidation & {
1224
1230
  userTags?: string[];
1225
1231
  addressFields?: string[];
1226
1232
  autoAdvance?: boolean;
1233
+ prefillSignature?: boolean;
1227
1234
  };
1228
1235
  export type MultipleChoiceOptions = Pick<FormFieldOptions, 'choices' | 'radio' | 'other'>;
1229
1236
  export type FormFieldCalloutConditionComparison = 'Equals';
@@ -1313,6 +1320,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
1313
1320
  submitRedirectURL?: string;
1314
1321
  publicFormIdRedirect?: string;
1315
1322
  publicShowLanguage?: boolean;
1323
+ publicShowDownload?: boolean;
1316
1324
  customization?: FormCustomization;
1317
1325
  disabled?: boolean;
1318
1326
  disableAutomaticIntegrationPush?: boolean;
@@ -1359,6 +1367,8 @@ export interface Integration extends Integration_readonly, Integration_required,
1359
1367
  calendarOnly?: boolean;
1360
1368
  shouldCreateNotifications?: boolean;
1361
1369
  disableEnduserAutoSync?: boolean;
1370
+ disableTicketAutoSync?: boolean;
1371
+ redactExternalEvents?: boolean;
1362
1372
  }
1363
1373
  export type BuildDatabaseRecordField<K extends string, V, O> = {
1364
1374
  type: K;
@@ -1553,6 +1563,13 @@ export interface FormResponse_required {
1553
1563
  submittedAt?: Date;
1554
1564
  accessCode?: string;
1555
1565
  userEmail?: string;
1566
+ phone?: string;
1567
+ fname?: string;
1568
+ lname?: string;
1569
+ state?: string;
1570
+ dateOfBirth?: string;
1571
+ gender?: TellescopeGender;
1572
+ customTypeId?: string;
1556
1573
  }
1557
1574
  export interface FormResponse_updatesDisabled {
1558
1575
  submissionExpiresAt?: number;
@@ -2054,6 +2071,10 @@ export type CreateTicketAssignmentStrategies = {
2054
2071
  type: 'queue';
2055
2072
  info: AssignToQueueInfo;
2056
2073
  };
2074
+ 'Recently-Booked Appointment Host': {
2075
+ type: 'Recently-Booked Appointment Host';
2076
+ info: {};
2077
+ };
2057
2078
  'default': {
2058
2079
  type: 'default';
2059
2080
  info: {};
@@ -2097,6 +2118,9 @@ export type ShareContentAutomationAction = AutomationActionBuilder<'shareContent
2097
2118
  export type AddEnduserTagsAutomationAction = AutomationActionBuilder<'addEnduserTags', {
2098
2119
  tags: string[];
2099
2120
  }>;
2121
+ export type RemoveEnduserTagsAutomationAction = AutomationActionBuilder<'removeEnduserTags', {
2122
+ tags: string[];
2123
+ }>;
2100
2124
  export type AddToJourneyAutomationAction = AutomationActionBuilder<'addToJourney', {
2101
2125
  journeyId: string;
2102
2126
  }>;
@@ -2131,6 +2155,7 @@ export type SmartMeterPlaceOrderAutomationAction = AutomationActionBuilder<'smar
2131
2155
  lines: SmartMeterOrderLineItem[];
2132
2156
  shipping?: string;
2133
2157
  }>;
2158
+ export type HealthieSyncAutomationAction = AutomationActionBuilder<'healthieSync', {}>;
2134
2159
  export type IterableFieldsMapping = {
2135
2160
  iterable: string;
2136
2161
  tellescope: string;
@@ -2167,6 +2192,7 @@ export type AutomationActionForType = {
2167
2192
  'shareContent': ShareContentAutomationAction;
2168
2193
  'notifyTeam': NotifyTeamAutomationAction;
2169
2194
  'addEnduserTags': AddEnduserTagsAutomationAction;
2195
+ 'removeEnduserTags': RemoveEnduserTagsAutomationAction;
2170
2196
  'addToJourney': AddToJourneyAutomationAction;
2171
2197
  'removeFromJourney': RemoveFromJourneyAutomationAction;
2172
2198
  'iterableSendEmail': IterableSendEmailAutomationAction;
@@ -2177,6 +2203,7 @@ export type AutomationActionForType = {
2177
2203
  'zusSync': ZusSyncAutomationAction;
2178
2204
  'pagerDutyCreateIncident': PagerDutyCreateIncidentAutomationAction;
2179
2205
  'smartMeterPlaceOrder': SmartMeterPlaceOrderAutomationAction;
2206
+ 'healthieSync': HealthieSyncAutomationAction;
2180
2207
  };
2181
2208
  export type AutomationActionType = keyof AutomationActionForType;
2182
2209
  export type AutomationAction = AutomationActionForType[AutomationActionType];
@@ -2944,6 +2971,7 @@ export type AutomationTriggerEvents = {
2944
2971
  }, {}>;
2945
2972
  'SMS Reply': AutomationTriggerEventBuilder<"SMS Reply", {
2946
2973
  templateIds: string[];
2974
+ replyKeywords?: string[];
2947
2975
  }, {}>;
2948
2976
  };
2949
2977
  export type AutomationTriggerEventType = keyof AutomationTriggerEvents;