@tellescope/types-models 1.252.0 → 1.252.2
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 +14 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +14 -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 +12 -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;
|
|
@@ -400,10 +402,15 @@ export interface Organization_required {
|
|
|
400
402
|
export interface Organization_updatesDisabled {
|
|
401
403
|
subdomain: string;
|
|
402
404
|
}
|
|
405
|
+
export interface OrganizationPlan {
|
|
406
|
+
type?: string;
|
|
407
|
+
}
|
|
403
408
|
export interface Organization extends Organization_readonly, Organization_required, Organization_updatesDisabled {
|
|
404
409
|
inboxThreadsBuiltFrom?: Date | '';
|
|
405
410
|
inboxThreadsBuiltTo?: Date | '';
|
|
406
411
|
bedrockAIAllowed?: boolean;
|
|
412
|
+
plan?: OrganizationPlan;
|
|
413
|
+
onboardingStatus?: string;
|
|
407
414
|
subdomains?: string[];
|
|
408
415
|
owner?: string;
|
|
409
416
|
timezone?: Timezone;
|
|
@@ -767,6 +774,9 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
|
|
|
767
774
|
notificationPreferences?: {
|
|
768
775
|
[index: string]: NotificationPreference;
|
|
769
776
|
};
|
|
777
|
+
portalSettings?: {
|
|
778
|
+
[key: string]: string | boolean;
|
|
779
|
+
};
|
|
770
780
|
notificationEmailsDisabled?: boolean;
|
|
771
781
|
disableIncomingPhoneCalls?: boolean;
|
|
772
782
|
disableTicketAutoAssignment?: boolean;
|
|
@@ -1589,6 +1599,7 @@ export type TicketActions = {
|
|
|
1589
1599
|
templateId: string;
|
|
1590
1600
|
chatId?: string;
|
|
1591
1601
|
chatRoomId?: string;
|
|
1602
|
+
enableChatReply?: boolean;
|
|
1592
1603
|
}>;
|
|
1593
1604
|
};
|
|
1594
1605
|
export type TicketActionType = keyof TicketActions;
|
|
@@ -3362,6 +3373,7 @@ export type BelugaAutoRxAutomationAction = AutomationActionBuilder<'belugaAutoRx
|
|
|
3362
3373
|
patientPreference?: BelugaAutoRxPatientPreferenceItem;
|
|
3363
3374
|
pharmacyId?: string;
|
|
3364
3375
|
useOrganizationMapping?: boolean;
|
|
3376
|
+
customFieldName?: string;
|
|
3365
3377
|
}>;
|
|
3366
3378
|
export type BelugaUpdateVisitPatientPreferenceItem = {
|
|
3367
3379
|
name: string;
|
|
@@ -3376,8 +3388,10 @@ export type BelugaUpdateVisitAutomationAction = AutomationActionBuilder<'belugaU
|
|
|
3376
3388
|
patientPreferences?: BelugaUpdateVisitPatientPreferenceItem[];
|
|
3377
3389
|
pharmacyId?: string;
|
|
3378
3390
|
useOrganizationMapping?: boolean;
|
|
3391
|
+
customFieldName?: string;
|
|
3379
3392
|
}>;
|
|
3380
3393
|
export type BelugaAutomationMappingEntry = {
|
|
3394
|
+
title?: string;
|
|
3381
3395
|
enduserCondition: Record<string, any>;
|
|
3382
3396
|
patientPreferences: BelugaUpdateVisitPatientPreferenceItem[];
|
|
3383
3397
|
pharmacyId: string;
|