@tellescope/types-models 1.172.0 → 1.173.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 +14 -4
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +14 -4
- 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 +11 -4
package/lib/cjs/index.d.ts
CHANGED
|
@@ -758,6 +758,7 @@ export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_upd
|
|
|
758
758
|
lockedFromPortal?: boolean;
|
|
759
759
|
chargebeeEnvironment?: string;
|
|
760
760
|
chargebeeId?: string;
|
|
761
|
+
healthieSyncError?: string;
|
|
761
762
|
}
|
|
762
763
|
export interface EnduserCustomType_readonly extends ClientRecord {
|
|
763
764
|
}
|
|
@@ -997,7 +998,7 @@ export interface Email extends Email_required, Email_readonly, Email_updatesDisa
|
|
|
997
998
|
isBounce?: boolean;
|
|
998
999
|
via?: string;
|
|
999
1000
|
readBy?: {
|
|
1000
|
-
[index: string]: Date;
|
|
1001
|
+
[index: string]: Date | '';
|
|
1001
1002
|
};
|
|
1002
1003
|
journeyContext?: JourneyContext;
|
|
1003
1004
|
sendAt?: Date | '';
|
|
@@ -1053,7 +1054,7 @@ export interface SMSMessage extends SMSMessage_readonly, SMSMessage_required, SM
|
|
|
1053
1054
|
isAutoreply?: boolean;
|
|
1054
1055
|
userId?: string;
|
|
1055
1056
|
readBy?: {
|
|
1056
|
-
[index: string]: Date;
|
|
1057
|
+
[index: string]: Date | '';
|
|
1057
1058
|
};
|
|
1058
1059
|
hiddenBy?: {
|
|
1059
1060
|
[index: string]: Date | '';
|
|
@@ -1088,6 +1089,7 @@ export interface ChatRoom_readonly extends ClientRecord {
|
|
|
1088
1089
|
}
|
|
1089
1090
|
export type ChatRoomUserInfo = {
|
|
1090
1091
|
unreadCount: number;
|
|
1092
|
+
markedUnread?: boolean;
|
|
1091
1093
|
};
|
|
1092
1094
|
export interface ChatRoom_required {
|
|
1093
1095
|
}
|
|
@@ -1147,7 +1149,7 @@ export interface ChatMessage extends ChatMessage_readonly, ChatMessage_required,
|
|
|
1147
1149
|
senderId: string | null;
|
|
1148
1150
|
html?: string;
|
|
1149
1151
|
readBy?: {
|
|
1150
|
-
[index: string]: Date;
|
|
1152
|
+
[index: string]: Date | '';
|
|
1151
1153
|
};
|
|
1152
1154
|
hiddenBy?: {
|
|
1153
1155
|
[index: string]: Date | '';
|
|
@@ -1423,6 +1425,10 @@ export type TableInputChoices = {
|
|
|
1423
1425
|
choices: string[];
|
|
1424
1426
|
}>;
|
|
1425
1427
|
Date: TableChoiceBuilder<'Date', {}>;
|
|
1428
|
+
Database: TableChoiceBuilder<'Database', {
|
|
1429
|
+
databaseId: string;
|
|
1430
|
+
databaseLabel: string;
|
|
1431
|
+
}>;
|
|
1426
1432
|
};
|
|
1427
1433
|
export type TableInputChoiceType = keyof TableInputChoices;
|
|
1428
1434
|
export type TableInputChoice = TableInputChoices[TableInputChoiceType];
|
|
@@ -3320,6 +3326,7 @@ export type AnalyticsQueryFilterForType = {
|
|
|
3320
3326
|
};
|
|
3321
3327
|
born?: DateRange;
|
|
3322
3328
|
tags?: ListOfStringsWithQualifier;
|
|
3329
|
+
entityTypes?: string[];
|
|
3323
3330
|
};
|
|
3324
3331
|
"Calendar Events": {
|
|
3325
3332
|
userIds?: string[];
|
|
@@ -3940,6 +3947,7 @@ export type PhoneTreeActions = {
|
|
|
3940
3947
|
playback?: Partial<PhonePlayback>;
|
|
3941
3948
|
duration?: number;
|
|
3942
3949
|
addToCareTeam?: boolean;
|
|
3950
|
+
dialRecentAgent?: boolean;
|
|
3943
3951
|
}>;
|
|
3944
3952
|
"Select Care Team Member": PhoneTreeActionBuilder<"Select Care Team Member", {
|
|
3945
3953
|
playback?: Partial<PhonePlayback>;
|
|
@@ -3952,6 +3960,7 @@ export type PhoneTreeActions = {
|
|
|
3952
3960
|
timezone?: Timezone;
|
|
3953
3961
|
weeklyAvailabilities?: WeeklyAvailability[];
|
|
3954
3962
|
hasCareTeam?: boolean;
|
|
3963
|
+
hasOneCareTeamMember?: boolean;
|
|
3955
3964
|
}>;
|
|
3956
3965
|
'Add to Queue': PhoneTreeActionBuilder<"Add to Queue", {
|
|
3957
3966
|
queueId: string;
|
|
@@ -4041,7 +4050,7 @@ export interface TicketThreadComment_readonly extends ClientRecord {
|
|
|
4041
4050
|
source?: string;
|
|
4042
4051
|
references?: RelatedRecord[];
|
|
4043
4052
|
readBy?: {
|
|
4044
|
-
[index: string]: Date;
|
|
4053
|
+
[index: string]: Date | '';
|
|
4045
4054
|
};
|
|
4046
4055
|
timestamp?: Date;
|
|
4047
4056
|
group?: string;
|
|
@@ -4231,6 +4240,7 @@ export type GroupMMSMessage = {
|
|
|
4231
4240
|
export type GroupMMSUserState = {
|
|
4232
4241
|
id: string;
|
|
4233
4242
|
numUnread: number;
|
|
4243
|
+
markedUnread?: boolean;
|
|
4234
4244
|
};
|
|
4235
4245
|
export interface GroupMMSConversation_readonly extends ClientRecord {
|
|
4236
4246
|
externalId: string;
|