@tellescope/types-models 1.146.0 → 1.148.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 +12 -2
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +12 -2
- 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 -2
package/lib/cjs/index.d.ts
CHANGED
|
@@ -177,6 +177,8 @@ export type OrganizationSettings = {
|
|
|
177
177
|
hideNotesFromComposeForm?: boolean;
|
|
178
178
|
showSalesforceId?: boolean;
|
|
179
179
|
loopQueueCallSound?: boolean;
|
|
180
|
+
showOrdersInSidebar?: boolean;
|
|
181
|
+
showDiagnoses?: boolean;
|
|
180
182
|
};
|
|
181
183
|
tickets?: {
|
|
182
184
|
defaultJourneyDueDateOffsetInMS?: number | '';
|
|
@@ -623,6 +625,7 @@ export type EnduserInsurance = {
|
|
|
623
625
|
groupNumber?: string;
|
|
624
626
|
};
|
|
625
627
|
export type EnduserDiagnosis = {
|
|
628
|
+
id?: string;
|
|
626
629
|
externalId?: string;
|
|
627
630
|
active?: boolean;
|
|
628
631
|
start?: string;
|
|
@@ -630,6 +633,7 @@ export type EnduserDiagnosis = {
|
|
|
630
633
|
code?: string;
|
|
631
634
|
display?: string;
|
|
632
635
|
source?: string;
|
|
636
|
+
references?: RelatedRecord[];
|
|
633
637
|
};
|
|
634
638
|
export type TellescopeGender = "Male" | "Female" | "Other" | "Unknown";
|
|
635
639
|
export interface Enduser_readonly extends UserActivityInfo, ClientRecord, EnduserEngagementTimestamps {
|
|
@@ -3367,8 +3371,9 @@ export type EnduserProfileViewBlocks = {
|
|
|
3367
3371
|
}>;
|
|
3368
3372
|
"Form Responses": EnduserProfileViewBlockBuilder<"Form Responses", {
|
|
3369
3373
|
title: string;
|
|
3370
|
-
formId
|
|
3371
|
-
fieldIds
|
|
3374
|
+
formId?: string;
|
|
3375
|
+
fieldIds?: string[];
|
|
3376
|
+
showAllForms?: boolean;
|
|
3372
3377
|
}>;
|
|
3373
3378
|
"Zus Encounters": EnduserProfileViewBlockBuilder<"Zus Encounters", {
|
|
3374
3379
|
title: string;
|
|
@@ -3404,6 +3409,8 @@ export interface EnduserProfileView_updatesDisabled {
|
|
|
3404
3409
|
}
|
|
3405
3410
|
export interface EnduserProfileView extends EnduserProfileView_readonly, EnduserProfileView_required, EnduserProfileView_updatesDisabled {
|
|
3406
3411
|
showCompose?: boolean;
|
|
3412
|
+
defaultForUserIds?: string[];
|
|
3413
|
+
defaultForRoles?: string[];
|
|
3407
3414
|
}
|
|
3408
3415
|
export type ListOfStringsWithQualifier = {
|
|
3409
3416
|
qualifier: ListQueryQualifier;
|
|
@@ -3443,6 +3450,9 @@ export type AutomationTriggerActions = {
|
|
|
3443
3450
|
"Zus: Delete Enrollment": AutomationTriggerActionBuilder<'Zus: Delete Enrollment', {
|
|
3444
3451
|
packageId: string;
|
|
3445
3452
|
}>;
|
|
3453
|
+
"Remove Care Team": AutomationTriggerActionBuilder<'Remove Care Team', {
|
|
3454
|
+
tags: ListOfStringsWithQualifier;
|
|
3455
|
+
}>;
|
|
3446
3456
|
};
|
|
3447
3457
|
export type AutomationTriggerActionType = keyof AutomationTriggerActions;
|
|
3448
3458
|
export type AutomationTriggerAction = AutomationTriggerActions[AutomationTriggerActionType];
|