@tellescope/types-models 1.113.0 → 1.114.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.
@@ -264,6 +264,7 @@ export interface Organization extends Organization_readonly, Organization_requir
264
264
  customProviderURL?: string;
265
265
  customTermsOfService?: string;
266
266
  customPrivacyPolicy?: string;
267
+ requireCustomTermsOnMagicLink?: boolean;
267
268
  settings?: OrganizationSettings;
268
269
  portalSettings?: PortalSettings;
269
270
  enduserDisplayName?: string;
@@ -344,6 +345,10 @@ export interface Organization extends Organization_readonly, Organization_requir
344
345
  }[];
345
346
  externalFormIdsToSync?: string[];
346
347
  enforceMFA?: boolean;
348
+ analyticsIframes?: {
349
+ title: string;
350
+ iframeURL: string;
351
+ }[];
347
352
  }
348
353
  export type OrganizationTheme = {
349
354
  name: string;
@@ -358,6 +363,7 @@ export type OrganizationTheme = {
358
363
  portalSettings?: PortalSettings;
359
364
  customTermsOfService?: string;
360
365
  customPrivacyPolicy?: string;
366
+ requireCustomTermsOnMagicLink?: boolean;
361
367
  };
362
368
  export interface RecordInfo {
363
369
  businessId: string;
@@ -450,6 +456,10 @@ export type UserCallRoutingBehavior = ('' | 'Assigned' | 'Unassigned' | 'All');
450
456
  export type MFASettings = {
451
457
  email?: boolean;
452
458
  };
459
+ export type LabeledField = {
460
+ field: string;
461
+ value: string;
462
+ };
453
463
  export interface User_readonly extends ClientRecord {
454
464
  organization?: string;
455
465
  username?: string;
@@ -521,6 +531,7 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
521
531
  doseSpotUserId?: string;
522
532
  url?: string;
523
533
  requiresMFAConfiguration?: boolean;
534
+ templateFields?: LabeledField[];
524
535
  }
525
536
  export type Preference = 'email' | 'sms' | 'call' | 'chat';
526
537
  export type CustomField = string | number | object | {
@@ -726,6 +737,8 @@ export interface EnduserMedication extends EnduserMedication_readonly, EnduserMe
726
737
  frequency?: string;
727
738
  };
728
739
  notes?: string;
740
+ pharmacyName?: string;
741
+ orderStatus?: string;
729
742
  }
730
743
  export interface APIKey_readonly extends ClientRecord {
731
744
  hashedKey: string;
@@ -868,6 +881,7 @@ export interface Journey extends Journey_readonly, Journey_required, Journey_upd
868
881
  export interface TextCommunication extends WithLinkOpenTrackingIds {
869
882
  automationStepId?: string;
870
883
  templateId?: string;
884
+ calendarEventId?: string;
871
885
  }
872
886
  export type EmailEncoding = '' | 'base64';
873
887
  export interface Email_readonly extends ClientRecord {
@@ -1387,6 +1401,7 @@ export interface FormField extends FormField_readonly, FormField_required, FormF
1387
1401
  externalId?: string;
1388
1402
  sharedWithEnduser?: boolean;
1389
1403
  prepopulateFromFields?: boolean;
1404
+ disabledWhenPrepopulated?: boolean;
1390
1405
  calloutConditions?: FormFieldCalloutCondition[];
1391
1406
  feedback?: FormFieldFeedback[];
1392
1407
  highlightOnTimeline?: boolean;
@@ -1676,6 +1691,7 @@ export type FormResponseValue = {
1676
1691
  externalId?: string;
1677
1692
  sharedWithEnduser?: boolean;
1678
1693
  isCalledOut?: boolean;
1694
+ disabled?: boolean;
1679
1695
  isHighlightedOnTimeline?: boolean;
1680
1696
  computedValueKey?: 'Height' | 'Weight' | 'Date of Birth';
1681
1697
  };
@@ -1895,6 +1911,8 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
1895
1911
  at: Date;
1896
1912
  }[];
1897
1913
  useUserURL?: boolean;
1914
+ healthieZoomStartURL?: string;
1915
+ healthieZoomJoinURL?: string;
1898
1916
  }
1899
1917
  export type PaymentProcessor = 'Square' | 'Stripe';
1900
1918
  export interface Product_readonly extends ClientRecord {