@tellescope/types-models 1.191.0 → 1.192.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.
@@ -292,6 +292,7 @@ export interface Organization_readonly extends ClientRecord {
292
292
  fromEmails?: string[];
293
293
  twilioSID?: string;
294
294
  twilioCustomerId?: string;
295
+ customPortalScriptTags?: string[];
295
296
  }
296
297
  export interface Organization_required {
297
298
  }
@@ -432,7 +433,11 @@ export type OrganizationTheme = {
432
433
  logoURL?: string;
433
434
  customPortalURL?: string;
434
435
  faviconURL?: string;
435
- portalSettings?: PortalSettings;
436
+ portalSettings?: PortalSettings & {
437
+ html: {
438
+ scripts?: string[];
439
+ };
440
+ };
436
441
  customTermsOfService?: string;
437
442
  customPrivacyPolicy?: string;
438
443
  requireCustomTermsOnMagicLink?: boolean;
@@ -1650,6 +1655,7 @@ export interface Form_required {
1650
1655
  export interface Form_updatesDisabled {
1651
1656
  }
1652
1657
  export interface Form extends Form_readonly, Form_required, Form_updatesDisabled {
1658
+ ipAddressCustomField: string;
1653
1659
  archivedAt?: Date | '';
1654
1660
  displayTitle?: string;
1655
1661
  description?: string;
@@ -1774,6 +1780,7 @@ export interface Integration extends Integration_readonly, Integration_required,
1774
1780
  pushAddedTags?: boolean;
1775
1781
  pushRemovedTags?: boolean;
1776
1782
  overwriteAddress?: boolean;
1783
+ requirePhoneToPushEnduser?: boolean;
1777
1784
  }
1778
1785
  export type BuildDatabaseRecordField<K extends string, V, O> = {
1779
1786
  type: K;
@@ -2168,6 +2175,7 @@ export interface CalendarEvent_required {
2168
2175
  export interface CalendarEvent_updatesDisabled {
2169
2176
  }
2170
2177
  export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_required, CalendarEvent_updatesDisabled {
2178
+ athenaDepartmentId?: string;
2171
2179
  actualDuration?: number;
2172
2180
  dontSyncToCanvas?: boolean;
2173
2181
  reason?: string;
@@ -2381,6 +2389,7 @@ export interface CalendarEventTemplate extends CalendarEventTemplate_readonly, C
2381
2389
  allowGroupReschedule?: boolean;
2382
2390
  preventRescheduleMinutesInAdvance?: number;
2383
2391
  preventCancelMinutesInAdvance?: number;
2392
+ athenaDepartmentId?: string;
2384
2393
  }
2385
2394
  export interface AppointmentLocation_readonly extends ClientRecord {
2386
2395
  }
@@ -3837,7 +3846,9 @@ export type AutomationTriggerEvents = {
3837
3846
  'Tag Added': AutomationTriggerEventBuilder<"Tag Added", {
3838
3847
  tag: string;
3839
3848
  }, {}>;
3840
- 'Contact Created': AutomationTriggerEventBuilder<"Contact Created", {}, {}>;
3849
+ 'Contact Created': AutomationTriggerEventBuilder<"Contact Created", {
3850
+ entityTypes?: string[];
3851
+ }, {}>;
3841
3852
  'Appointment Created': AutomationTriggerEventBuilder<"Appointment Created", {
3842
3853
  titles?: string[];
3843
3854
  templateIds?: string[];