@tellescope/types-models 1.135.0 → 1.136.1
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 +2 -2
- package/src/index.ts +9 -3
package/lib/cjs/index.d.ts
CHANGED
|
@@ -2024,6 +2024,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
|
|
|
2024
2024
|
dontAutoSyncPatientToHealthie?: boolean;
|
|
2025
2025
|
displayTitle?: string;
|
|
2026
2026
|
displayDescription?: string;
|
|
2027
|
+
dontBlockAvailability?: boolean;
|
|
2027
2028
|
}
|
|
2028
2029
|
export type PaymentProcessor = 'Square' | 'Stripe';
|
|
2029
2030
|
export interface Product_readonly extends ClientRecord {
|
|
@@ -2493,6 +2494,7 @@ export type CreateCarePlanAutomationAction = AutomationActionBuilder<'createCare
|
|
|
2493
2494
|
htmlDescription?: string;
|
|
2494
2495
|
hideRemainingTicketsProgress?: boolean;
|
|
2495
2496
|
highlightedEnduserFields?: string[];
|
|
2497
|
+
closeAutomaticallyByTicket?: boolean;
|
|
2496
2498
|
}>;
|
|
2497
2499
|
export type CompleteCarePlanAutomationAction = AutomationActionBuilder<'completeCarePlan', {}>;
|
|
2498
2500
|
export type ZusSyncAutomationAction = AutomationActionBuilder<'zusSync', {}>;
|
|
@@ -2760,6 +2762,7 @@ export type PortalBlockForType = {
|
|
|
2760
2762
|
text: BuildPortalBlockInfo<'text', {
|
|
2761
2763
|
text: string;
|
|
2762
2764
|
}>;
|
|
2765
|
+
chat: BuildPortalBlockInfo<'chat', {}>;
|
|
2763
2766
|
};
|
|
2764
2767
|
export type PortalBlockType = keyof PortalBlockForType;
|
|
2765
2768
|
export type PortalBlock = PortalBlockForType[PortalBlockType];
|
|
@@ -2951,6 +2954,7 @@ export interface CarePlan extends CarePlan_readonly, CarePlan_required, CarePlan
|
|
|
2951
2954
|
completedAt?: Date | '';
|
|
2952
2955
|
hideRemainingTicketsProgress?: boolean;
|
|
2953
2956
|
highlightedEnduserFields?: string[];
|
|
2957
|
+
closeAutomaticallyByTicket?: boolean;
|
|
2954
2958
|
}
|
|
2955
2959
|
export type TypedField = {
|
|
2956
2960
|
type?: string;
|
|
@@ -3002,6 +3006,7 @@ export interface PhoneCall extends PhoneCall_readonly, PhoneCall_required, Phone
|
|
|
3002
3006
|
recordingDurationInSeconds?: number;
|
|
3003
3007
|
transcriptionId?: string;
|
|
3004
3008
|
conferenceId?: string;
|
|
3009
|
+
externalConferenceId?: string;
|
|
3005
3010
|
conferenceAttendees?: string[];
|
|
3006
3011
|
unread?: boolean;
|
|
3007
3012
|
transcription?: string;
|
|
@@ -3416,9 +3421,11 @@ export type AutomationTriggerEvents = {
|
|
|
3416
3421
|
}, {}>;
|
|
3417
3422
|
'Appointment Created': AutomationTriggerEventBuilder<"Appointment Created", {
|
|
3418
3423
|
titles?: string[];
|
|
3424
|
+
templateIds?: string[];
|
|
3419
3425
|
}, {}>;
|
|
3420
3426
|
'Appointment Completed': AutomationTriggerEventBuilder<"Appointment Completed", {
|
|
3421
3427
|
titles?: string[];
|
|
3428
|
+
templateIds?: string[];
|
|
3422
3429
|
}, {}>;
|
|
3423
3430
|
'Appointment Cancelled': AutomationTriggerEventBuilder<"Appointment Cancelled", {
|
|
3424
3431
|
titles?: string[];
|
|
@@ -3468,6 +3475,7 @@ export type AutomationTriggerEvents = {
|
|
|
3468
3475
|
}, {}>;
|
|
3469
3476
|
'Order Created': AutomationTriggerEventBuilder<"Order Created", {
|
|
3470
3477
|
titles?: string[];
|
|
3478
|
+
partialFrequency?: string;
|
|
3471
3479
|
}, {}>;
|
|
3472
3480
|
'Problem Created': AutomationTriggerEventBuilder<"Problem Created", {
|
|
3473
3481
|
titles?: string[];
|
|
@@ -3827,6 +3835,7 @@ export interface EnduserOrder extends EnduserOrder_readonly, EnduserOrder_requir
|
|
|
3827
3835
|
tracking?: string;
|
|
3828
3836
|
instructions?: string;
|
|
3829
3837
|
shippedDate?: string;
|
|
3838
|
+
frequency?: string;
|
|
3830
3839
|
}
|
|
3831
3840
|
export interface EnduserProblem_readonly extends ClientRecord {
|
|
3832
3841
|
}
|