@tellescope/types-models 1.174.0 → 1.176.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.
@@ -96,6 +96,9 @@ export type PortalSettings = {
96
96
  orders?: {
97
97
  customOrderTrackingURL?: string;
98
98
  };
99
+ documents?: {
100
+ hideMissingAnswers?: boolean;
101
+ };
99
102
  };
100
103
  export type WithLinkOpenTrackingIds = {
101
104
  linkOpenTrackingIds: string[];
@@ -391,6 +394,8 @@ export interface Organization extends Organization_readonly, Organization_requir
391
394
  groups?: string[];
392
395
  observationInvalidationReasons?: string[];
393
396
  chargebeeEnvironments?: string[];
397
+ customNotificationTypes?: string[];
398
+ hasConnectedMedplum?: boolean;
394
399
  }
395
400
  export type OrganizationTheme = {
396
401
  name: string;
@@ -555,6 +560,7 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
555
560
  pushNotificationDestinations?: string[];
556
561
  drChronoId?: string;
557
562
  canvasId?: string;
563
+ medplumId?: string;
558
564
  zoomId?: string;
559
565
  zendeskId?: number;
560
566
  tags?: string[];
@@ -1333,6 +1339,7 @@ export interface Ticket extends Ticket_readonly, Ticket_required, Ticket_updates
1333
1339
  restrictByTagsQualifier?: ListQueryQualifier;
1334
1340
  archiveReason?: string;
1335
1341
  contextFormIds?: string[];
1342
+ triggerFileId?: string;
1336
1343
  orderId?: string;
1337
1344
  contextEnduserFields?: string[];
1338
1345
  isTodo?: boolean;
@@ -1501,6 +1508,9 @@ export type FormFieldOptions = FormFieldValidation & {
1501
1508
  stripeKey?: string;
1502
1509
  dataSource?: string;
1503
1510
  canvasDocumentCoding?: Pick<CanvasCoding, 'system' | 'code'>;
1511
+ canvasDocumentType?: CanvasCoding;
1512
+ canvasDocumentComment?: string;
1513
+ canvasReviewMode?: string;
1504
1514
  esignatureTermsCompanyName?: string;
1505
1515
  observationCode?: string;
1506
1516
  observationDisplay?: string;
@@ -1704,6 +1714,8 @@ export interface Integration extends Integration_readonly, Integration_required,
1704
1714
  default_dietitian_id?: string;
1705
1715
  dontPushCalendarEvent?: boolean;
1706
1716
  dontPullCalendarEvent?: boolean;
1717
+ pushAddedTags?: boolean;
1718
+ pushRemovedTags?: boolean;
1707
1719
  }
1708
1720
  export type BuildDatabaseRecordField<K extends string, V, O> = {
1709
1721
  type: K;
@@ -2050,6 +2062,7 @@ type BuildCalendarEventReminderInfo<T, I> = {
2050
2062
  msBeforeStartTime: number;
2051
2063
  dontSendIfPassed?: boolean;
2052
2064
  didRemind?: boolean;
2065
+ dontSendIfJoined?: boolean;
2053
2066
  };
2054
2067
  export type CalendarEventReminderInfoForType = {
2055
2068
  "webhook": BuildCalendarEventReminderInfo<'webhook', {}>;
@@ -2176,6 +2189,10 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
2176
2189
  startLinkToken?: string;
2177
2190
  canvasEncounterId?: string;
2178
2191
  allowGroupReschedule?: boolean;
2192
+ joinedVideoCall?: {
2193
+ id: string;
2194
+ at: Date;
2195
+ }[];
2179
2196
  }
2180
2197
  export type PaymentProcessor = 'Square' | 'Stripe';
2181
2198
  export interface Product_readonly extends ClientRecord {
@@ -3798,9 +3815,12 @@ export type AutomationTriggerEvents = {
3798
3815
  'Form Started': AutomationTriggerEventBuilder<"Form Started", {
3799
3816
  formIds?: string[];
3800
3817
  }, {}>;
3801
- "Eligibility Result Received": AutomationTriggerActionBuilder<'Eligibility Result Received', {
3818
+ "Eligibility Result Received": AutomationTriggerEventBuilder<'Eligibility Result Received', {
3802
3819
  source: string;
3803
- }>;
3820
+ }, {}>;
3821
+ 'File Added': AutomationTriggerEventBuilder<"File Added", {
3822
+ source: string;
3823
+ }, {}>;
3804
3824
  };
3805
3825
  export type AutomationTriggerEventType = keyof AutomationTriggerEvents;
3806
3826
  export type AutomationTriggerEvent = AutomationTriggerEvents[AutomationTriggerEventType];
@@ -4875,6 +4895,7 @@ export type JourneyContext = {
4875
4895
  databaseRecordId?: string;
4876
4896
  databaseRecordCreator?: string;
4877
4897
  eligibilityResultId?: string;
4898
+ fileId?: string;
4878
4899
  };
4879
4900
  export declare const TIMEZONE_MAP: {
4880
4901
  readonly "Africa/Abidjan": "+00:00";