@tellescope/types-models 1.179.0 → 1.180.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
|
@@ -192,6 +192,7 @@ export type OrganizationSettings = {
|
|
|
192
192
|
showDeviceOrders?: boolean;
|
|
193
193
|
requireObservationInvalidationReason?: boolean;
|
|
194
194
|
defaultHideFilesFromPortal?: boolean;
|
|
195
|
+
hideUnorderedFullscriptMeds?: boolean;
|
|
195
196
|
};
|
|
196
197
|
tickets?: {
|
|
197
198
|
defaultJourneyDueDateOffsetInMS?: number | '';
|
|
@@ -401,6 +402,8 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
401
402
|
chargebeeEnvironments?: string[];
|
|
402
403
|
customNotificationTypes?: string[];
|
|
403
404
|
hasConnectedMedplum?: boolean;
|
|
405
|
+
customPortalLoginEmailSubject?: string;
|
|
406
|
+
customPortalLoginEmailHTML?: string;
|
|
404
407
|
}
|
|
405
408
|
export type OrganizationTheme = {
|
|
406
409
|
name: string;
|
|
@@ -1035,6 +1038,7 @@ export interface Email extends Email_required, Email_readonly, Email_updatesDisa
|
|
|
1035
1038
|
assignedTo?: string[];
|
|
1036
1039
|
canvasId?: string;
|
|
1037
1040
|
discussionRoomId?: string;
|
|
1041
|
+
markedUnreadForAll?: boolean;
|
|
1038
1042
|
}
|
|
1039
1043
|
export interface SMSMessage_readonly extends ClientRecord {
|
|
1040
1044
|
delivered: boolean;
|
|
@@ -1090,6 +1094,7 @@ export interface SMSMessage extends SMSMessage_readonly, SMSMessage_required, SM
|
|
|
1090
1094
|
canvasId?: string;
|
|
1091
1095
|
discussionRoomId?: string;
|
|
1092
1096
|
mediaURLs?: string[];
|
|
1097
|
+
markedUnreadForAll?: boolean;
|
|
1093
1098
|
}
|
|
1094
1099
|
export type ChatRoomType = 'internal' | 'external' | 'Group Chat';
|
|
1095
1100
|
export interface ChatRoom_readonly extends ClientRecord {
|
|
@@ -1108,6 +1113,7 @@ export interface ChatRoom_required {
|
|
|
1108
1113
|
export interface ChatRoom_updatesDisabled {
|
|
1109
1114
|
}
|
|
1110
1115
|
export interface ChatRoom extends ChatRoom_readonly, ChatRoom_required, ChatRoom_updatesDisabled {
|
|
1116
|
+
markedUnreadForAll?: boolean;
|
|
1111
1117
|
description?: string;
|
|
1112
1118
|
type?: ChatRoomType;
|
|
1113
1119
|
userIds?: string[];
|
|
@@ -1131,6 +1137,7 @@ export interface ChatRoom extends ChatRoom_readonly, ChatRoom_required, ChatRoom
|
|
|
1131
1137
|
source?: string;
|
|
1132
1138
|
externalId?: string;
|
|
1133
1139
|
references?: RelatedRecord[];
|
|
1140
|
+
journeyId?: string;
|
|
1134
1141
|
}
|
|
1135
1142
|
export type ChatAttachmentType = 'image' | 'video' | 'file' | string;
|
|
1136
1143
|
export type ChatAttachment = {
|
|
@@ -1180,6 +1187,7 @@ export interface ChatMessage extends ChatMessage_readonly, ChatMessage_required,
|
|
|
1180
1187
|
references?: RelatedRecord[];
|
|
1181
1188
|
sendAt?: Date | '';
|
|
1182
1189
|
isDraft?: boolean;
|
|
1190
|
+
journeyId?: string;
|
|
1183
1191
|
}
|
|
1184
1192
|
export type MessageTemplateType = 'enduser' | 'Reply' | 'team';
|
|
1185
1193
|
export type MessageTemplateMode = 'html' | 'richtext';
|
|
@@ -3240,6 +3248,7 @@ export interface PhoneCall_required {
|
|
|
3240
3248
|
export interface PhoneCall_updatesDisabled {
|
|
3241
3249
|
}
|
|
3242
3250
|
export interface PhoneCall extends PhoneCall_readonly, PhoneCall_required, PhoneCall_updatesDisabled {
|
|
3251
|
+
markedUnreadForAll?: boolean;
|
|
3243
3252
|
enduserId: string;
|
|
3244
3253
|
externalId: string;
|
|
3245
3254
|
from: string;
|
|
@@ -4143,6 +4152,7 @@ export interface TicketThreadComment extends TicketThreadComment_readonly, Ticke
|
|
|
4143
4152
|
hiddenForAll?: boolean;
|
|
4144
4153
|
ticketIds?: string[];
|
|
4145
4154
|
tags?: string[];
|
|
4155
|
+
markedUnreadForAll?: boolean;
|
|
4146
4156
|
}
|
|
4147
4157
|
export interface Configuration_readonly extends ClientRecord {
|
|
4148
4158
|
}
|
|
@@ -4324,6 +4334,7 @@ export interface GroupMMSConversation_updatesDisabled {
|
|
|
4324
4334
|
export interface GroupMMSConversation_required {
|
|
4325
4335
|
}
|
|
4326
4336
|
export interface GroupMMSConversation extends GroupMMSConversation_readonly, GroupMMSConversation_required, GroupMMSConversation_updatesDisabled {
|
|
4337
|
+
markedUnreadForAll?: boolean;
|
|
4327
4338
|
}
|
|
4328
4339
|
export type VitalComparisons = {
|
|
4329
4340
|
'Less Than': {
|