@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.
- package/lib/cjs/index.d.ts +4 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +4 -0
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/index.ts +5 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -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;
|