@tellescope/types-models 1.169.0 → 1.171.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.
@@ -93,6 +93,9 @@ export type PortalSettings = {
93
93
  sendEmailNotificationsToEnduser?: boolean;
94
94
  sendSMSNotificationsToEnduser?: boolean;
95
95
  };
96
+ orders?: {
97
+ customOrderTrackingURL?: string;
98
+ };
96
99
  };
97
100
  export type WithLinkOpenTrackingIds = {
98
101
  linkOpenTrackingIds: string[];
@@ -183,6 +186,7 @@ export type OrganizationSettings = {
183
186
  loopQueueCallSound?: boolean;
184
187
  showOrdersInSidebar?: boolean;
185
188
  showDiagnoses?: boolean;
189
+ showDeviceOrders?: boolean;
186
190
  requireObservationInvalidationReason?: boolean;
187
191
  };
188
192
  tickets?: {
@@ -379,6 +383,7 @@ export interface Organization extends Organization_readonly, Organization_requir
379
383
  iframeURL: string;
380
384
  }[];
381
385
  stripePublicKeys?: string[];
386
+ additionalIterableKeys?: string[];
382
387
  defaultDoseSpotPharmacies?: {
383
388
  id: string;
384
389
  name: string;
@@ -1314,6 +1319,7 @@ export interface Ticket extends Ticket_readonly, Ticket_required, Ticket_updates
1314
1319
  preserveContext?: boolean;
1315
1320
  phoneCallId?: string;
1316
1321
  smsId?: string;
1322
+ emailId?: string;
1317
1323
  calendarEventId?: string;
1318
1324
  observationId?: string;
1319
1325
  tags?: string[];
@@ -2661,6 +2667,7 @@ export type SendChatAutomationAction = AutomationActionBuilder<'sendChat', {
2661
2667
  templateId: string;
2662
2668
  identifier: string;
2663
2669
  includeCareTeam?: boolean;
2670
+ userIds?: string[];
2664
2671
  }>;
2665
2672
  export type HealthieSyncAutomationAction = AutomationActionBuilder<'healthieSync', {}>;
2666
2673
  export type HealthieAddToCourseAutomationAction = AutomationActionBuilder<'healthieAddToCourse', {
@@ -2695,6 +2702,7 @@ export type IterableCustomEventAutomationAction = AutomationActionBuilder<'itera
2695
2702
  eventName: string;
2696
2703
  description: string;
2697
2704
  dataFieldsMapping?: IterableFieldsMapping[];
2705
+ environment?: string;
2698
2706
  }>;
2699
2707
  export type EnduserFieldSetterType = 'Custom Value' | 'Current Timestamp' | 'Current Date' | "Increment Number";
2700
2708
  export type EnduserFieldSetter = {
@@ -3637,6 +3645,7 @@ export type AutomationTriggerEventBuilder<T, I, C> = {
3637
3645
  export type AutomationTriggerEvents = {
3638
3646
  'Form Submitted': AutomationTriggerEventBuilder<"Form Submitted", {
3639
3647
  formId: string;
3648
+ otherFormIds?: string[];
3640
3649
  submitterType?: SessionType | 'Anyone';
3641
3650
  publicIdentifier?: string;
3642
3651
  hasExpiredEvent?: boolean;