@tellescope/types-models 1.134.0 → 1.136.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.
@@ -464,6 +464,7 @@ export type WeeklyAvailability = {
464
464
  locationId?: string;
465
465
  locationIds?: string[];
466
466
  validTemplateIds?: string[];
467
+ priority?: number;
467
468
  };
468
469
  export type NotificationPreference = {
469
470
  email?: boolean;
@@ -1536,6 +1537,10 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
1536
1537
  canvasQuestionId?: string;
1537
1538
  syncToOLH?: boolean;
1538
1539
  syncWithResponsesFromFormIds?: string[];
1540
+ scoresSync?: {
1541
+ score: string;
1542
+ externalId: string;
1543
+ }[];
1539
1544
  }
1540
1545
  export interface FormGroup_readonly extends ClientRecord {
1541
1546
  }
@@ -2019,6 +2024,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
2019
2024
  dontAutoSyncPatientToHealthie?: boolean;
2020
2025
  displayTitle?: string;
2021
2026
  displayDescription?: string;
2027
+ dontBlockAvailability?: boolean;
2022
2028
  }
2023
2029
  export type PaymentProcessor = 'Square' | 'Stripe';
2024
2030
  export interface Product_readonly extends ClientRecord {
@@ -2488,6 +2494,7 @@ export type CreateCarePlanAutomationAction = AutomationActionBuilder<'createCare
2488
2494
  htmlDescription?: string;
2489
2495
  hideRemainingTicketsProgress?: boolean;
2490
2496
  highlightedEnduserFields?: string[];
2497
+ closeAutomaticallyByTicket?: boolean;
2491
2498
  }>;
2492
2499
  export type CompleteCarePlanAutomationAction = AutomationActionBuilder<'completeCarePlan', {}>;
2493
2500
  export type ZusSyncAutomationAction = AutomationActionBuilder<'zusSync', {}>;
@@ -2755,6 +2762,7 @@ export type PortalBlockForType = {
2755
2762
  text: BuildPortalBlockInfo<'text', {
2756
2763
  text: string;
2757
2764
  }>;
2765
+ chat: BuildPortalBlockInfo<'chat', {}>;
2758
2766
  };
2759
2767
  export type PortalBlockType = keyof PortalBlockForType;
2760
2768
  export type PortalBlock = PortalBlockForType[PortalBlockType];
@@ -2946,6 +2954,7 @@ export interface CarePlan extends CarePlan_readonly, CarePlan_required, CarePlan
2946
2954
  completedAt?: Date | '';
2947
2955
  hideRemainingTicketsProgress?: boolean;
2948
2956
  highlightedEnduserFields?: string[];
2957
+ closeAutomaticallyByTicket?: boolean;
2949
2958
  }
2950
2959
  export type TypedField = {
2951
2960
  type?: string;
@@ -2997,6 +3006,7 @@ export interface PhoneCall extends PhoneCall_readonly, PhoneCall_required, Phone
2997
3006
  recordingDurationInSeconds?: number;
2998
3007
  transcriptionId?: string;
2999
3008
  conferenceId?: string;
3009
+ externalConferenceId?: string;
3000
3010
  conferenceAttendees?: string[];
3001
3011
  unread?: boolean;
3002
3012
  transcription?: string;
@@ -3411,9 +3421,11 @@ export type AutomationTriggerEvents = {
3411
3421
  }, {}>;
3412
3422
  'Appointment Created': AutomationTriggerEventBuilder<"Appointment Created", {
3413
3423
  titles?: string[];
3424
+ templateIds?: string[];
3414
3425
  }, {}>;
3415
3426
  'Appointment Completed': AutomationTriggerEventBuilder<"Appointment Completed", {
3416
3427
  titles?: string[];
3428
+ templateIds?: string[];
3417
3429
  }, {}>;
3418
3430
  'Appointment Cancelled': AutomationTriggerEventBuilder<"Appointment Cancelled", {
3419
3431
  titles?: string[];
@@ -3463,6 +3475,7 @@ export type AutomationTriggerEvents = {
3463
3475
  }, {}>;
3464
3476
  'Order Created': AutomationTriggerEventBuilder<"Order Created", {
3465
3477
  titles?: string[];
3478
+ partialFrequency?: string;
3466
3479
  }, {}>;
3467
3480
  'Problem Created': AutomationTriggerEventBuilder<"Problem Created", {
3468
3481
  titles?: string[];
@@ -3646,7 +3659,9 @@ export type PhoneTreeActions = {
3646
3659
  duration?: number;
3647
3660
  addToCareTeam?: boolean;
3648
3661
  }>;
3649
- "Select Care Team Member": PhoneTreeActionBuilder<"Select Care Team Member", {}>;
3662
+ "Select Care Team Member": PhoneTreeActionBuilder<"Select Care Team Member", {
3663
+ playback?: Partial<PhonePlayback>;
3664
+ }>;
3650
3665
  'Forward Call': PhoneTreeActionBuilder<"Forward Call", {
3651
3666
  to: string;
3652
3667
  }>;
@@ -3820,6 +3835,7 @@ export interface EnduserOrder extends EnduserOrder_readonly, EnduserOrder_requir
3820
3835
  tracking?: string;
3821
3836
  instructions?: string;
3822
3837
  shippedDate?: string;
3838
+ frequency?: string;
3823
3839
  }
3824
3840
  export interface EnduserProblem_readonly extends ClientRecord {
3825
3841
  }