@tellescope/types-models 1.246.1 → 1.247.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.
@@ -4,6 +4,7 @@ export interface EnduserPortalVisibility {
4
4
  }
5
5
  export interface SearchOptions {
6
6
  query: string;
7
+ minSearchScore?: number;
7
8
  }
8
9
  export type StripeCountryCode = "US" | "GB";
9
10
  export type StripeCheckoutInfo = {
@@ -1395,6 +1396,7 @@ export interface ChatRoom extends ChatRoom_readonly, ChatRoom_required, ChatRoom
1395
1396
  journeyId?: string;
1396
1397
  archivedAt?: Date | '';
1397
1398
  trashedAt?: Date | '';
1399
+ groupMentions?: string[];
1398
1400
  }
1399
1401
  export type ChatAttachmentType = 'image' | 'video' | 'file' | string;
1400
1402
  export type ChatAttachment = {
@@ -1823,6 +1825,7 @@ export type FormFieldOptions = FormFieldValidation & {
1823
1825
  signatureUrl?: string;
1824
1826
  productIds?: string[];
1825
1827
  chargeImmediately?: boolean;
1828
+ saveCardOnFile?: boolean;
1826
1829
  databaseId?: string;
1827
1830
  databaseLabel?: string;
1828
1831
  databaseLabels?: string[];
@@ -2883,6 +2886,7 @@ export interface AppointmentBookingPage extends AppointmentBookingPage_readonly,
2883
2886
  topLogo?: string;
2884
2887
  intakeTitle?: string;
2885
2888
  intakeDescription?: string;
2889
+ portalDescription?: string;
2886
2890
  thankYouRedirectURL?: string;
2887
2891
  thankYouTitle?: string;
2888
2892
  thankYouDescription?: string;
@@ -3330,6 +3334,7 @@ export type CanvasCreateNoteAutomationAction = AutomationActionBuilder<'canvasCr
3330
3334
  formIds: string[];
3331
3335
  matchCareTeamTagsForCanvasPractitionerResolution: ListOfStringsWithQualifier;
3332
3336
  noteCoding: CanvasCoding;
3337
+ syncAllFormResponses?: boolean;
3333
3338
  }>;
3334
3339
  export type CanvasAddToGroupAutomationAction = AutomationActionBuilder<'canvasAddToGroup', {
3335
3340
  groupId: string;
@@ -3432,6 +3437,8 @@ export type AssignInboxItemAutomationAction = AutomationActionBuilder<'assignInb
3432
3437
  }>;
3433
3438
  export type CreateScriptSureDraftAutomationAction = AutomationActionBuilder<'createScriptSureDraft', {
3434
3439
  prescriptionRouteId: string;
3440
+ matchMedicationTitle?: string;
3441
+ matchEnduserState?: boolean;
3435
3442
  }>;
3436
3443
  export type AutomationActionForType = {
3437
3444
  'aiDecision': AIDecisionAutomationAction;
@@ -3925,6 +3932,7 @@ export type UserUIRestrictions = {
3925
3932
  hideBulkEnduserActions?: boolean;
3926
3933
  visibleIntegrations?: string[];
3927
3934
  hideViewPortalAsEnduser?: boolean;
3935
+ hideEnduserNote?: boolean;
3928
3936
  };
3929
3937
  export interface RoleBasedAccessPermission_readonly extends ClientRecord {
3930
3938
  }