@tellescope/types-models 1.133.0 → 1.134.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.
@@ -1320,6 +1320,7 @@ export interface Note extends Note_readonly, Note_required, Note_updatesDisabled
1320
1320
  fields?: Indexable<string | CustomField>;
1321
1321
  pinnedAt?: Date | '';
1322
1322
  tags?: string[];
1323
+ discussionRoomId?: string;
1323
1324
  }
1324
1325
  export type FormFieldLiteralType = 'description' | 'string' | 'stringLong' | 'number' | 'email' | 'phone' | 'date' | 'dateString' | 'rating' | 'Time';
1325
1326
  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 +1365,8 @@ export type TableInputChoices = {
1364
1365
  export type TableInputChoiceType = keyof TableInputChoices;
1365
1366
  export type TableInputChoice = TableInputChoices[TableInputChoiceType];
1366
1367
  export type FormFieldValidation = {
1368
+ min?: number;
1369
+ max?: number;
1367
1370
  minLength?: number;
1368
1371
  maxLength?: number;
1369
1372
  repeat?: boolean;
@@ -1861,6 +1864,7 @@ export interface FormResponse extends FormResponse_readonly, FormResponse_requir
1861
1864
  }[];
1862
1865
  };
1863
1866
  }[];
1867
+ discussionRoomId?: string;
1864
1868
  }
1865
1869
  export interface WebHook_readonly extends ClientRecord {
1866
1870
  }
@@ -2206,6 +2210,7 @@ export interface AppointmentBookingPage extends AppointmentBookingPage_readonly,
2206
2210
  publicMulti?: boolean;
2207
2211
  publicUserTags?: string[];
2208
2212
  publicUserFilterTags?: string[];
2213
+ appointmentSlotsMaxHeight?: number;
2209
2214
  }
2210
2215
  export interface CalendarEventRSVP_readonly extends ClientRecord {
2211
2216
  creatorType: SessionType;
@@ -3395,6 +3400,7 @@ export type AutomationTriggerEvents = {
3395
3400
  }, {}>;
3396
3401
  'Purchase Made': AutomationTriggerEventBuilder<"Purchase Made", {}, {}>;
3397
3402
  'Refund Issued': AutomationTriggerEventBuilder<"Refund Issued", {}, {}>;
3403
+ 'Subscription Ended': AutomationTriggerEventBuilder<"Subscription Ended", {}, {}>;
3398
3404
  'Appointment No-Showed': AutomationTriggerEventBuilder<"Appointment No-Showed", {
3399
3405
  titles?: string[];
3400
3406
  templateIds?: string[];