@tellescope/types-models 1.181.1 → 1.183.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 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +17 -1
- 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
|
@@ -197,6 +197,7 @@ export type OrganizationSettings = {
|
|
|
197
197
|
defaultHideFilesFromPortal?: boolean;
|
|
198
198
|
hideUnorderedFullscriptMeds?: boolean;
|
|
199
199
|
detailField?: string;
|
|
200
|
+
showDownloadCallRecordings?: boolean;
|
|
200
201
|
};
|
|
201
202
|
tickets?: {
|
|
202
203
|
defaultJourneyDueDateOffsetInMS?: number | '';
|
|
@@ -237,6 +238,9 @@ export type OrganizationSettings = {
|
|
|
237
238
|
integrations?: {
|
|
238
239
|
vitalLabOrderPhysicianOptional?: boolean;
|
|
239
240
|
};
|
|
241
|
+
interface?: {
|
|
242
|
+
dontPersistSearches?: boolean;
|
|
243
|
+
};
|
|
240
244
|
};
|
|
241
245
|
export type OrganizationLimits = {
|
|
242
246
|
[K in ModelName]?: number;
|
|
@@ -408,6 +412,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
408
412
|
hasConnectedMedplum?: boolean;
|
|
409
413
|
customPortalLoginEmailSubject?: string;
|
|
410
414
|
customPortalLoginEmailHTML?: string;
|
|
415
|
+
customerIOFields?: string[];
|
|
411
416
|
}
|
|
412
417
|
export type OrganizationTheme = {
|
|
413
418
|
name: string;
|
|
@@ -536,6 +541,7 @@ export interface User_updatesDisabled {
|
|
|
536
541
|
verifiedEmail: boolean;
|
|
537
542
|
}
|
|
538
543
|
export interface User extends User_required, User_readonly, User_updatesDisabled {
|
|
544
|
+
defaultLocationId?: string;
|
|
539
545
|
termsSigned?: Date;
|
|
540
546
|
termsVersion?: string;
|
|
541
547
|
externalId?: string;
|
|
@@ -1281,6 +1287,11 @@ export type TicketActions = {
|
|
|
1281
1287
|
templateId: string;
|
|
1282
1288
|
emailId?: string;
|
|
1283
1289
|
}>;
|
|
1290
|
+
"Send Chat": TicketActionBuilder<'Send Chat', {
|
|
1291
|
+
templateId: string;
|
|
1292
|
+
chatId?: string;
|
|
1293
|
+
chatRoomId?: string;
|
|
1294
|
+
}>;
|
|
1284
1295
|
};
|
|
1285
1296
|
export type TicketActionType = keyof TicketActions;
|
|
1286
1297
|
export type TicketAction = TicketActions[TicketActionType];
|
|
@@ -1544,6 +1555,7 @@ export type FormFieldOptions = FormFieldValidation & {
|
|
|
1544
1555
|
autoUploadFiles?: boolean;
|
|
1545
1556
|
chargebeeEnvironment?: string;
|
|
1546
1557
|
chargebeePlanId?: string;
|
|
1558
|
+
relatedContactTypes?: string[];
|
|
1547
1559
|
};
|
|
1548
1560
|
export type MultipleChoiceOptions = Pick<FormFieldOptions, 'choices' | 'radio' | 'other'>;
|
|
1549
1561
|
export type FormFieldCalloutConditionComparison = 'Equals';
|
|
@@ -3011,6 +3023,7 @@ export type PortalBlockForType = {
|
|
|
3011
3023
|
careTeam: BuildPortalBlockInfo<'careTeam', {
|
|
3012
3024
|
title: string;
|
|
3013
3025
|
roles?: string[];
|
|
3026
|
+
showAll?: boolean;
|
|
3014
3027
|
}>;
|
|
3015
3028
|
carePlan: BuildPortalBlockInfo<'carePlan', {}>;
|
|
3016
3029
|
education: BuildPortalBlockInfo<'education', {}>;
|
|
@@ -3756,7 +3769,10 @@ export type AutomationTriggerEvents = {
|
|
|
3756
3769
|
formId: string;
|
|
3757
3770
|
intervalInMS: number;
|
|
3758
3771
|
}, {}>;
|
|
3759
|
-
'Purchase Made': AutomationTriggerEventBuilder<"Purchase Made", {
|
|
3772
|
+
'Purchase Made': AutomationTriggerEventBuilder<"Purchase Made", {
|
|
3773
|
+
titles?: string[];
|
|
3774
|
+
productIds?: string[];
|
|
3775
|
+
}, {}>;
|
|
3760
3776
|
'Refund Issued': AutomationTriggerEventBuilder<"Refund Issued", {}, {}>;
|
|
3761
3777
|
'Subscription Ended': AutomationTriggerEventBuilder<"Subscription Ended", {}, {}>;
|
|
3762
3778
|
'Appointment No-Showed': AutomationTriggerEventBuilder<"Appointment No-Showed", {
|