@tellescope/types-models 1.252.0 → 1.252.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 +9 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +9 -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 +7 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -257,6 +257,8 @@ export type OrganizationSettings = {
|
|
|
257
257
|
disableSnooze?: boolean;
|
|
258
258
|
showCommunications?: boolean;
|
|
259
259
|
showJourneys?: boolean;
|
|
260
|
+
showMedications?: boolean;
|
|
261
|
+
showObservations?: boolean;
|
|
260
262
|
requireDueDate?: boolean;
|
|
261
263
|
allowArchival?: boolean;
|
|
262
264
|
returnToTicketsList?: boolean;
|
|
@@ -767,6 +769,9 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
|
|
|
767
769
|
notificationPreferences?: {
|
|
768
770
|
[index: string]: NotificationPreference;
|
|
769
771
|
};
|
|
772
|
+
portalSettings?: {
|
|
773
|
+
[key: string]: string | boolean;
|
|
774
|
+
};
|
|
770
775
|
notificationEmailsDisabled?: boolean;
|
|
771
776
|
disableIncomingPhoneCalls?: boolean;
|
|
772
777
|
disableTicketAutoAssignment?: boolean;
|
|
@@ -1589,6 +1594,7 @@ export type TicketActions = {
|
|
|
1589
1594
|
templateId: string;
|
|
1590
1595
|
chatId?: string;
|
|
1591
1596
|
chatRoomId?: string;
|
|
1597
|
+
enableChatReply?: boolean;
|
|
1592
1598
|
}>;
|
|
1593
1599
|
};
|
|
1594
1600
|
export type TicketActionType = keyof TicketActions;
|
|
@@ -3362,6 +3368,7 @@ export type BelugaAutoRxAutomationAction = AutomationActionBuilder<'belugaAutoRx
|
|
|
3362
3368
|
patientPreference?: BelugaAutoRxPatientPreferenceItem;
|
|
3363
3369
|
pharmacyId?: string;
|
|
3364
3370
|
useOrganizationMapping?: boolean;
|
|
3371
|
+
customFieldName?: string;
|
|
3365
3372
|
}>;
|
|
3366
3373
|
export type BelugaUpdateVisitPatientPreferenceItem = {
|
|
3367
3374
|
name: string;
|
|
@@ -3376,8 +3383,10 @@ export type BelugaUpdateVisitAutomationAction = AutomationActionBuilder<'belugaU
|
|
|
3376
3383
|
patientPreferences?: BelugaUpdateVisitPatientPreferenceItem[];
|
|
3377
3384
|
pharmacyId?: string;
|
|
3378
3385
|
useOrganizationMapping?: boolean;
|
|
3386
|
+
customFieldName?: string;
|
|
3379
3387
|
}>;
|
|
3380
3388
|
export type BelugaAutomationMappingEntry = {
|
|
3389
|
+
title?: string;
|
|
3381
3390
|
enduserCondition: Record<string, any>;
|
|
3382
3391
|
patientPreferences: BelugaUpdateVisitPatientPreferenceItem[];
|
|
3383
3392
|
pharmacyId: string;
|