@tellescope/types-models 1.150.1 → 1.151.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.
- package/lib/cjs/index.d.ts +8 -2
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +8 -2
- 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
|
@@ -598,7 +598,7 @@ export type ScheduledJourney = {
|
|
|
598
598
|
addAt: Date;
|
|
599
599
|
};
|
|
600
600
|
export type EnduserRelationship = {
|
|
601
|
-
type: ('Parent' | 'Child' | 'Spouse' | 'Partner' | 'Sibling' | 'Grandparent' | 'Grandchild' | 'Caregiver' | 'Caretaker' | 'Care Recipient' | 'Power of Attorney' | 'Power of Attorney For' | "Emergency Contact" | "Emergency Contact For" | "Care Partner" | 'Relates To');
|
|
601
|
+
type: ('Parent' | 'Child' | 'Spouse' | 'Partner' | 'Sibling' | 'Grandparent' | 'Grandchild' | 'Caregiver' | 'Caretaker' | 'Care Recipient' | 'Power of Attorney' | 'Power of Attorney For' | "Emergency Contact" | "Emergency Contact For" | "Care Partner" | 'Relates To' | "Referring Provider" | "Referred Patient");
|
|
602
602
|
id: string;
|
|
603
603
|
};
|
|
604
604
|
export type Language = {
|
|
@@ -2062,7 +2062,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
|
|
|
2062
2062
|
displayTitle?: string;
|
|
2063
2063
|
displayDescription?: string;
|
|
2064
2064
|
dontBlockAvailability?: boolean;
|
|
2065
|
-
previousStartTimes?: number[];
|
|
2065
|
+
previousStartTimes?: (number | string)[];
|
|
2066
2066
|
}
|
|
2067
2067
|
export type PaymentProcessor = 'Square' | 'Stripe';
|
|
2068
2068
|
export interface Product_readonly extends ClientRecord {
|
|
@@ -2553,6 +2553,11 @@ export type SmartMeterPlaceOrderAutomationAction = AutomationActionBuilder<'smar
|
|
|
2553
2553
|
lines: SmartMeterOrderLineItem[];
|
|
2554
2554
|
shipping?: string;
|
|
2555
2555
|
}>;
|
|
2556
|
+
export type SendChatAutomationAction = AutomationActionBuilder<'sendChat', {
|
|
2557
|
+
templateId: string;
|
|
2558
|
+
identifier: string;
|
|
2559
|
+
includeCareTeam?: boolean;
|
|
2560
|
+
}>;
|
|
2556
2561
|
export type HealthieSyncAutomationAction = AutomationActionBuilder<'healthieSync', {}>;
|
|
2557
2562
|
export type HealthieAddToCourseAutomationAction = AutomationActionBuilder<'healthieAddToCourse', {
|
|
2558
2563
|
courseId: string;
|
|
@@ -2604,6 +2609,7 @@ export type AutomationCondition = AtJourneyStateAutomationCondition;
|
|
|
2604
2609
|
export type AutomationActionForType = {
|
|
2605
2610
|
"sendEmail": SendEmailAutomationAction;
|
|
2606
2611
|
"sendSMS": SendSMSAutomationAction;
|
|
2612
|
+
"sendChat": SendChatAutomationAction;
|
|
2607
2613
|
"sendForm": SendFormAutomationAction;
|
|
2608
2614
|
"createTicket": CreateTicketAutomationAction;
|
|
2609
2615
|
'sendWebhook': SendWebhookAutomationAction;
|