@tellescope/types-models 1.256.7 → 1.256.9
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 +9 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +9 -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 +9 -0
package/lib/cjs/index.d.ts
CHANGED
|
@@ -1864,6 +1864,7 @@ export interface Note extends Note_readonly, Note_required, Note_updatesDisabled
|
|
|
1864
1864
|
hiddenFromTimeline?: boolean;
|
|
1865
1865
|
copiedFrom?: string;
|
|
1866
1866
|
copiedFromEnduserId?: string;
|
|
1867
|
+
aiGenerated?: boolean;
|
|
1867
1868
|
}
|
|
1868
1869
|
export type FormFieldLiteralType = 'Rich Text' | 'description' | 'string' | 'stringLong' | 'number' | 'email' | 'phone' | 'date' | 'dateString' | 'rating' | 'Time' | "Timezone";
|
|
1869
1870
|
export type FormFieldComplexType = "Conditions" | "Allergies" | "Emotii" | "Hidden Value" | "Redirect" | "Height" | "Appointment Booking" | "multiple_choice" | "file" | 'files' | "signature" | 'ranking' | 'Question Group' | 'Table Input' | "Address" | "Chargebee" | "Stripe" | "Dropdown" | "Database Select" | "Medications" | "Related Contacts" | "Insurance" | "Bridge Eligibility" | "Candid Eligibility" | "Beluga Patient Preference" | "Pharmacy Search";
|
|
@@ -3670,6 +3671,13 @@ export type AIDecisionAutomationAction = AutomationActionBuilder<'aiDecision', {
|
|
|
3670
3671
|
export type GenerateEnduserSummaryAutomationAction = AutomationActionBuilder<'generateEnduserSummary', {
|
|
3671
3672
|
aiSummaryConfiguration?: AISummaryConfiguration;
|
|
3672
3673
|
}>;
|
|
3674
|
+
export type CreateNoteAutomationAction = AutomationActionBuilder<'createNote', {
|
|
3675
|
+
title: string;
|
|
3676
|
+
text?: string;
|
|
3677
|
+
tags?: string[];
|
|
3678
|
+
hiddenFromTimeline?: boolean;
|
|
3679
|
+
aiSummaryConfiguration?: AISummaryConfiguration;
|
|
3680
|
+
}>;
|
|
3673
3681
|
export type AssignInboxItemAutomationAction = AutomationActionBuilder<'assignInboxItem', {
|
|
3674
3682
|
tags: ListOfStringsWithQualifier;
|
|
3675
3683
|
limit: number;
|
|
@@ -3690,6 +3698,7 @@ export type StartAIConversationAutomationAction = AutomationActionBuilder<'start
|
|
|
3690
3698
|
export type AutomationActionForType = {
|
|
3691
3699
|
'aiDecision': AIDecisionAutomationAction;
|
|
3692
3700
|
'generateEnduserSummary': GenerateEnduserSummaryAutomationAction;
|
|
3701
|
+
'createNote': CreateNoteAutomationAction;
|
|
3693
3702
|
'startAIConversation': StartAIConversationAutomationAction;
|
|
3694
3703
|
'assignInboxItem': AssignInboxItemAutomationAction;
|
|
3695
3704
|
'stripeChargeCardOnFile': StripeChargeCardOnFileAutomationAction;
|