@tellescope/types-models 1.193.0 → 1.194.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.
@@ -345,6 +345,7 @@ export interface Organization extends Organization_readonly, Organization_requir
345
345
  hasConnectedEmotii?: boolean;
346
346
  hasConnectedDevelopHealth?: boolean;
347
347
  hasConnectedCustomerIO?: boolean;
348
+ hasConnectedSuperDial?: boolean;
348
349
  hasConfiguredZoom?: boolean;
349
350
  hasTicketQueues?: boolean;
350
351
  vitalTeamId?: string;
@@ -695,6 +696,10 @@ export type EnduserDiagnosis = {
695
696
  source?: string;
696
697
  references?: RelatedRecord[];
697
698
  };
699
+ export type RecentViewer = {
700
+ id: string;
701
+ at: Date;
702
+ };
698
703
  export type TellescopeGender = "Male" | "Female" | "Other" | "Unknown";
699
704
  export interface Enduser_readonly extends UserActivityInfo, ClientRecord, EnduserEngagementTimestamps {
700
705
  lastCommunication?: Date;
@@ -715,6 +720,7 @@ export interface Enduser_updatesDisabled {
715
720
  references?: RelatedRecord[];
716
721
  }
717
722
  export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_updatesDisabled {
723
+ recentViewers?: RecentViewer[];
718
724
  healthie_dietitian_id?: string;
719
725
  unsubscribePhone?: boolean;
720
726
  externalId?: string;
@@ -799,6 +805,8 @@ export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_upd
799
805
  chargebeeEnvironment?: string;
800
806
  chargebeeId?: string;
801
807
  healthieSyncError?: string;
808
+ lastSuperdialEligibilityCheckAt?: Date;
809
+ superdialEligibilityResponse?: string;
802
810
  }
803
811
  export interface EnduserCustomType_readonly extends ClientRecord {
804
812
  }
@@ -1581,6 +1589,7 @@ export type FormFieldOptions = FormFieldValidation & {
1581
1589
  chargebeePlanId?: string;
1582
1590
  chargebeeItemId?: string;
1583
1591
  relatedContactTypes?: string[];
1592
+ radioChoices?: string[];
1584
1593
  };
1585
1594
  export type MultipleChoiceOptions = Pick<FormFieldOptions, 'choices' | 'radio' | 'other'>;
1586
1595
  export type FormFieldCalloutConditionComparison = 'Equals';