@tellescope/types-models 1.143.0 → 1.144.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 +17 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +17 -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 +9 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -176,6 +176,7 @@ export type OrganizationSettings = {
|
|
|
176
176
|
matchEmailAndNames?: boolean;
|
|
177
177
|
hideNotesFromComposeForm?: boolean;
|
|
178
178
|
showSalesforceId?: boolean;
|
|
179
|
+
loopQueueCallSound?: boolean;
|
|
179
180
|
};
|
|
180
181
|
tickets?: {
|
|
181
182
|
defaultJourneyDueDateOffsetInMS?: number | '';
|
|
@@ -3357,6 +3358,21 @@ export type EnduserProfileViewBlocks = {
|
|
|
3357
3358
|
"Zus Encounters": EnduserProfileViewBlockBuilder<"Zus Encounters", {
|
|
3358
3359
|
title: string;
|
|
3359
3360
|
}>;
|
|
3361
|
+
"Files": EnduserProfileViewBlockBuilder<"Files", {
|
|
3362
|
+
title: string;
|
|
3363
|
+
}>;
|
|
3364
|
+
"Tickets": EnduserProfileViewBlockBuilder<"Tickets", {
|
|
3365
|
+
title: string;
|
|
3366
|
+
}>;
|
|
3367
|
+
"Events": EnduserProfileViewBlockBuilder<"Events", {
|
|
3368
|
+
title: string;
|
|
3369
|
+
}>;
|
|
3370
|
+
"Labs": EnduserProfileViewBlockBuilder<"Labs", {
|
|
3371
|
+
title: string;
|
|
3372
|
+
}>;
|
|
3373
|
+
"Medications": EnduserProfileViewBlockBuilder<"Medications", {
|
|
3374
|
+
title: string;
|
|
3375
|
+
}>;
|
|
3360
3376
|
};
|
|
3361
3377
|
export type EnduserProfileViewBlockType = keyof EnduserProfileViewBlocks;
|
|
3362
3378
|
export type EnduserProfileViewBlock = EnduserProfileViewBlocks[EnduserProfileViewBlockType];
|
|
@@ -3369,6 +3385,7 @@ export interface EnduserProfileView_required {
|
|
|
3369
3385
|
export interface EnduserProfileView_updatesDisabled {
|
|
3370
3386
|
}
|
|
3371
3387
|
export interface EnduserProfileView extends EnduserProfileView_readonly, EnduserProfileView_required, EnduserProfileView_updatesDisabled {
|
|
3388
|
+
showCompose?: boolean;
|
|
3372
3389
|
}
|
|
3373
3390
|
export type ListOfStringsWithQualifier = {
|
|
3374
3391
|
qualifier: ListQueryQualifier;
|