@tellescope/types-models 1.132.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;
@@ -2890,6 +2895,7 @@ export interface UserLog_updatesDisabled {
2890
2895
  export interface UserLog extends UserLog_readonly, UserLog_required, UserLog_updatesDisabled {
2891
2896
  info?: Indexable;
2892
2897
  enduserId?: string;
2898
+ note?: string;
2893
2899
  }
2894
2900
  export interface EnduserTask_readonly extends ClientRecord {
2895
2901
  }
@@ -2959,6 +2965,7 @@ export type UserUIRestrictions = {
2959
2965
  hideMergeEndusers?: boolean;
2960
2966
  hideQueuedTicketsViewer?: boolean;
2961
2967
  hideIncomingFaxesIcon?: boolean;
2968
+ hideBulkEnduserActions?: boolean;
2962
2969
  };
2963
2970
  export interface RoleBasedAccessPermission_readonly extends ClientRecord {
2964
2971
  }
@@ -3393,6 +3400,7 @@ export type AutomationTriggerEvents = {
3393
3400
  }, {}>;
3394
3401
  'Purchase Made': AutomationTriggerEventBuilder<"Purchase Made", {}, {}>;
3395
3402
  'Refund Issued': AutomationTriggerEventBuilder<"Refund Issued", {}, {}>;
3403
+ 'Subscription Ended': AutomationTriggerEventBuilder<"Subscription Ended", {}, {}>;
3396
3404
  'Appointment No-Showed': AutomationTriggerEventBuilder<"Appointment No-Showed", {
3397
3405
  titles?: string[];
3398
3406
  templateIds?: string[];