@tellescope/types-models 1.255.13 → 1.255.14

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.
@@ -2061,6 +2061,7 @@ export type AISummaryConfiguration = {
2061
2061
  dataSources?: AISummaryDataSourceConfig[];
2062
2062
  maxOutputTokens?: number;
2063
2063
  includeProfileFields?: boolean;
2064
+ model?: string;
2064
2065
  };
2065
2066
  export type FormCustomization = {
2066
2067
  publicFormHTMLDescription?: string;
@@ -2718,7 +2719,6 @@ export type VideoCallParticipantEvent = {
2718
2719
  export interface CalendarEvent_readonly extends ClientRecord {
2719
2720
  meetingId?: string;
2720
2721
  meetingStatus?: MeetingStatus;
2721
- references?: RelatedRecord[];
2722
2722
  videoCallAttendance?: VideoCallParticipantEvent[];
2723
2723
  }
2724
2724
  export interface CalendarEvent_required {
@@ -2730,6 +2730,7 @@ export interface CalendarEvent_updatesDisabled {
2730
2730
  }
2731
2731
  export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_required, CalendarEvent_updatesDisabled {
2732
2732
  updateKey?: string;
2733
+ references?: RelatedRecord[];
2733
2734
  dontSyncToElation?: boolean;
2734
2735
  createAndBookAthenaSlot?: boolean;
2735
2736
  athenaDepartmentId?: string;
@@ -4198,6 +4199,10 @@ export interface PhoneCall extends PhoneCall_readonly, PhoneCall_required, Phone
4198
4199
  dialedUserIds?: string[][];
4199
4200
  ignoredUserIds?: string[][];
4200
4201
  lastDialedUserIds?: string[];
4202
+ coldTransfers?: {
4203
+ transferredAt: Date;
4204
+ userId: string;
4205
+ }[];
4201
4206
  ticketId?: string;
4202
4207
  hungUpByCaller?: boolean;
4203
4208
  archivedAt?: Date | '';
@@ -5091,6 +5096,9 @@ export type PhoneTreeEvents = {
5091
5096
  'On Agent Outcome': PhoneTreeEventBuilder<'On Agent Outcome', {
5092
5097
  outcome: string;
5093
5098
  }>;
5099
+ 'On Condition Branch': PhoneTreeEventBuilder<'On Condition Branch', {
5100
+ branch: string;
5101
+ }>;
5094
5102
  };
5095
5103
  export type PhoneTreeEventType = keyof PhoneTreeEvents;
5096
5104
  export type PhoneTreeEvent = PhoneTreeEvents[PhoneTreeEventType];
@@ -5167,6 +5175,12 @@ export type PhoneTreeActions = {
5167
5175
  hasCareTeam?: boolean;
5168
5176
  hasOneCareTeamMember?: boolean;
5169
5177
  }>;
5178
+ 'Enduser Condition Split': PhoneTreeActionBuilder<"Enduser Condition Split", {
5179
+ branches: {
5180
+ name: string;
5181
+ enduserCondition?: Record<string, any>;
5182
+ }[];
5183
+ }>;
5170
5184
  'Add to Queue': PhoneTreeActionBuilder<"Add to Queue", {
5171
5185
  queueId: string;
5172
5186
  playback?: Partial<PhonePlayback>;
@@ -5192,6 +5206,7 @@ export type PhoneTreeActions = {
5192
5206
  maxTurns?: number;
5193
5207
  maxDurationSeconds?: number;
5194
5208
  maxCreditsPerCall?: number;
5209
+ model?: string;
5195
5210
  outcomes: {
5196
5211
  value: string;
5197
5212
  description: string;