@tellescope/types-models 1.133.0 → 1.135.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;
@@ -1320,6 +1321,7 @@ export interface Note extends Note_readonly, Note_required, Note_updatesDisabled
1320
1321
  fields?: Indexable<string | CustomField>;
1321
1322
  pinnedAt?: Date | '';
1322
1323
  tags?: string[];
1324
+ discussionRoomId?: string;
1323
1325
  }
1324
1326
  export type FormFieldLiteralType = 'description' | 'string' | 'stringLong' | 'number' | 'email' | 'phone' | 'date' | 'dateString' | 'rating' | 'Time';
1325
1327
  export type FormFieldComplexType = "Emotii" | "Hidden Value" | "Redirect" | "Height" | "Appointment Booking" | "multiple_choice" | "file" | 'files' | "signature" | 'ranking' | 'Question Group' | 'Table Input' | "Address" | "Stripe" | "Dropdown" | "Database Select" | "Medications" | "Related Contacts" | "Insurance";
@@ -1364,6 +1366,8 @@ export type TableInputChoices = {
1364
1366
  export type TableInputChoiceType = keyof TableInputChoices;
1365
1367
  export type TableInputChoice = TableInputChoices[TableInputChoiceType];
1366
1368
  export type FormFieldValidation = {
1369
+ min?: number;
1370
+ max?: number;
1367
1371
  minLength?: number;
1368
1372
  maxLength?: number;
1369
1373
  repeat?: boolean;
@@ -1533,6 +1537,10 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
1533
1537
  canvasQuestionId?: string;
1534
1538
  syncToOLH?: boolean;
1535
1539
  syncWithResponsesFromFormIds?: string[];
1540
+ scoresSync?: {
1541
+ score: string;
1542
+ externalId: string;
1543
+ }[];
1536
1544
  }
1537
1545
  export interface FormGroup_readonly extends ClientRecord {
1538
1546
  }
@@ -1861,6 +1869,7 @@ export interface FormResponse extends FormResponse_readonly, FormResponse_requir
1861
1869
  }[];
1862
1870
  };
1863
1871
  }[];
1872
+ discussionRoomId?: string;
1864
1873
  }
1865
1874
  export interface WebHook_readonly extends ClientRecord {
1866
1875
  }
@@ -2206,6 +2215,7 @@ export interface AppointmentBookingPage extends AppointmentBookingPage_readonly,
2206
2215
  publicMulti?: boolean;
2207
2216
  publicUserTags?: string[];
2208
2217
  publicUserFilterTags?: string[];
2218
+ appointmentSlotsMaxHeight?: number;
2209
2219
  }
2210
2220
  export interface CalendarEventRSVP_readonly extends ClientRecord {
2211
2221
  creatorType: SessionType;
@@ -3395,6 +3405,7 @@ export type AutomationTriggerEvents = {
3395
3405
  }, {}>;
3396
3406
  'Purchase Made': AutomationTriggerEventBuilder<"Purchase Made", {}, {}>;
3397
3407
  'Refund Issued': AutomationTriggerEventBuilder<"Refund Issued", {}, {}>;
3408
+ 'Subscription Ended': AutomationTriggerEventBuilder<"Subscription Ended", {}, {}>;
3398
3409
  'Appointment No-Showed': AutomationTriggerEventBuilder<"Appointment No-Showed", {
3399
3410
  titles?: string[];
3400
3411
  templateIds?: string[];
@@ -3640,7 +3651,9 @@ export type PhoneTreeActions = {
3640
3651
  duration?: number;
3641
3652
  addToCareTeam?: boolean;
3642
3653
  }>;
3643
- "Select Care Team Member": PhoneTreeActionBuilder<"Select Care Team Member", {}>;
3654
+ "Select Care Team Member": PhoneTreeActionBuilder<"Select Care Team Member", {
3655
+ playback?: Partial<PhonePlayback>;
3656
+ }>;
3644
3657
  'Forward Call': PhoneTreeActionBuilder<"Forward Call", {
3645
3658
  to: string;
3646
3659
  }>;