@tellescope/types-models 1.170.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?: {
@@ -3641,6 +3645,7 @@ export type AutomationTriggerEventBuilder<T, I, C> = {
3641
3645
  export type AutomationTriggerEvents = {
3642
3646
  'Form Submitted': AutomationTriggerEventBuilder<"Form Submitted", {
3643
3647
  formId: string;
3648
+ otherFormIds?: string[];
3644
3649
  submitterType?: SessionType | 'Anyone';
3645
3650
  publicIdentifier?: string;
3646
3651
  hasExpiredEvent?: boolean;