@tellescope/types-models 1.143.0 → 1.145.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.
@@ -176,6 +176,7 @@ export type OrganizationSettings = {
176
176
  matchEmailAndNames?: boolean;
177
177
  hideNotesFromComposeForm?: boolean;
178
178
  showSalesforceId?: boolean;
179
+ loopQueueCallSound?: boolean;
179
180
  };
180
181
  tickets?: {
181
182
  defaultJourneyDueDateOffsetInMS?: number | '';
@@ -2547,6 +2548,7 @@ export type SwitchToRelatedContactAutomationAction = AutomationActionBuilder<'sw
2547
2548
  otherTypes?: string[];
2548
2549
  }>;
2549
2550
  export type ElationSyncAutomationAction = AutomationActionBuilder<'elationSync', {}>;
2551
+ export type CanvasSyncAutomationAction = AutomationActionBuilder<'canvasSync', {}>;
2550
2552
  export type IterableFieldsMapping = {
2551
2553
  iterable: string;
2552
2554
  tellescope: string;
@@ -2603,6 +2605,7 @@ export type AutomationActionForType = {
2603
2605
  activeCampaignSync: ActiveCampaignSyncAutomationAction;
2604
2606
  switchToRelatedContact: SwitchToRelatedContactAutomationAction;
2605
2607
  'elationSync': ElationSyncAutomationAction;
2608
+ canvasSync: CanvasSyncAutomationAction;
2606
2609
  };
2607
2610
  export type AutomationActionType = keyof AutomationActionForType;
2608
2611
  export type AutomationAction = AutomationActionForType[AutomationActionType];
@@ -3023,7 +3026,7 @@ export interface PhoneCall extends PhoneCall_readonly, PhoneCall_required, Phone
3023
3026
  transcriptionId?: string;
3024
3027
  conferenceId?: string;
3025
3028
  externalConferenceId?: string;
3026
- conferenceAttendees?: string[];
3029
+ conferenceAttendees?: (string[]) | (string[][]);
3027
3030
  unread?: boolean;
3028
3031
  transcription?: string;
3029
3032
  note?: string;
@@ -3357,6 +3360,21 @@ export type EnduserProfileViewBlocks = {
3357
3360
  "Zus Encounters": EnduserProfileViewBlockBuilder<"Zus Encounters", {
3358
3361
  title: string;
3359
3362
  }>;
3363
+ "Files": EnduserProfileViewBlockBuilder<"Files", {
3364
+ title: string;
3365
+ }>;
3366
+ "Tickets": EnduserProfileViewBlockBuilder<"Tickets", {
3367
+ title: string;
3368
+ }>;
3369
+ "Events": EnduserProfileViewBlockBuilder<"Events", {
3370
+ title: string;
3371
+ }>;
3372
+ "Labs": EnduserProfileViewBlockBuilder<"Labs", {
3373
+ title: string;
3374
+ }>;
3375
+ "Medications": EnduserProfileViewBlockBuilder<"Medications", {
3376
+ title: string;
3377
+ }>;
3360
3378
  };
3361
3379
  export type EnduserProfileViewBlockType = keyof EnduserProfileViewBlocks;
3362
3380
  export type EnduserProfileViewBlock = EnduserProfileViewBlocks[EnduserProfileViewBlockType];
@@ -3369,6 +3387,7 @@ export interface EnduserProfileView_required {
3369
3387
  export interface EnduserProfileView_updatesDisabled {
3370
3388
  }
3371
3389
  export interface EnduserProfileView extends EnduserProfileView_readonly, EnduserProfileView_required, EnduserProfileView_updatesDisabled {
3390
+ showCompose?: boolean;
3372
3391
  }
3373
3392
  export type ListOfStringsWithQualifier = {
3374
3393
  qualifier: ListQueryQualifier;
@@ -3835,6 +3854,7 @@ export interface TicketQueue extends TicketQueue_readonly, TicketQueue_required,
3835
3854
  lastRefreshedCountAt?: Date;
3836
3855
  preventPull?: string[];
3837
3856
  index?: number;
3857
+ overdueReminderUserId?: string;
3838
3858
  }
3839
3859
  export interface EnduserOrder_readonly extends ClientRecord {
3840
3860
  }