@tellescope/types-models 1.201.0 → 1.203.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 +13 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +13 -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 +12 -2
package/lib/cjs/index.d.ts
CHANGED
|
@@ -249,6 +249,7 @@ export type OrganizationSettings = {
|
|
|
249
249
|
dontPersistSearches?: boolean;
|
|
250
250
|
showEndusersV2?: boolean;
|
|
251
251
|
showInboxV2?: boolean;
|
|
252
|
+
showDialerInTopbar?: boolean;
|
|
252
253
|
};
|
|
253
254
|
};
|
|
254
255
|
export type OrganizationLimits = {
|
|
@@ -1479,6 +1480,8 @@ export interface Note extends Note_readonly, Note_required, Note_updatesDisabled
|
|
|
1479
1480
|
source?: string;
|
|
1480
1481
|
externalId?: string;
|
|
1481
1482
|
hiddenFromTimeline?: boolean;
|
|
1483
|
+
copiedFrom?: string;
|
|
1484
|
+
copiedFromEnduserId?: string;
|
|
1482
1485
|
}
|
|
1483
1486
|
export type FormFieldLiteralType = 'Rich Text' | 'description' | 'string' | 'stringLong' | 'number' | 'email' | 'phone' | 'date' | 'dateString' | 'rating' | 'Time';
|
|
1484
1487
|
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";
|
|
@@ -2105,6 +2108,7 @@ export interface FormResponse extends FormResponse_readonly, FormResponse_requir
|
|
|
2105
2108
|
context?: string;
|
|
2106
2109
|
calendarEventId?: string;
|
|
2107
2110
|
copiedFrom?: string;
|
|
2111
|
+
copiedFromEnduserId?: string;
|
|
2108
2112
|
groupId?: string;
|
|
2109
2113
|
groupInstance?: string;
|
|
2110
2114
|
groupPosition?: number;
|
|
@@ -2225,6 +2229,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
|
|
|
2225
2229
|
athenaDepartmentId?: string;
|
|
2226
2230
|
generateAthenaTelehealthLink?: boolean;
|
|
2227
2231
|
athenaTypeId?: string;
|
|
2232
|
+
athenaBookingTypeId?: string;
|
|
2228
2233
|
actualDuration?: number;
|
|
2229
2234
|
dontSyncToCanvas?: boolean;
|
|
2230
2235
|
reason?: string;
|
|
@@ -2338,6 +2343,7 @@ export interface Product extends Product_readonly, Product_required, Product_upd
|
|
|
2338
2343
|
maxCheckoutCount?: number | '';
|
|
2339
2344
|
stripeSubscriptionId?: string;
|
|
2340
2345
|
stripeProductId?: string;
|
|
2346
|
+
stripePriceId?: string;
|
|
2341
2347
|
}
|
|
2342
2348
|
export interface Purchase_readonly extends ClientRecord {
|
|
2343
2349
|
}
|
|
@@ -2441,6 +2447,7 @@ export interface CalendarEventTemplate extends CalendarEventTemplate_readonly, C
|
|
|
2441
2447
|
athenaDepartmentId?: string;
|
|
2442
2448
|
generateAthenaTelehealthLink?: boolean;
|
|
2443
2449
|
athenaTypeId?: string;
|
|
2450
|
+
athenaBookingTypeId?: string;
|
|
2444
2451
|
}
|
|
2445
2452
|
export interface AppointmentLocation_readonly extends ClientRecord {
|
|
2446
2453
|
}
|
|
@@ -2819,6 +2826,10 @@ export type CreateCarePlanAutomationAction = AutomationActionBuilder<'createCare
|
|
|
2819
2826
|
export type CompleteCarePlanAutomationAction = AutomationActionBuilder<'completeCarePlan', {}>;
|
|
2820
2827
|
export type ZusSyncAutomationAction = AutomationActionBuilder<'zusSync', {}>;
|
|
2821
2828
|
export type ZusPullAutomationAction = AutomationActionBuilder<'zusPull', {}>;
|
|
2829
|
+
export type ZusSubscribeAutomationAction = AutomationActionBuilder<'zusSubscribe', {
|
|
2830
|
+
practitionerId: string;
|
|
2831
|
+
packageIds: string[];
|
|
2832
|
+
}>;
|
|
2822
2833
|
export type PagerDutyCreateIncidentAutomationAction = AutomationActionBuilder<'pagerDutyCreateIncident', {
|
|
2823
2834
|
type: string;
|
|
2824
2835
|
title: string;
|
|
@@ -2945,6 +2956,7 @@ export type AutomationActionForType = {
|
|
|
2945
2956
|
'completeCarePlan': CompleteCarePlanAutomationAction;
|
|
2946
2957
|
'zusSync': ZusSyncAutomationAction;
|
|
2947
2958
|
'zusPull': ZusPullAutomationAction;
|
|
2959
|
+
'zusSubscribe': ZusSubscribeAutomationAction;
|
|
2948
2960
|
'pagerDutyCreateIncident': PagerDutyCreateIncidentAutomationAction;
|
|
2949
2961
|
'smartMeterPlaceOrder': SmartMeterPlaceOrderAutomationAction;
|
|
2950
2962
|
'healthieSync': HealthieSyncAutomationAction;
|
|
@@ -3503,6 +3515,7 @@ export type AnalyticsEnduserFilterField = {
|
|
|
3503
3515
|
export type AnalyticsQueryFilterForType = {
|
|
3504
3516
|
"Endusers": {
|
|
3505
3517
|
activeSince?: Date | '';
|
|
3518
|
+
"Contacted Since"?: Date | '';
|
|
3506
3519
|
"Submitted Forms"?: {
|
|
3507
3520
|
qualifier: ListQueryQualifier;
|
|
3508
3521
|
formIds: string[];
|