@tellescope/types-models 1.254.1 → 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.
@@ -360,6 +360,11 @@ export type MetriportIntegrationDetail = {
360
360
  title: string;
361
361
  environment?: string;
362
362
  };
363
+ export type ChargebeeBusinessEntity = {
364
+ environment: string;
365
+ businessEntityId: string;
366
+ name?: string;
367
+ };
363
368
  export type OutOfOfficeBlock = {
364
369
  from: Date;
365
370
  to: Date;
@@ -568,6 +573,7 @@ export interface Organization extends Organization_readonly, Organization_requir
568
573
  groups?: string[];
569
574
  observationInvalidationReasons?: string[];
570
575
  chargebeeEnvironments?: string[];
576
+ chargebeeBusinessEntities?: ChargebeeBusinessEntity[];
571
577
  customNotificationTypes?: string[];
572
578
  hasConnectedMedplum?: boolean;
573
579
  customPortalLoginEmailSubject?: string;
@@ -1048,6 +1054,7 @@ export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_upd
1048
1054
  lockedFromPortal?: boolean;
1049
1055
  chargebeeEnvironment?: string;
1050
1056
  chargebeeId?: string;
1057
+ chargebeeBusinessEntityId?: string;
1051
1058
  healthieSyncError?: string;
1052
1059
  lastSuperdialEligibilityCheckAt?: Date;
1053
1060
  superdialEligibilityResponse?: string;
@@ -1957,6 +1964,7 @@ export type FormFieldOptions = FormFieldValidation & {
1957
1964
  observationUnit?: string;
1958
1965
  autoUploadFiles?: boolean;
1959
1966
  chargebeeEnvironment?: string;
1967
+ chargebeeBusinessEntityId?: string;
1960
1968
  chargebeePlanId?: string;
1961
1969
  chargebeeItemId?: string;
1962
1970
  chargebeeCollectPaymentMethodOnly?: boolean;
@@ -3562,9 +3570,10 @@ export type AIContextSource = {
3562
3570
  limit: number;
3563
3571
  };
3564
3572
  export type AIDecisionAutomationAction = AutomationActionBuilder<'aiDecision', {
3565
- prompt: string;
3566
- sources: AIContextSource[];
3567
3573
  outcomes: string[];
3574
+ prompt?: string;
3575
+ sources?: AIContextSource[];
3576
+ aiSummaryConfiguration?: AISummaryConfiguration;
3568
3577
  }>;
3569
3578
  export type AssignInboxItemAutomationAction = AutomationActionBuilder<'assignInboxItem', {
3570
3579
  tags: ListOfStringsWithQualifier;
@@ -4848,6 +4857,7 @@ export type AutomationTriggerEvents = {
4848
4857
  titlePartials?: string[];
4849
4858
  titlePartialsAnd?: string[];
4850
4859
  protocols?: string[];
4860
+ frequencies?: string[];
4851
4861
  }, {}>;
4852
4862
  'Missed Call': AutomationTriggerEventBuilder<"Missed Call", {
4853
4863
  phoneNumbers?: string[];