@tellescope/types-models 1.236.2 → 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 +15 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +15 -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 +16 -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 = {
|
|
@@ -2659,6 +2665,7 @@ export interface AppointmentLocation extends AppointmentLocation_readonly, Appoi
|
|
|
2659
2665
|
phone?: string;
|
|
2660
2666
|
timezone?: Timezone;
|
|
2661
2667
|
canvasLocationId?: string;
|
|
2668
|
+
canvasUseHostDefaultLocation?: boolean;
|
|
2662
2669
|
healthieContactType?: string;
|
|
2663
2670
|
healthieLocationId?: string;
|
|
2664
2671
|
healthieUseZoom?: boolean;
|
|
@@ -3736,6 +3743,8 @@ export interface PhoneCall extends PhoneCall_readonly, PhoneCall_required, Phone
|
|
|
3736
3743
|
ignoredUserIds?: string[][];
|
|
3737
3744
|
ticketId?: string;
|
|
3738
3745
|
hungUpByCaller?: boolean;
|
|
3746
|
+
archivedAt?: Date | '';
|
|
3747
|
+
trashedAt?: Date | '';
|
|
3739
3748
|
}
|
|
3740
3749
|
export type AWSTranscribeAlternative = {
|
|
3741
3750
|
confidence?: string;
|
|
@@ -4973,6 +4982,8 @@ export interface GroupMMSConversation extends GroupMMSConversation_readonly, Gro
|
|
|
4973
4982
|
markedUnreadForAll?: boolean;
|
|
4974
4983
|
inboxStatus?: string;
|
|
4975
4984
|
assignedTo?: string[];
|
|
4985
|
+
archivedAt?: Date | '';
|
|
4986
|
+
trashedAt?: Date | '';
|
|
4976
4987
|
}
|
|
4977
4988
|
export type VitalComparisons = {
|
|
4978
4989
|
'Less Than': {
|
|
@@ -5226,6 +5237,10 @@ export interface InboxThread extends InboxThread_readonly, InboxThread_required,
|
|
|
5226
5237
|
};
|
|
5227
5238
|
outboundTimestamp?: Date | '';
|
|
5228
5239
|
outboundPreview?: string;
|
|
5240
|
+
archivedAt?: Date | '';
|
|
5241
|
+
trashedAt?: Date | '';
|
|
5242
|
+
recentOutboundUserId?: string;
|
|
5243
|
+
recentInboundEnduserId?: string;
|
|
5229
5244
|
}
|
|
5230
5245
|
export type ModelForName_required = {
|
|
5231
5246
|
inbox_threads: InboxThread_required;
|