@tellescope/types-models 1.251.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 +12 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +12 -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 +10 -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;
|
|
@@ -2091,6 +2097,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
|
|
|
2091
2097
|
score: string;
|
|
2092
2098
|
externalId: string;
|
|
2093
2099
|
}[];
|
|
2100
|
+
syncAnswersAsHtml?: boolean;
|
|
2094
2101
|
hideAfterUnsubmittedInMS?: number;
|
|
2095
2102
|
hideFromCompose?: boolean;
|
|
2096
2103
|
hideFromBulkSubmission?: boolean;
|
|
@@ -3357,9 +3364,11 @@ export type BelugaAutoRxPatientPreferenceItem = {
|
|
|
3357
3364
|
medId: string;
|
|
3358
3365
|
};
|
|
3359
3366
|
export type BelugaAutoRxAutomationAction = AutomationActionBuilder<'belugaAutoRx', {
|
|
3367
|
+
formId: string;
|
|
3360
3368
|
patientPreference?: BelugaAutoRxPatientPreferenceItem;
|
|
3361
3369
|
pharmacyId?: string;
|
|
3362
3370
|
useOrganizationMapping?: boolean;
|
|
3371
|
+
customFieldName?: string;
|
|
3363
3372
|
}>;
|
|
3364
3373
|
export type BelugaUpdateVisitPatientPreferenceItem = {
|
|
3365
3374
|
name: string;
|
|
@@ -3370,11 +3379,14 @@ export type BelugaUpdateVisitPatientPreferenceItem = {
|
|
|
3370
3379
|
medId: string;
|
|
3371
3380
|
};
|
|
3372
3381
|
export type BelugaUpdateVisitAutomationAction = AutomationActionBuilder<'belugaUpdateVisit', {
|
|
3382
|
+
formId: string;
|
|
3373
3383
|
patientPreferences?: BelugaUpdateVisitPatientPreferenceItem[];
|
|
3374
3384
|
pharmacyId?: string;
|
|
3375
3385
|
useOrganizationMapping?: boolean;
|
|
3386
|
+
customFieldName?: string;
|
|
3376
3387
|
}>;
|
|
3377
3388
|
export type BelugaAutomationMappingEntry = {
|
|
3389
|
+
title?: string;
|
|
3378
3390
|
enduserCondition: Record<string, any>;
|
|
3379
3391
|
patientPreferences: BelugaUpdateVisitPatientPreferenceItem[];
|
|
3380
3392
|
pharmacyId: string;
|