@tellescope/types-models 1.237.0 → 1.237.1
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.
- package/lib/cjs/index.d.ts +14 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +14 -0
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/index.ts +15 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -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 = {
|
|
@@ -3737,6 +3743,8 @@ export interface PhoneCall extends PhoneCall_readonly, PhoneCall_required, Phone
|
|
|
3737
3743
|
ignoredUserIds?: string[][];
|
|
3738
3744
|
ticketId?: string;
|
|
3739
3745
|
hungUpByCaller?: boolean;
|
|
3746
|
+
archivedAt?: Date | '';
|
|
3747
|
+
trashedAt?: Date | '';
|
|
3740
3748
|
}
|
|
3741
3749
|
export type AWSTranscribeAlternative = {
|
|
3742
3750
|
confidence?: string;
|
|
@@ -4974,6 +4982,8 @@ export interface GroupMMSConversation extends GroupMMSConversation_readonly, Gro
|
|
|
4974
4982
|
markedUnreadForAll?: boolean;
|
|
4975
4983
|
inboxStatus?: string;
|
|
4976
4984
|
assignedTo?: string[];
|
|
4985
|
+
archivedAt?: Date | '';
|
|
4986
|
+
trashedAt?: Date | '';
|
|
4977
4987
|
}
|
|
4978
4988
|
export type VitalComparisons = {
|
|
4979
4989
|
'Less Than': {
|
|
@@ -5227,6 +5237,10 @@ export interface InboxThread extends InboxThread_readonly, InboxThread_required,
|
|
|
5227
5237
|
};
|
|
5228
5238
|
outboundTimestamp?: Date | '';
|
|
5229
5239
|
outboundPreview?: string;
|
|
5240
|
+
archivedAt?: Date | '';
|
|
5241
|
+
trashedAt?: Date | '';
|
|
5242
|
+
recentOutboundUserId?: string;
|
|
5243
|
+
recentInboundEnduserId?: string;
|
|
5230
5244
|
}
|
|
5231
5245
|
export type ModelForName_required = {
|
|
5232
5246
|
inbox_threads: InboxThread_required;
|