@tellescope/types-models 1.180.0 → 1.181.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 +11 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +11 -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 +11 -0
package/lib/cjs/index.d.ts
CHANGED
|
@@ -98,6 +98,8 @@ export type PortalSettings = {
|
|
|
98
98
|
};
|
|
99
99
|
documents?: {
|
|
100
100
|
hideMissingAnswers?: boolean;
|
|
101
|
+
outstandingFormsTitle?: string;
|
|
102
|
+
availableFormsTitle?: string;
|
|
101
103
|
};
|
|
102
104
|
};
|
|
103
105
|
export type WithLinkOpenTrackingIds = {
|
|
@@ -1039,6 +1041,7 @@ export interface Email extends Email_required, Email_readonly, Email_updatesDisa
|
|
|
1039
1041
|
canvasId?: string;
|
|
1040
1042
|
discussionRoomId?: string;
|
|
1041
1043
|
markedUnreadForAll?: boolean;
|
|
1044
|
+
inboxStatus?: string;
|
|
1042
1045
|
}
|
|
1043
1046
|
export interface SMSMessage_readonly extends ClientRecord {
|
|
1044
1047
|
delivered: boolean;
|
|
@@ -1095,6 +1098,7 @@ export interface SMSMessage extends SMSMessage_readonly, SMSMessage_required, SM
|
|
|
1095
1098
|
discussionRoomId?: string;
|
|
1096
1099
|
mediaURLs?: string[];
|
|
1097
1100
|
markedUnreadForAll?: boolean;
|
|
1101
|
+
inboxStatus?: string;
|
|
1098
1102
|
}
|
|
1099
1103
|
export type ChatRoomType = 'internal' | 'external' | 'Group Chat';
|
|
1100
1104
|
export interface ChatRoom_readonly extends ClientRecord {
|
|
@@ -1114,6 +1118,7 @@ export interface ChatRoom_updatesDisabled {
|
|
|
1114
1118
|
}
|
|
1115
1119
|
export interface ChatRoom extends ChatRoom_readonly, ChatRoom_required, ChatRoom_updatesDisabled {
|
|
1116
1120
|
markedUnreadForAll?: boolean;
|
|
1121
|
+
inboxStatus?: string;
|
|
1117
1122
|
description?: string;
|
|
1118
1123
|
type?: ChatRoomType;
|
|
1119
1124
|
userIds?: string[];
|
|
@@ -2131,6 +2136,8 @@ export interface CalendarEvent_required {
|
|
|
2131
2136
|
export interface CalendarEvent_updatesDisabled {
|
|
2132
2137
|
}
|
|
2133
2138
|
export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_required, CalendarEvent_updatesDisabled {
|
|
2139
|
+
actualDuration?: number;
|
|
2140
|
+
dontSyncToCanvas?: boolean;
|
|
2134
2141
|
reason?: string;
|
|
2135
2142
|
cancelReason?: string;
|
|
2136
2143
|
attendees: (UserIdentity & {
|
|
@@ -2300,6 +2307,7 @@ export interface CalendarEventTemplate_required {
|
|
|
2300
2307
|
export interface CalendarEventTemplate_updatesDisabled {
|
|
2301
2308
|
}
|
|
2302
2309
|
export interface CalendarEventTemplate extends CalendarEventTemplate_readonly, CalendarEventTemplate_required, CalendarEventTemplate_updatesDisabled {
|
|
2310
|
+
dontSyncToCanvas?: boolean;
|
|
2303
2311
|
archivedAt?: Date | '';
|
|
2304
2312
|
type?: string;
|
|
2305
2313
|
enableVideoCall?: boolean;
|
|
@@ -3249,6 +3257,7 @@ export interface PhoneCall_updatesDisabled {
|
|
|
3249
3257
|
}
|
|
3250
3258
|
export interface PhoneCall extends PhoneCall_readonly, PhoneCall_required, PhoneCall_updatesDisabled {
|
|
3251
3259
|
markedUnreadForAll?: boolean;
|
|
3260
|
+
inboxStatus?: string;
|
|
3252
3261
|
enduserId: string;
|
|
3253
3262
|
externalId: string;
|
|
3254
3263
|
from: string;
|
|
@@ -4153,6 +4162,7 @@ export interface TicketThreadComment extends TicketThreadComment_readonly, Ticke
|
|
|
4153
4162
|
ticketIds?: string[];
|
|
4154
4163
|
tags?: string[];
|
|
4155
4164
|
markedUnreadForAll?: boolean;
|
|
4165
|
+
inboxStatus?: string;
|
|
4156
4166
|
}
|
|
4157
4167
|
export interface Configuration_readonly extends ClientRecord {
|
|
4158
4168
|
}
|
|
@@ -4335,6 +4345,7 @@ export interface GroupMMSConversation_required {
|
|
|
4335
4345
|
}
|
|
4336
4346
|
export interface GroupMMSConversation extends GroupMMSConversation_readonly, GroupMMSConversation_required, GroupMMSConversation_updatesDisabled {
|
|
4337
4347
|
markedUnreadForAll?: boolean;
|
|
4348
|
+
inboxStatus?: string;
|
|
4338
4349
|
}
|
|
4339
4350
|
export type VitalComparisons = {
|
|
4340
4351
|
'Less Than': {
|