@tellescope/types-models 1.237.0 → 1.237.2

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.
@@ -1182,6 +1182,8 @@ export interface Email extends Email_required, Email_readonly, Email_updatesDisa
1182
1182
  inboxStatus?: string;
1183
1183
  relatedContactId?: string;
1184
1184
  copyOf?: string;
1185
+ archivedAt?: Date | '';
1186
+ trashedAt?: Date | '';
1185
1187
  }
1186
1188
  export interface SMSMessage_readonly extends ClientRecord {
1187
1189
  delivered: boolean;
@@ -1242,6 +1244,8 @@ export interface SMSMessage extends SMSMessage_readonly, SMSMessage_required, SM
1242
1244
  inboxStatus?: string;
1243
1245
  relatedContactId?: string;
1244
1246
  copyOf?: string;
1247
+ archivedAt?: Date | '';
1248
+ trashedAt?: Date | '';
1245
1249
  }
1246
1250
  export type ChatRoomType = 'internal' | 'external' | 'Group Chat';
1247
1251
  export interface ChatRoom_readonly extends ClientRecord {
@@ -1287,6 +1291,8 @@ export interface ChatRoom extends ChatRoom_readonly, ChatRoom_required, ChatRoom
1287
1291
  externalId?: string;
1288
1292
  references?: RelatedRecord[];
1289
1293
  journeyId?: string;
1294
+ archivedAt?: Date | '';
1295
+ trashedAt?: Date | '';
1290
1296
  }
1291
1297
  export type ChatAttachmentType = 'image' | 'video' | 'file' | string;
1292
1298
  export type ChatAttachment = {
@@ -3729,6 +3735,7 @@ export interface PhoneCall extends PhoneCall_readonly, PhoneCall_required, Phone
3729
3735
  ticketIds?: string[];
3730
3736
  tags?: string[];
3731
3737
  inputs?: string[];
3738
+ queueGatherDigit?: string;
3732
3739
  answeredAt?: Date;
3733
3740
  recordingCancelledAt?: Date;
3734
3741
  assignedTo?: string[];
@@ -3737,6 +3744,8 @@ export interface PhoneCall extends PhoneCall_readonly, PhoneCall_required, Phone
3737
3744
  ignoredUserIds?: string[][];
3738
3745
  ticketId?: string;
3739
3746
  hungUpByCaller?: boolean;
3747
+ archivedAt?: Date | '';
3748
+ trashedAt?: Date | '';
3740
3749
  }
3741
3750
  export type AWSTranscribeAlternative = {
3742
3751
  confidence?: string;
@@ -4636,6 +4645,7 @@ export type PhoneTreeActions = {
4636
4645
  'Add to Queue': PhoneTreeActionBuilder<"Add to Queue", {
4637
4646
  queueId: string;
4638
4647
  playback?: Partial<PhonePlayback>;
4648
+ holdPromptPlayback?: Partial<PhonePlayback>;
4639
4649
  }>;
4640
4650
  'Route Extensions': PhoneTreeActionBuilder<"Route Extensions", {
4641
4651
  extensions: {
@@ -4974,6 +4984,8 @@ export interface GroupMMSConversation extends GroupMMSConversation_readonly, Gro
4974
4984
  markedUnreadForAll?: boolean;
4975
4985
  inboxStatus?: string;
4976
4986
  assignedTo?: string[];
4987
+ archivedAt?: Date | '';
4988
+ trashedAt?: Date | '';
4977
4989
  }
4978
4990
  export type VitalComparisons = {
4979
4991
  'Less Than': {
@@ -5227,6 +5239,12 @@ export interface InboxThread extends InboxThread_readonly, InboxThread_required,
5227
5239
  };
5228
5240
  outboundTimestamp?: Date | '';
5229
5241
  outboundPreview?: string;
5242
+ archivedAt?: Date | '';
5243
+ trashedAt?: Date | '';
5244
+ recentOutboundUserId?: string;
5245
+ recentInboundEnduserId?: string;
5246
+ draftMessageIds?: string[];
5247
+ scheduledMessageIds?: string[];
5230
5248
  }
5231
5249
  export type ModelForName_required = {
5232
5250
  inbox_threads: InboxThread_required;