@tellescope/types-models 1.128.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.
@@ -346,6 +346,7 @@ export interface Organization extends Organization_readonly, Organization_requir
346
346
  id: string;
347
347
  questionId: string;
348
348
  };
349
+ canvasSyncEmailConsent?: boolean;
349
350
  dosespotClinics?: {
350
351
  id: string;
351
352
  name: string;
@@ -707,6 +708,7 @@ export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_upd
707
708
  useDefaultFromPhoneInAutomations?: boolean;
708
709
  stripeCustomerId?: string;
709
710
  stripeKey?: string;
711
+ lastDoseSpotSyncAt?: Date;
710
712
  }
711
713
  export interface EnduserCustomType_readonly extends ClientRecord {
712
714
  }
@@ -760,6 +762,7 @@ export interface EnduserMedication extends EnduserMedication_readonly, EnduserMe
760
762
  };
761
763
  notes?: string;
762
764
  pharmacyName?: string;
765
+ pharmacyId?: string;
763
766
  orderStatus?: string;
764
767
  }
765
768
  export interface APIKey_readonly extends ClientRecord {
@@ -2495,6 +2498,9 @@ export type ChangeContactTypeAutomationAction = AutomationActionBuilder<'changeC
2495
2498
  type: string;
2496
2499
  }>;
2497
2500
  export type ActiveCampaignSyncAutomationAction = AutomationActionBuilder<'activeCampaignSync', {}>;
2501
+ export type SwitchToRelatedContactAutomationAction = AutomationActionBuilder<'switchToRelatedContact', {
2502
+ type: string;
2503
+ }>;
2498
2504
  export type IterableFieldsMapping = {
2499
2505
  iterable: string;
2500
2506
  tellescope: string;
@@ -2549,6 +2555,7 @@ export type AutomationActionForType = {
2549
2555
  'completeTickets': CompleteTicketsAutomationAction;
2550
2556
  'changeContactType': ChangeContactTypeAutomationAction;
2551
2557
  activeCampaignSync: ActiveCampaignSyncAutomationAction;
2558
+ switchToRelatedContact: SwitchToRelatedContactAutomationAction;
2552
2559
  };
2553
2560
  export type AutomationActionType = keyof AutomationActionForType;
2554
2561
  export type AutomationAction = AutomationActionForType[AutomationActionType];
@@ -3201,6 +3208,8 @@ export interface AnalyticsFrame extends AnalyticsFrame_readonly, AnalyticsFrame_
3201
3208
  groupMax?: number | '';
3202
3209
  displayType?: string;
3203
3210
  analyticsFrameGroupingCategory?: AnalyticsFrameGroupingCategory[];
3211
+ truncationLength?: number;
3212
+ showEllipsis?: boolean;
3204
3213
  }
3205
3214
  export interface BackgroundError_readonly extends ClientRecord {
3206
3215
  }
@@ -3609,6 +3618,7 @@ export interface PhoneTree extends PhoneTree_readonly, PhoneTree_required, Phone
3609
3618
  testEnduserIds?: string[];
3610
3619
  enduserCondition?: PhoneTreeEnduserCondition;
3611
3620
  bypassOOO?: boolean;
3621
+ defaultEntityType?: string;
3612
3622
  }
3613
3623
  export type TableViewColumn = {
3614
3624
  field: string;
@@ -3660,6 +3670,7 @@ export interface TicketThread extends TicketThread_readonly, TicketThread_requir
3660
3670
  closedAt?: Date | '';
3661
3671
  pinnedAt?: Date | '';
3662
3672
  assignedTo?: string[];
3673
+ tags?: string[];
3663
3674
  }
3664
3675
  export interface TicketThreadComment_readonly extends ClientRecord {
3665
3676
  externalThreadId?: string;
@@ -3699,6 +3710,7 @@ export interface TicketThreadComment extends TicketThreadComment_readonly, Ticke
3699
3710
  [index: string]: Date | '';
3700
3711
  };
3701
3712
  ticketIds?: string[];
3713
+ tags?: string[];
3702
3714
  }
3703
3715
  export interface Configuration_readonly extends ClientRecord {
3704
3716
  }