@tellescope/types-models 1.254.0 → 1.255.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 +14 -2
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +14 -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 +15 -3
package/lib/cjs/index.d.ts
CHANGED
|
@@ -288,6 +288,7 @@ export type OrganizationSettings = {
|
|
|
288
288
|
cancelReasons?: string[];
|
|
289
289
|
copyRemindersByDefault?: boolean;
|
|
290
290
|
showMakeRecurringOnProfile?: boolean;
|
|
291
|
+
hideProviderTab?: boolean;
|
|
291
292
|
};
|
|
292
293
|
users?: {
|
|
293
294
|
sessionDurationInHours?: number;
|
|
@@ -359,6 +360,11 @@ export type MetriportIntegrationDetail = {
|
|
|
359
360
|
title: string;
|
|
360
361
|
environment?: string;
|
|
361
362
|
};
|
|
363
|
+
export type ChargebeeBusinessEntity = {
|
|
364
|
+
environment: string;
|
|
365
|
+
businessEntityId: string;
|
|
366
|
+
name?: string;
|
|
367
|
+
};
|
|
362
368
|
export type OutOfOfficeBlock = {
|
|
363
369
|
from: Date;
|
|
364
370
|
to: Date;
|
|
@@ -567,6 +573,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
567
573
|
groups?: string[];
|
|
568
574
|
observationInvalidationReasons?: string[];
|
|
569
575
|
chargebeeEnvironments?: string[];
|
|
576
|
+
chargebeeBusinessEntities?: ChargebeeBusinessEntity[];
|
|
570
577
|
customNotificationTypes?: string[];
|
|
571
578
|
hasConnectedMedplum?: boolean;
|
|
572
579
|
customPortalLoginEmailSubject?: string;
|
|
@@ -1047,6 +1054,7 @@ export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_upd
|
|
|
1047
1054
|
lockedFromPortal?: boolean;
|
|
1048
1055
|
chargebeeEnvironment?: string;
|
|
1049
1056
|
chargebeeId?: string;
|
|
1057
|
+
chargebeeBusinessEntityId?: string;
|
|
1050
1058
|
healthieSyncError?: string;
|
|
1051
1059
|
lastSuperdialEligibilityCheckAt?: Date;
|
|
1052
1060
|
superdialEligibilityResponse?: string;
|
|
@@ -1956,6 +1964,7 @@ export type FormFieldOptions = FormFieldValidation & {
|
|
|
1956
1964
|
observationUnit?: string;
|
|
1957
1965
|
autoUploadFiles?: boolean;
|
|
1958
1966
|
chargebeeEnvironment?: string;
|
|
1967
|
+
chargebeeBusinessEntityId?: string;
|
|
1959
1968
|
chargebeePlanId?: string;
|
|
1960
1969
|
chargebeeItemId?: string;
|
|
1961
1970
|
chargebeeCollectPaymentMethodOnly?: boolean;
|
|
@@ -2134,6 +2143,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
|
|
|
2134
2143
|
version?: 'v1' | 'v2';
|
|
2135
2144
|
mdiCaseOfferings?: {
|
|
2136
2145
|
offering_id: string;
|
|
2146
|
+
conditions?: CompoundFilter<string>;
|
|
2137
2147
|
}[];
|
|
2138
2148
|
autoMergeOnSubmission?: boolean;
|
|
2139
2149
|
aiSummaryConfiguration?: AISummaryConfiguration;
|
|
@@ -3560,9 +3570,10 @@ export type AIContextSource = {
|
|
|
3560
3570
|
limit: number;
|
|
3561
3571
|
};
|
|
3562
3572
|
export type AIDecisionAutomationAction = AutomationActionBuilder<'aiDecision', {
|
|
3563
|
-
prompt: string;
|
|
3564
|
-
sources: AIContextSource[];
|
|
3565
3573
|
outcomes: string[];
|
|
3574
|
+
prompt?: string;
|
|
3575
|
+
sources?: AIContextSource[];
|
|
3576
|
+
aiSummaryConfiguration?: AISummaryConfiguration;
|
|
3566
3577
|
}>;
|
|
3567
3578
|
export type AssignInboxItemAutomationAction = AutomationActionBuilder<'assignInboxItem', {
|
|
3568
3579
|
tags: ListOfStringsWithQualifier;
|
|
@@ -4846,6 +4857,7 @@ export type AutomationTriggerEvents = {
|
|
|
4846
4857
|
titlePartials?: string[];
|
|
4847
4858
|
titlePartialsAnd?: string[];
|
|
4848
4859
|
protocols?: string[];
|
|
4860
|
+
frequencies?: string[];
|
|
4849
4861
|
}, {}>;
|
|
4850
4862
|
'Missed Call': AutomationTriggerEventBuilder<"Missed Call", {
|
|
4851
4863
|
phoneNumbers?: string[];
|