@tellescope/types-models 1.246.1 → 1.246.2

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 = {
@@ -3432,6 +3434,8 @@ export type AssignInboxItemAutomationAction = AutomationActionBuilder<'assignInb
3432
3434
  }>;
3433
3435
  export type CreateScriptSureDraftAutomationAction = AutomationActionBuilder<'createScriptSureDraft', {
3434
3436
  prescriptionRouteId: string;
3437
+ matchMedicationTitle?: string;
3438
+ matchEnduserState?: boolean;
3435
3439
  }>;
3436
3440
  export type AutomationActionForType = {
3437
3441
  'aiDecision': AIDecisionAutomationAction;