@tellescope/types-models 1.200.1 → 1.201.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.
- package/lib/cjs/index.d.ts +13 -7
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +13 -7
- 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 +14 -8
package/lib/cjs/index.d.ts
CHANGED
|
@@ -248,6 +248,7 @@ export type OrganizationSettings = {
|
|
|
248
248
|
interface?: {
|
|
249
249
|
dontPersistSearches?: boolean;
|
|
250
250
|
showEndusersV2?: boolean;
|
|
251
|
+
showInboxV2?: boolean;
|
|
251
252
|
};
|
|
252
253
|
};
|
|
253
254
|
export type OrganizationLimits = {
|
|
@@ -1051,10 +1052,10 @@ export interface Email_updatesDisabled {
|
|
|
1051
1052
|
inbound?: boolean;
|
|
1052
1053
|
logOnly?: boolean;
|
|
1053
1054
|
timestamp?: Date;
|
|
1054
|
-
userId: string;
|
|
1055
1055
|
journeyId?: string;
|
|
1056
1056
|
}
|
|
1057
1057
|
export interface Email extends Email_required, Email_readonly, Email_updatesDisabled, TextCommunication {
|
|
1058
|
+
userId: string;
|
|
1058
1059
|
hiddenFromTimeline?: boolean;
|
|
1059
1060
|
isAutoreply?: boolean;
|
|
1060
1061
|
replyTo?: string | null;
|
|
@@ -1155,6 +1156,7 @@ export type ChatRoomType = 'internal' | 'external' | 'Group Chat';
|
|
|
1155
1156
|
export interface ChatRoom_readonly extends ClientRecord {
|
|
1156
1157
|
recentMessage?: string;
|
|
1157
1158
|
recentEnduserMessage?: string;
|
|
1159
|
+
recentEnduserMessageSentAt?: number;
|
|
1158
1160
|
recentSender?: string;
|
|
1159
1161
|
recentMessageSentAt?: number;
|
|
1160
1162
|
numMessages: number;
|
|
@@ -1688,6 +1690,7 @@ export interface Form_required {
|
|
|
1688
1690
|
export interface Form_updatesDisabled {
|
|
1689
1691
|
}
|
|
1690
1692
|
export interface Form extends Form_readonly, Form_required, Form_updatesDisabled {
|
|
1693
|
+
gtmTag?: string;
|
|
1691
1694
|
ipAddressCustomField: string;
|
|
1692
1695
|
archivedAt?: Date | '';
|
|
1693
1696
|
displayTitle?: string;
|
|
@@ -2518,6 +2521,7 @@ export interface AppointmentBookingPage extends AppointmentBookingPage_readonly,
|
|
|
2518
2521
|
appointmentSlotsMaxHeight?: number;
|
|
2519
2522
|
includeRelatedContactTypes?: string[];
|
|
2520
2523
|
archivedAt?: Date | '';
|
|
2524
|
+
gtmTag?: string;
|
|
2521
2525
|
}
|
|
2522
2526
|
export interface CalendarEventRSVP_readonly extends ClientRecord {
|
|
2523
2527
|
creatorType: SessionType;
|
|
@@ -3922,6 +3926,7 @@ export type AutomationTriggerEvents = {
|
|
|
3922
3926
|
titles?: string[];
|
|
3923
3927
|
templateIds?: string[];
|
|
3924
3928
|
excludeTemplateIds?: string[];
|
|
3929
|
+
excludeCancelUpcomingEventsJourney?: boolean;
|
|
3925
3930
|
by?: '' | 'enduser' | 'user';
|
|
3926
3931
|
}, {}>;
|
|
3927
3932
|
'Appointment Rescheduled': AutomationTriggerEventBuilder<"Appointment Rescheduled", {
|
|
@@ -4296,6 +4301,7 @@ export interface TicketThreadComment_required {
|
|
|
4296
4301
|
enduserId: string;
|
|
4297
4302
|
public: boolean;
|
|
4298
4303
|
inbound: boolean;
|
|
4304
|
+
assignedTo?: string[];
|
|
4299
4305
|
}
|
|
4300
4306
|
export interface TicketThreadComment_updatesDisabled {
|
|
4301
4307
|
}
|
|
@@ -4482,13 +4488,10 @@ export type GroupMMSUserState = {
|
|
|
4482
4488
|
};
|
|
4483
4489
|
export interface GroupMMSConversation_readonly extends ClientRecord {
|
|
4484
4490
|
externalId: string;
|
|
4485
|
-
|
|
4491
|
+
destinations: string[];
|
|
4486
4492
|
messages: GroupMMSMessage[];
|
|
4493
|
+
phoneNumber: string;
|
|
4487
4494
|
title: string;
|
|
4488
|
-
userIds: string[];
|
|
4489
|
-
enduserIds: string[];
|
|
4490
|
-
destinations: string[];
|
|
4491
|
-
userStates: GroupMMSUserState[];
|
|
4492
4495
|
pinnedAt?: Date | '';
|
|
4493
4496
|
tags?: string[];
|
|
4494
4497
|
suggestedReply?: string;
|
|
@@ -4496,15 +4499,18 @@ export interface GroupMMSConversation_readonly extends ClientRecord {
|
|
|
4496
4499
|
[index: string]: Date | '';
|
|
4497
4500
|
};
|
|
4498
4501
|
hiddenForAll?: boolean;
|
|
4499
|
-
assignedTo?: string[];
|
|
4500
4502
|
}
|
|
4501
4503
|
export interface GroupMMSConversation_updatesDisabled {
|
|
4502
4504
|
}
|
|
4503
4505
|
export interface GroupMMSConversation_required {
|
|
4506
|
+
userIds: string[];
|
|
4507
|
+
userStates: GroupMMSUserState[];
|
|
4508
|
+
enduserIds: string[];
|
|
4504
4509
|
}
|
|
4505
4510
|
export interface GroupMMSConversation extends GroupMMSConversation_readonly, GroupMMSConversation_required, GroupMMSConversation_updatesDisabled {
|
|
4506
4511
|
markedUnreadForAll?: boolean;
|
|
4507
4512
|
inboxStatus?: string;
|
|
4513
|
+
assignedTo?: string[];
|
|
4508
4514
|
}
|
|
4509
4515
|
export type VitalComparisons = {
|
|
4510
4516
|
'Less Than': {
|