@tellescope/types-models 1.108.0 → 1.109.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.
@@ -1086,6 +1086,7 @@ export interface File_readonly extends ClientRecord {
1086
1086
  source?: string;
1087
1087
  externalId?: string;
1088
1088
  timestamp?: Date;
1089
+ confirmedAt?: Date;
1089
1090
  }
1090
1091
  export interface File_required {
1091
1092
  name: string;
@@ -1496,6 +1497,7 @@ export interface Integration extends Integration_readonly, Integration_required,
1496
1497
  shouldCreateNotifications?: boolean;
1497
1498
  disableEnduserAutoSync?: boolean;
1498
1499
  disableTicketAutoSync?: boolean;
1500
+ syncEnduserFiles?: boolean;
1499
1501
  pushCalendarDetails?: boolean;
1500
1502
  redactExternalEvents?: boolean;
1501
1503
  fhirClientId?: string;
@@ -1854,6 +1856,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
1854
1856
  isEphemeral?: boolean;
1855
1857
  videoIntegration?: VideoIntegrationType;
1856
1858
  videoURL?: string;
1859
+ externalVideoURL?: string;
1857
1860
  videoHostUserId?: string;
1858
1861
  timezone?: Timezone;
1859
1862
  copiedFrom?: string;
@@ -1870,6 +1873,10 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
1870
1873
  holdUntil?: Date;
1871
1874
  holdFormResponseId?: string;
1872
1875
  tags?: string[];
1876
+ cancelledGroupAttendees?: {
1877
+ id: string;
1878
+ at: Date;
1879
+ }[];
1873
1880
  }
1874
1881
  export type PaymentProcessor = 'Square' | 'Stripe';
1875
1882
  export interface Product_readonly extends ClientRecord {
@@ -3317,6 +3324,8 @@ export type PhoneTreeEvents = {
3317
3324
  transcription?: string;
3318
3325
  handleNoInput?: boolean;
3319
3326
  }>;
3327
+ 'If True': PhoneTreeEventBuilder<'If True', {}>;
3328
+ 'If False': PhoneTreeEventBuilder<'If False', {}>;
3320
3329
  };
3321
3330
  export type PhoneTreeEventType = keyof PhoneTreeEvents;
3322
3331
  export type PhoneTreeEvent = PhoneTreeEvents[PhoneTreeEventType];
@@ -3369,6 +3378,10 @@ export type PhoneTreeActions = {
3369
3378
  'Forward Call': PhoneTreeActionBuilder<"Forward Call", {
3370
3379
  to: string;
3371
3380
  }>;
3381
+ 'Conditional Split': PhoneTreeActionBuilder<"Conditional Split", {
3382
+ timezone?: Timezone;
3383
+ weeklyAvailabilities?: WeeklyAvailability[];
3384
+ }>;
3372
3385
  };
3373
3386
  export type PhoneTreeActionType = keyof PhoneTreeActions;
3374
3387
  export type PhoneTreeAction = PhoneTreeActions[PhoneTreeActionType];
@@ -3526,6 +3539,8 @@ export interface EnduserOrder extends EnduserOrder_readonly, EnduserOrder_requir
3526
3539
  tracking?: string;
3527
3540
  }[];
3528
3541
  tracking?: string;
3542
+ instructions?: string;
3543
+ shippedDate?: string;
3529
3544
  }
3530
3545
  export interface EnduserProblem_readonly extends ClientRecord {
3531
3546
  }