@tellescope/types-models 1.180.0 → 1.181.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 +13 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +13 -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 +13 -0
package/lib/cjs/index.d.ts
CHANGED
|
@@ -89,6 +89,7 @@ export type PortalSettings = {
|
|
|
89
89
|
};
|
|
90
90
|
communication?: {
|
|
91
91
|
allowEnduserInitiatedChat?: boolean;
|
|
92
|
+
allowChatCareTeamSelection?: boolean;
|
|
92
93
|
enduserInitiatedChatDefaultSubject?: string;
|
|
93
94
|
sendEmailNotificationsToEnduser?: boolean;
|
|
94
95
|
sendSMSNotificationsToEnduser?: boolean;
|
|
@@ -98,6 +99,8 @@ export type PortalSettings = {
|
|
|
98
99
|
};
|
|
99
100
|
documents?: {
|
|
100
101
|
hideMissingAnswers?: boolean;
|
|
102
|
+
outstandingFormsTitle?: string;
|
|
103
|
+
availableFormsTitle?: string;
|
|
101
104
|
};
|
|
102
105
|
};
|
|
103
106
|
export type WithLinkOpenTrackingIds = {
|
|
@@ -193,6 +196,7 @@ export type OrganizationSettings = {
|
|
|
193
196
|
requireObservationInvalidationReason?: boolean;
|
|
194
197
|
defaultHideFilesFromPortal?: boolean;
|
|
195
198
|
hideUnorderedFullscriptMeds?: boolean;
|
|
199
|
+
detailField?: string;
|
|
196
200
|
};
|
|
197
201
|
tickets?: {
|
|
198
202
|
defaultJourneyDueDateOffsetInMS?: number | '';
|
|
@@ -1039,6 +1043,7 @@ export interface Email extends Email_required, Email_readonly, Email_updatesDisa
|
|
|
1039
1043
|
canvasId?: string;
|
|
1040
1044
|
discussionRoomId?: string;
|
|
1041
1045
|
markedUnreadForAll?: boolean;
|
|
1046
|
+
inboxStatus?: string;
|
|
1042
1047
|
}
|
|
1043
1048
|
export interface SMSMessage_readonly extends ClientRecord {
|
|
1044
1049
|
delivered: boolean;
|
|
@@ -1095,6 +1100,7 @@ export interface SMSMessage extends SMSMessage_readonly, SMSMessage_required, SM
|
|
|
1095
1100
|
discussionRoomId?: string;
|
|
1096
1101
|
mediaURLs?: string[];
|
|
1097
1102
|
markedUnreadForAll?: boolean;
|
|
1103
|
+
inboxStatus?: string;
|
|
1098
1104
|
}
|
|
1099
1105
|
export type ChatRoomType = 'internal' | 'external' | 'Group Chat';
|
|
1100
1106
|
export interface ChatRoom_readonly extends ClientRecord {
|
|
@@ -1114,6 +1120,7 @@ export interface ChatRoom_updatesDisabled {
|
|
|
1114
1120
|
}
|
|
1115
1121
|
export interface ChatRoom extends ChatRoom_readonly, ChatRoom_required, ChatRoom_updatesDisabled {
|
|
1116
1122
|
markedUnreadForAll?: boolean;
|
|
1123
|
+
inboxStatus?: string;
|
|
1117
1124
|
description?: string;
|
|
1118
1125
|
type?: ChatRoomType;
|
|
1119
1126
|
userIds?: string[];
|
|
@@ -2131,6 +2138,8 @@ export interface CalendarEvent_required {
|
|
|
2131
2138
|
export interface CalendarEvent_updatesDisabled {
|
|
2132
2139
|
}
|
|
2133
2140
|
export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_required, CalendarEvent_updatesDisabled {
|
|
2141
|
+
actualDuration?: number;
|
|
2142
|
+
dontSyncToCanvas?: boolean;
|
|
2134
2143
|
reason?: string;
|
|
2135
2144
|
cancelReason?: string;
|
|
2136
2145
|
attendees: (UserIdentity & {
|
|
@@ -2300,6 +2309,7 @@ export interface CalendarEventTemplate_required {
|
|
|
2300
2309
|
export interface CalendarEventTemplate_updatesDisabled {
|
|
2301
2310
|
}
|
|
2302
2311
|
export interface CalendarEventTemplate extends CalendarEventTemplate_readonly, CalendarEventTemplate_required, CalendarEventTemplate_updatesDisabled {
|
|
2312
|
+
dontSyncToCanvas?: boolean;
|
|
2303
2313
|
archivedAt?: Date | '';
|
|
2304
2314
|
type?: string;
|
|
2305
2315
|
enableVideoCall?: boolean;
|
|
@@ -3249,6 +3259,7 @@ export interface PhoneCall_updatesDisabled {
|
|
|
3249
3259
|
}
|
|
3250
3260
|
export interface PhoneCall extends PhoneCall_readonly, PhoneCall_required, PhoneCall_updatesDisabled {
|
|
3251
3261
|
markedUnreadForAll?: boolean;
|
|
3262
|
+
inboxStatus?: string;
|
|
3252
3263
|
enduserId: string;
|
|
3253
3264
|
externalId: string;
|
|
3254
3265
|
from: string;
|
|
@@ -4153,6 +4164,7 @@ export interface TicketThreadComment extends TicketThreadComment_readonly, Ticke
|
|
|
4153
4164
|
ticketIds?: string[];
|
|
4154
4165
|
tags?: string[];
|
|
4155
4166
|
markedUnreadForAll?: boolean;
|
|
4167
|
+
inboxStatus?: string;
|
|
4156
4168
|
}
|
|
4157
4169
|
export interface Configuration_readonly extends ClientRecord {
|
|
4158
4170
|
}
|
|
@@ -4335,6 +4347,7 @@ export interface GroupMMSConversation_required {
|
|
|
4335
4347
|
}
|
|
4336
4348
|
export interface GroupMMSConversation extends GroupMMSConversation_readonly, GroupMMSConversation_required, GroupMMSConversation_updatesDisabled {
|
|
4337
4349
|
markedUnreadForAll?: boolean;
|
|
4350
|
+
inboxStatus?: string;
|
|
4338
4351
|
}
|
|
4339
4352
|
export type VitalComparisons = {
|
|
4340
4353
|
'Less Than': {
|